forked from Chavithra/degiro-connector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig_table.py
47 lines (36 loc) · 1.19 KB
/
config_table.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# IMPORTATIONS
import json
import logging
from degiro_connector.trading.api import API as TradingAPI
from degiro_connector.trading.models.trading_pb2 import Credentials
# SETUP LOGGING LEVEL
logging.basicConfig(level=logging.DEBUG)
# SETUP CONFIG DICT
with open("config/config.json") as config_file:
config_dict = json.load(config_file)
# SETUP CREDENTIALS
int_account = config_dict.get("int_account")
username = config_dict.get("username")
password = config_dict.get("password")
totp_secret_key = config_dict.get("totp_secret_key")
one_time_password = config_dict.get("one_time_password")
credentials = Credentials(
int_account=None,
username=username,
password=password,
totp_secret_key=totp_secret_key,
one_time_password=one_time_password,
)
# SETUP TRADING API
trading_api = TradingAPI(credentials=credentials)
# CONNECT
trading_api.connect()
# FETCH CONFIG TABLE
config_table = trading_api.get_config()
# EXTRACT DATA
user_token = config_table["clientId"]
session_id = config_table["sessionId"]
# DISPLAY DATA
config_pretty = json.dumps(config_table, sort_keys=True, indent=4)
print('Your "user_token" is :', user_token)
print("Here is the rest of config :", config_pretty)