Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/uriyyo/instapi
Python Instagram API :camera:
https://github.com/uriyyo/instapi
instabot instagram instagram-api instapi python python3
Last synced: 9 days 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 (about 5 years ago)
- Default Branch: develop
- Last Pushed: 2024-03-29T21:54:23.000Z (7 months ago)
- Last Synced: 2024-10-10T19:08:16.569Z (26 days 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
=============[![Code Style](https://img.shields.io/badge/Code%20Style-PEP%208-blueviolet)](https://www.python.org/dev/peps/pep-0008/)
![Contributions](https://img.shields.io/badge/Contributions-Welcome-brightgreen)
[![License](https://img.shields.io/badge/License-MIT-lightgrey)](/LICENSE)
[![Build Status](https://travis-ci.com/uriyyo/instapi.svg?branch=develop)](https://travis-ci.com/uriyyo/instapi)
[![codecov](https://codecov.io/gh/uriyyo/instapi/branch/develop/graph/badge.svg)](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 Userbind('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!