tgtg-notifier/login.py
J. Fernando Sánchez 84f8e4b299 first working demo
2023-12-10 20:15:22 +01:00

8 lines
209 B
Python

from tgtg import TgtgClient
client = TgtgClient(email="tgtg@sinpapel.es")
credentials = client.get_credentials()
with open('.credentials.json', 'w') as f:
print(credentials)
json.dump(credentials, f)