15 lines
225 B
Python
15 lines
225 B
Python
import os
|
|
|
|
from t_tech.invest import Client
|
|
|
|
TOKEN = os.environ["INVEST_TOKEN"]
|
|
|
|
|
|
def main():
|
|
with Client(TOKEN) as client:
|
|
print(client.users.get_accounts())
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|