InstagramGraphQL Unoffical API
Project description
InstagramGraphQL Unofficial API
Unofficial Instagram GraphQL API to collet data without authentication.
Features
- Search for people, hashtags and locations
- Get media data
- Get hashtag data
- Get location data
- Get all comments
- Get all likes
- Get specific user posts
- With sessionid supplied you can get data from private accounts
- There is a lot of cool data returned by GraphQL. For example
accessibility_caption
which you can train your image classifier through it
NOTE: This is basically a API to collet data not for uploading or interacting with media. If you want more advanced IG library you should check LevPasha's Instagram-API-python package.
Getting all media of a user
from igql import InstagramGraphQL igql_api = InstagramGraphQL() user = igql_api.get_user('instagram') for media in user.timeline: # This is entry_data not the all media print(media.image_url) for media_list in user.iterate_more_timeline_media(): for media in media_list: print(media.image_url)
Installation
Library is avaible on PyPi so just run
pip install igql
To learn more check wiki page.
Project details
Release history Release notifications
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Filename, size | File type | Python version | Upload date | Hashes |
---|---|---|---|---|
Filename, size igql-1.0.3-py3-none-any.whl (8.0 kB) | File type Wheel | Python version py3 | Upload date | Hashes View hashes |
Filename, size igql-1.0.3.tar.gz (4.9 kB) | File type Source | Python version None | Upload date | Hashes View hashes |