Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/eseom/pyinstagram

python implementation for instagram private(android) api
https://github.com/eseom/pyinstagram

instagram python

Last synced: 5 days ago
JSON representation

python implementation for instagram private(android) api

Awesome Lists containing this project

README

        

# pyinstagram

python port of https://github.com/mgp25/Instagram-API
(pyinstagram is a developing alpha... welcome any tests, suggestions and feedbacks.)

# usage
```
$ pip install pyinstagram
$ python
>> from pyinstagram import Instagram
>> instagram = Instagram('', '')
>> instagram.login()
>> ...
```

# development
```
# fork first
git clone https://github.com//pyinstagram pyinstgram
cd pyinstagram
virtualenv ve
. ve/bin/activate
pip install -r requiremnet.txt
pip install -r requiremnet-dev.txt
pip install -e .
py.test --cov=pyinstagram tests/
```