From f7f99f41e768e6740adbf2ee708488b29fe6265a Mon Sep 17 00:00:00 2001 From: clarkzjw Date: Mon, 20 Feb 2023 13:47:26 -0800 Subject: implemented basic functions: - send a location from Telegram to bot - query a list (7) of POIs from Foursquare - send user inline keyboard button to choose a location - post toot status update to Mastodon with a link to OSM - store previously seen locations in local db --- config.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'config.py') diff --git a/config.py b/config.py index 377a6c3..a403db0 100644 --- a/config.py +++ b/config.py @@ -6,3 +6,8 @@ config.read("config.ini") BOT_TOKEN = config["DEFAULT"]["BOT_TOKEN"] FSQ_API_KEY = config["DEFAULT"]["FOURSQUARE_API_KEY"] + +TOOT_API_BASE_URL = config["TOOT"]["API_BASE_URL"] +TOOT_CLIENT_ID = config["TOOT"]["CLIENT_ID"] +TOOT_CLIENT_SECRET = config["TOOT"]["CLIENT_SECRET"] +TOOT_ACCESS_TOKEN = config["TOOT"]["ACCESS_TOKEN"] -- cgit v1.2.3