https://github.com/behrouzz/instanet
A python package for analysing Instagram network
https://github.com/behrouzz/instanet
Last synced: 6 months ago
JSON representation
A python package for analysing Instagram network
- Host: GitHub
- URL: https://github.com/behrouzz/instanet
- Owner: behrouzz
- License: mit
- Created: 2021-05-27T13:36:13.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-05-27T17:59:16.000Z (about 5 years ago)
- Last Synced: 2025-09-20T06:18:48.788Z (9 months ago)
- Language: Python
- Size: 16.6 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
**Author:** [Behrouz Safari](https://behrouzz.github.io/)
**License:** [MIT](https://opensource.org/licenses/MIT)
# instanet
*A python package for analysing Instagram network*
## Installation
Install the latest version of *instanet* from [PyPI](https://pypi.org/project/instanet/):
pip install instanet
Requirements are *requests*, *networkx* and *matplotlib*.
## Quick start
```python
from instanet import Instagram
ins = Instagram(USERNAME, PASSWORD)
ins.login()
ins.save_friends(['friend1', 'friend2', 'friend3', 'friend4', 'friend5'])
ins.graph()
```