-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathlogout.py
44 lines (36 loc) · 1.07 KB
/
logout.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
import logging
import random
import time
from degiro_connector.trading.api import API as TradingAPI
from degiro_connector.trading.models.credentials import build_credentials
logging.basicConfig(level=logging.DEBUG)
credentials = build_credentials(
location="config/config.json",
# override={
# "username": "TEXT_PLACEHOLDER",
# "password": "TEXT_PLACEHOLDER",
# "int_account": NUMBER_PLACEHOLDER, # From `get_client_details`
# # "totp_secret_key": "TEXT_PLACEHOLDER", # For 2FA
# },
)
trading_api = TradingAPI(credentials=credentials)
trading_api.connect()
# ACCESS SESSION_ID
session_id = trading_api.connection_storage.session_id
# Waiting
sleep_time = random.uniform(1, 5)
print(f"Waiting : {sleep_time}s ")
time.sleep(sleep_time)
# FETCH CONFIG TABLE
print(len(trading_api.get_config()))
# LOGOUT
print("Logout, session id : ", session_id)
trading_api.logout()
try:
# FETCH CONFIG TABLE
print(len(trading_api.get_config()))
except ConnectionError as e:
print(e)
print("Logout : success !")
else:
print("Logout : fail !")