From 5ce758ca97a32d0f1162d4cacf4cbfc0afee814a Mon Sep 17 00:00:00 2001 From: Ceda EI Date: Tue, 1 Jan 2019 21:06:54 +0530 Subject: [PATCH] Update gitignore, Add sample config --- .gitignore | 1 + sample.config.py | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 sample.config.py diff --git a/.gitignore b/.gitignore index 6a18ad4..ffb978a 100644 --- a/.gitignore +++ b/.gitignore @@ -94,3 +94,4 @@ ENV/ # Rope project settings .ropeproject +config.py diff --git a/sample.config.py b/sample.config.py new file mode 100644 index 0000000..fdb338e --- /dev/null +++ b/sample.config.py @@ -0,0 +1,12 @@ +# Create a new bot by messaging @BotFather and follow the instructions +# Replace the key by the actual token recieved from BotFather +api_key = "123456789:xxxxxxxxxxxxxxxxxxxxxxxxxxxx" + +# ID of Channel to post +channel_id = -12345678 + +# Allowed users +allowed_users = [ + 123456789, + 223456789, + ]