A simple Python class to scrape Instagram data effortlessly.
With this class, you can fetch public Instagram user details or post information for analysis or automation purposes.
- 📝 Fetch Instagram user details (followers, following, bio, etc.)
- 🔄 Retrieve Instagram post information (likes, comments, caption, media URL)
- ⚡ Lightweight and easy to use
- 💻 Works with Python 3.x and required libraries
from igScrap import igScrap
myOBJ = igScrap()
userData = myOBJ.userInfo('Google')
print(userData)myOBJ = igScrap()
postData = myOBJ.postInfo('https://www.instagram.com/p/CuE2WNQs6vH/')
print(postData)💡 Feel free to reach out if you have any questions or suggestions!
⭐ If you like this project, don’t forget to star the repo!