Skip to main content

Make your own telegram bot easily

Project description

Build status Coverage PyPI PyPI - Python Version License

telegrambot-py

Make your own telegram bot easily.

Getting Started

Before starting, you need to create a bot and get a token for it. For details, see instructions here.

Below is the example code that responds 'pong' for '/ping' command.

from telegrambot import Bot

bot = Bot('your_bot_token')

@bot.command('/ping {name}')
def ping(ctx, name):
    return "Hello, {}".format(name)

bot.start()

Development

Prerequsites

  • Python 3.5 or greater
  • Pipenv

Install dependencies

pipenv install --dev

Running Tests

pipenv run lint
pipenv run test

Deployment

pipenv run package

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

telegrambot-py-0.1.0.tar.gz (3.0 kB view hashes)

Uploaded Source

Built Distribution

telegrambot_py-0.1.0-py3-none-any.whl (4.7 kB view hashes)

Uploaded Python 3

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