From 48cd0ed8abf0e84fc5d013a126e84c65ef0ed87a Mon Sep 17 00:00:00 2001 From: clarkzjw Date: Mon, 20 Feb 2023 01:17:46 -0800 Subject: ignore config.ini in .gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 68bc17f..0671e2e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +config.ini # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] -- cgit v1.2.3 From 3a230798be1bc63b363cf75b8b1cae3a508cca84 Mon Sep 17 00:00:00 2001 From: clarkzjw Date: Mon, 20 Feb 2023 01:55:20 -0800 Subject: 4sq: add query poi example --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 0671e2e..fdccc84 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,6 @@ +foursquare/location_example.json config.ini +.idea/ # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] -- cgit v1.2.3 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 --- .gitignore | 1 + 1 file changed, 1 insertion(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index fdccc84..eb701d6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ foursquare/location_example.json config.ini .idea/ +fsq_poi.db # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] -- cgit v1.2.3