Archived
1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
teleexit/main.py

17 lines
374 B
Python
Raw Normal View History

2020-11-06 21:59:28 +01:00
import logging
from bot import updater
2020-11-06 21:59:28 +01:00
local = {"first_name": "Firstname",
"last_name": "Lastname",
"birth_date": "Birth date",
"birth_city": "Birth city",
"address": "Address"}
database = {}
messages = {}
2020-11-06 21:59:28 +01:00
logging.basicConfig(format="%(asctime)s - %(name)s - %(levelname)s - %(message)s", level=logging.INFO)
updater.start_polling()