Files
raptor-trading/invest-python-master/examples/users/get_bank_accounts.py

16 lines
263 B
Python

import os
from t_tech.invest import Client
def main():
token = os.environ["INVEST_TOKEN"]
with Client(token) as client:
response = client.users.get_bank_accounts()
print(response)
if __name__ == "__main__":
main()