8 lines
209 B
Python
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)
|