Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/eseom/pyinstagram
- Owner: eseom
- Created: 2016-10-09T15:53:31.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2019-10-03T16:23:36.000Z (about 5 years ago)
- Last Synced: 2024-10-17T01:07:27.421Z (20 days ago)
- Topics: instagram, python
- Language: Python
- Homepage:
- Size: 45.9 KB
- Stars: 0
- Watchers: 1
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
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/
```