https://github.com/uriyyo/instapi
Python Instagram API :camera:
https://github.com/uriyyo/instapi
instabot instagram instagram-api instapi python python3
Last synced: 9 months ago
JSON representation
Python Instagram API :camera:
- Host: GitHub
- URL: https://github.com/uriyyo/instapi
- Owner: uriyyo
- License: mit
- Created: 2019-08-19T20:17:36.000Z (almost 7 years ago)
- Default Branch: develop
- Last Pushed: 2024-03-29T21:54:23.000Z (about 2 years ago)
- Last Synced: 2025-02-27T05:55:57.475Z (over 1 year ago)
- Topics: instabot, instagram, instagram-api, instapi, python, python3
- Language: Python
- Homepage:
- Size: 563 KB
- Stars: 32
- Watchers: 3
- Forks: 5
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
InstAPI
=============
[](https://www.python.org/dev/peps/pep-0008/)

[](/LICENSE)
[](https://travis-ci.com/uriyyo/instapi)
[](https://codecov.io/gh/uriyyo/instapi)
InstAPI - comfortable and easy to use Python's library for interaction with Instagram.
Installation
------------
```bash
pip install inst-api
```
Usage
-----
Example how to like all feeds for user
```python
from instapi import bind
from instapi import User
bind('your_username_here', 'your_password_here')
# Get user profile by username
instagram_profile = User.from_username('username')
# Like all posts
for feed in instagram_profile.iter_feeds():
feed.like()
```
Contribute
----------
Contributions are always welcome!