telegram---papagaio-fur-bot/papagaio/__init__.py

10 lines
179 B
Python
Raw Permalink Normal View History

2019-09-11 18:38:10 +00:00
#!/usr/bin/env python3
# -*- encoding: utf-8 -*-
2019-09-11 22:52:24 +00:00
from pathlib import Path
from .telebot import start_bot
2019-09-11 18:38:10 +00:00
def main():
2019-09-11 22:52:24 +00:00
start_bot(Path('telegrambot.txt').read_text().strip())