From e301382ddb88cf9a6897e66a02a46f527883d627 Mon Sep 17 00:00:00 2001 From: Stan van Rooy Date: Wed, 28 Jul 2021 00:51:42 +0200 Subject: [PATCH 1/2] docs: wasn't a typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 784af7ae..34f5eedb 100644 --- a/README.md +++ b/README.md @@ -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() ``` From e7b0fedcd3736c344fc87274c1f481fa8505a2b5 Mon Sep 17 00:00:00 2001 From: Stan van Rooy Date: Wed, 28 Jul 2021 00:52:38 +0200 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 34f5eedb..37df8ba3 100644 --- a/README.md +++ b/README.md @@ -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