From cc70f8c47850fd6756983508c4ebf8e405b0fdda Mon Sep 17 00:00:00 2001 From: Florian Kellermann Date: Mon, 4 Apr 2022 16:38:15 +0200 Subject: [PATCH] share handler in api_handler --- telegram_bot/api_handling/api_handler.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/telegram_bot/api_handling/api_handler.py b/telegram_bot/api_handling/api_handler.py index 8c14833..bc5ef79 100644 --- a/telegram_bot/api_handling/api_handler.py +++ b/telegram_bot/api_handling/api_handler.py @@ -248,4 +248,6 @@ if __name__ == "__main__": print(handler.token) keywords = handler.get_user_keywords(user_id = 1709356058) #user_id is currently mine (Linus) print(keywords) + shares = handler.get_user_portfolio(user_id = 1709356058) + print(shares) sys.exit(1) \ No newline at end of file