Updated accidental removal of username option

This commit is contained in:
Joubin Jabbari 2016-12-23 19:03:14 -08:00 committed by GitHub
parent da9d09e945
commit a7687ca7b7

View File

@ -69,6 +69,10 @@ def fetch_activation_bytes(username, password, options):
search_box = driver.find_element_by_id('ap_password') search_box = driver.find_element_by_id('ap_password')
search_box.send_keys(password) search_box.send_keys(password)
search_box.submit() search_box.submit()
if options.two_factor:
search_box = driver.find_element_by_id('auth-mfa-otpcode')
search_box.send_keys(raw_input("Enter Two-Step Verification Code: "))
search_box.submit()
# Step 2 # Step 2
driver.get(base_url + 'player-auth-token?playerType=software&bp_ua=y&playerModel=Desktop&playerId=%s&playerManufacturer=Audible&serial=' % (player_id)) driver.get(base_url + 'player-auth-token?playerType=software&bp_ua=y&playerModel=Desktop&playerId=%s&playerManufacturer=Audible&serial=' % (player_id))
@ -136,12 +140,13 @@ if __name__ == "__main__":
dest="password", dest="password",
default=False, default=False,
help="Audible password") help="Audible password")
parser.add_option("-t", "--two-factor",
action="store_true",
dest="two_factor",
default=False,
help="Use this option to enable two factor authentication",)
(options, args) = parser.parse_args() (options, args) = parser.parse_args()
if options.username and options.password:
username = options.username
password = options.password
else:
username = raw_input("Username: ") username = raw_input("Username: ")
password = getpass("Password: ") password = getpass("Password: ")