fut icon indicating copy to clipboard operation
fut copied to clipboard

email codes

Open invisible-defects opened this issue 7 years ago • 1 comments

Right now I'm trying to create an autobuyer with GUI, and it's actually quite hard to deal with code=input() in the lib. Have to rewrite the code every time fut gets updated. Maybe add input_code flag to fut.Core's __init__? Or just remove input statement?

invisible-defects avatar Feb 26 '18 16:02 invisible-defects

Best idea is to use builtin totp resolver - all You have to do is find totp secret (i'm sure You can find few guides online how to get it for origin) and it's gonna be generated automatically when needed.

Maybe add input_code flag to fut.Core's init?

There is already code param:

fut.Core(email, passwd, platform, code='0123512')

Make sure to pass it as string (with quotes) otherwise it's gonna be converted from 0123 to 123.

oczkers avatar Feb 28 '18 09:02 oczkers