Switch from getpass -> input for grant token

This commit is contained in:
Paul Woolcock 2018-02-16 23:32:25 -05:00
parent a2a11584d4
commit 7f88d23d0a

View file

@ -127,7 +127,7 @@ def main():
client = Mastodon(client_id='clientcred.secret', api_base_url=api_base_url) client = Mastodon(client_id='clientcred.secret', api_base_url=api_base_url)
print("Open this page in your browser and follow the instructions to get the code you need, then paste it here") print("Open this page in your browser and follow the instructions to get the code you need, then paste it here")
print(client.auth_request_url()) print(client.auth_request_url())
grant_code = getpass('Code? ') grant_code = input('Code? ')
login(api_base_url, grant_code) login(api_base_url, grant_code)
stream(api_base_url) stream(api_base_url)