forked from Chavithra/degiro-connector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtop_news_preview.py
42 lines (32 loc) · 1.07 KB
/
top_news_preview.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
# 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 DATA
top_news_preview = trading_api.get_top_news_preview(raw=True)
# DISPLAY DATA
config_pretty = json.dumps(top_news_preview, sort_keys=True, indent=4)
print("Here is the top news preview :", config_pretty)