Skip to content

Demoncode/python-instagram

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

python-instagram

A Python client for the Instagram REST and Search APIs

Installation

pip install instagram

Requires

  • httplib2
  • simplejson

Follow @instagramapi on Twitter

You can follow @instagramapi on Twitter for announcements, updates, and news about the Instagram gem.

Obtaining an access token

You can use the provided get_access_token.py script to obtain an access token for yourself. It will prompt you for your app's Client ID, Client Secret, and Redirect URI, and walk you through instructions for getting your own access token for your app.

Usage

from instagram.client import InstagramAPI

access_token = "..."
api = InstagramAPI(access_token=access_token)
popular_media = api.popular_media(count=20)
for media in popular_media:
    print media.images['high_resolution'].url

Sample app

We also provide a one-file sample app using bottle (you'll have to 'pip install bottle' first). To try it out:

  • Set your redirect URI to 'http://localhost:8515' in your dev profile
  • Open up sample_app.py, update it with your client_id and secret
  • Run the file; it will host a local server on port 8515.
  • Try visiting http://localhost:8515 in your browser

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%