13 lines
315 B
Python
13 lines
315 B
Python
# 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,
|
|
]
|