From afa839cf93a1d4acd96a026c593ca583e60c5701 Mon Sep 17 00:00:00 2001 From: Trevor Hobenshield Date: Mon, 10 Apr 2023 11:47:37 -0700 Subject: [PATCH] added email challenge solver --- readme.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/readme.md b/readme.md index c44c94c..5215baf 100644 --- a/readme.md +++ b/readme.md @@ -13,8 +13,8 @@ pip install twitter-api-client ```python from twitter.account import Account -username, password = ..., ... -account = Account(username, password) +email, username, password = ..., ..., ... +account = Account(email, username, password) account.create_poll('test poll 123', ['hello', 'world', 'foo', 'bar'], 10080) @@ -152,8 +152,8 @@ account.update_search_settings({ ```python from twitter.scraper import Scraper -username, password = ..., ... -scraper = Scraper(username, password) +email, username, password = ..., ..., ... +scraper = Scraper(email, username, password) ####### User Data ######## users = scraper.user_by_screen_name(['bob123', 'jim456', 'stanley789'])