diff options
author | clarkzjw <[email protected]> | 2023-02-20 13:47:26 -0800 |
---|---|---|
committer | clarkzjw <[email protected]> | 2023-02-20 13:47:26 -0800 |
commit | f7f99f41e768e6740adbf2ee708488b29fe6265a (patch) | |
tree | 125b6ec833af57b2ec1813309506dbe6b791b35f /config.py | |
parent | 3a230798be1bc63b363cf75b8b1cae3a508cca84 (diff) | |
download | swarm2fediverse-f7f99f41e768e6740adbf2ee708488b29fe6265a.tar.gz |
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
Diffstat (limited to 'config.py')
-rw-r--r-- | config.py | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -6,3 +6,8 @@ config.read("config.ini") | |||
6 | 6 | ||
7 | BOT_TOKEN = config["DEFAULT"]["BOT_TOKEN"] | 7 | BOT_TOKEN = config["DEFAULT"]["BOT_TOKEN"] |
8 | FSQ_API_KEY = config["DEFAULT"]["FOURSQUARE_API_KEY"] | 8 | FSQ_API_KEY = config["DEFAULT"]["FOURSQUARE_API_KEY"] |
9 | |||
10 | TOOT_API_BASE_URL = config["TOOT"]["API_BASE_URL"] | ||
11 | TOOT_CLIENT_ID = config["TOOT"]["CLIENT_ID"] | ||
12 | TOOT_CLIENT_SECRET = config["TOOT"]["CLIENT_SECRET"] | ||
13 | TOOT_ACCESS_TOKEN = config["TOOT"]["ACCESS_TOKEN"] | ||