All Projects → FKLC → Igql

FKLC / Igql

Licence: mit
Unofficial Instagram GraphQL API to collet data without authentication

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Igql

Instagram Scraper
Scrapes an instagram user's photos and videos
Stars: ✭ 5,664 (+6980%)
Mutual labels:  instagram-api, instagram, instagram-scraper, instagram-client
Instagram User Feed
This is a scrapper to easily fetch any feed and interact with Instagram (like, follow, etc.) without OAuth for PHP.
Stars: ✭ 435 (+443.75%)
Mutual labels:  instagram-api, instagram, instagram-scraper, instagram-client
Instagram Php Scraper
Get account information, photos, videos, stories and comments.
Stars: ✭ 2,490 (+3012.5%)
Mutual labels:  instagram-api, instagram, instagram-scraper, instagram-client
Swiftinstagram
Instagram API client written in Swift
Stars: ✭ 570 (+612.5%)
Mutual labels:  instagram-api, instagram, instagram-client
Instapy Cli
✨ Python library and CLI to upload photo and video on Instagram. W/o a phone!
Stars: ✭ 498 (+522.5%)
Mutual labels:  instagram-api, instagram, instagram-client
Instagram4j
📷 Instagram private API in Java
Stars: ✭ 629 (+686.25%)
Mutual labels:  instagram-api, instagram, instagram-client
Instagram-Auto-Pilot
Automate common Instagram activities such as following, unfollowing, commenting and reposting images from instagram accounts.
Stars: ✭ 50 (-37.5%)
Mutual labels:  instagram-client, instagram-scraper, instagram-api
Instasharper
Private Instagram API
Stars: ✭ 426 (+432.5%)
Mutual labels:  instagram-api, instagram, instagram-scraper
nanogram.js
📷 An easy-to-use and simple Instagram package that allows you to fetch media content without API and access token.
Stars: ✭ 62 (-22.5%)
Mutual labels:  instagram, instagram-scraper, instagram-api
Socialmanagertools Igbot
🤖 📷 Instagram Bot made with love and nodejs
Stars: ✭ 699 (+773.75%)
Mutual labels:  instagram-api, instagram, instagram-scraper
Instamancer
Scrape Instagram's API with Puppeteer
Stars: ✭ 273 (+241.25%)
Mutual labels:  instagram-api, instagram, instagram-scraper
Instagramapisharp
A complete Private Instagram API for .NET (C#, VB.NET).
Stars: ✭ 486 (+507.5%)
Mutual labels:  instagram-api, instagram, instagram-scraper
Instagram-Scraper-2021
Scrape Instagram content and stories anonymously, using a new technique based on the har file (No Token + No public API).
Stars: ✭ 57 (-28.75%)
Mutual labels:  instagram, instagram-scraper, instagram-api
Instagram Java Scraper
Instagram Java Scraper. Get account information, photos, videos and comments.
Stars: ✭ 335 (+318.75%)
Mutual labels:  instagram-api, instagram, instagram-client
insta
Instagram power tool
Stars: ✭ 56 (-30%)
Mutual labels:  instagram-client, instagram, instagram-scraper
igFame
📷 igFame - Tool for automated Instagram interactions [PHP]
Stars: ✭ 16 (-80%)
Mutual labels:  instagram, instagram-scraper, instagram-api
Instauto
Simple to use wrapper around the private Instagram API, written in Python.
Stars: ✭ 52 (-35%)
Mutual labels:  instagram-api, instagram, instagram-scraper
Instagram Proxy Api
CORS compliant API to access Instagram's public data
Stars: ✭ 245 (+206.25%)
Mutual labels:  instagram-api, instagram, instagram-scraper
instagram
Php instagram library. With this library, you can use many of the same features in the mobile application.
Stars: ✭ 45 (-43.75%)
Mutual labels:  instagram-client, instagram-scraper, instagram-api
InstagramCpp
Instagram REST API client wirtten in C++
Stars: ✭ 24 (-70%)
Mutual labels:  instagram-client, instagram, instagram-api

End of support

According to this issue #1 Instaloader is already doing what this library does so why reinvent the wheel while it exists also I'm so sorry about wasting your time using this library instead of Instaloader it is much better than IGQL. @ogencoglu actually created issue about it but I think when I checked the source of Instaloader I accidentally typed something else instead of graphql.

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():
    print(media)

Installation

Library is avaible on PyPi so just run

pip install igql

To learn more check wiki page.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].