diezo / Ensta

🔥 Fast & Reliable Python Package For Instagram API - 2024
https://bit.ly/ensta-discord
MIT License
371 stars 44 forks source link

Guest mode not working, returning none #18

Closed brahmbeyond closed 1 year ago

brahmbeyond commented 1 year ago
from ensta import Guest

guest = Guest()
profile = guest.profile("pilarrubio")
print(profile)
if profile is not None:
    print(profile.biography)
    print(profile.follower_count)
    print(profile.following_count)

guest is returning none

None

diezo commented 1 year ago

This can happen when the profile you're trying to fetch doesn't exist or has been temporarily disabled.

Please try to open that profile using your browser.

Also, I've made some changes to ensta so that it raises the correct exception. Please update the library: pip install ensta --upgrade and make sure you're on v4.2 or later.

Then, try to fetch the profile again and mention the exception here.

Thankyou

brahmbeyond commented 1 year ago

This can happen when the profile you're trying to fetch doesn't exist or has been temporarily disabled.

Please try to open that profile using your browser.

Also, I've made some changes to ensta so that it raises the correct exception. Please update the library: pip install ensta --upgrade and make sure you're on v4.2 or later.

Then, try to fetch the profile again and mention the exception here.

Thankyou

sure , this week has been too busy for me , I'll check this soon and then close this issue.