Skip to main content

A shell for telethon

Project description

teleshell

Install:

pip install teleshell

Quick start:

import teleshell
from telethon import TelegramClient


users = []

async def first_func(event):
    users.append(event.chat_id)
    return event.chat_id

client = TelegramClient('bot', 1059116, '878b25abdce8a6c4eb01f10ecf0aefa3').start(bot_token='1499588762:AAG0GVFwssyy4eyVJTBvvWqJIHSA5uvOc4k')
shell = teleshell.ClientShell(client=client, default_first=first_func)
handle = shell.handle


@handle(command='start')
async def func(event, first):
    await event.reply('Started!')


@handle(command='help', first=None)
async def func(event):
    await event.reply('Help!')


@handle(text=r'he(l)+o', regular=True, lower=True)
async def func(event, first):
    await event.reply('Hello!')

client.run_until_disconnected()

Version: 0.0.2

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

teleshell-0.0.2.tar.gz (1.9 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page