Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/stanvanrooy/instauto
Browse files Browse the repository at this point in the history
  • Loading branch information
stanvanrooy committed Jul 27, 2021
2 parents 1c0877a + e7b0fed commit 212f448
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Below are a few examples for getting stared quickly. After getting started, you'
You'll want to do this as little as possible. Instagram sees logging in often as a huge red flag.
```python
from instauto.api import ApiClient
client = ApiClient(user_name='your_username', password='your_password')
client = ApiClient(username='your_username', password='your_password')
client.log_in()
```

Expand Down Expand Up @@ -50,7 +50,7 @@ users = search_username(client, "username", 10)
Getting a list of users that follow you is also super simple.
```python
from instauto.helpers.friendships import get_followers
followers = get_followers(client, username='your_username', 100)
followers = get_followers(client, username='your_username', limit=100)
```

### Uploading images
Expand Down

0 comments on commit 212f448

Please sign in to comment.