https://github.com/khrigo/instragram-follow
Automatically follow Instagram accounts
https://github.com/khrigo/instragram-follow
instagram instagram-api
Last synced: 3 months ago
JSON representation
Automatically follow Instagram accounts
- Host: GitHub
- URL: https://github.com/khrigo/instragram-follow
- Owner: khrigo
- Created: 2017-02-28T12:23:34.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-05-03T22:22:15.000Z (about 2 years ago)
- Last Synced: 2024-05-03T23:28:06.777Z (about 2 years ago)
- Topics: instagram, instagram-api
- Language: Python
- Homepage:
- Size: 28.3 KB
- Stars: 27
- Watchers: 4
- Forks: 8
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Instagram follow
Instagram scripts for promotion and API wrapper. Written in Python.
___
As you may know, Instagram closed it's API in summer 2016. This Python module can do the same thing without any effort. Also it has lots of example scripts to start with.
## How to install and update
Install latest stable version or update current from pip
``` python
pip install -r requirements.txt
```
## Sample usage
Following user followers
```python
python follow_user_followers.py khrigo
```
Like user followers
```python
python like_user_followers.py khrigo
```
Unfollowing everyone users
```python
python unfollow_everyone.py
```
Use whitelist
```python
bot = Bot(whitelist="whitelist.txt")
```
Use blacklist
```python
bot = Bot(blacklist="blacklist.txt")
```