teleg-api-bot
Telegram Api for new bot system
Getting started
This project uses Python 3, so you should probably install that, if you haven't already.
You should probably take a look at our Getting Started wiki page.
Usage
Dependencies: Python 3.4, py-yaml
"main.py" is the main file to run. It is an example of a bot.
Example bot:
from telegbot import telegbot
from logger import logger
logger = logger()
import time,json
def receive_message(msg):
if msg["date"] < time.time() - 2:
return
logger.msg(msg)
if msg["text"] == "/help":
bot.sendMessage(msg["chat"]["id"], "Text")
bot = telegbot('TOKEN')
bot.on_receive_message = receive_message
bot.run()