Metadata-Version: 2.1
Name: telegrambot-py
Version: 0.0.1
Summary: Make your own telegram bot easily
Home-page: https://github.com/hellodhlyn/telegrambot-py
Author: Do Hoerin
Author-email: lyn@lynlab.co.kr
License: MIT
Description: [![Build status](https://img.shields.io/travis/hellodhlyn/telegrambot-py.svg?style=flat-square)](https://travis-ci.org/hellodhlyn/telegrambot-py)
        [![Coverage](https://img.shields.io/codecov/c/gh/hellodhlyn/telegrambot-py.svg?style=flat-square)](https://codecov.io/gh/hellodhlyn/telegrambot-py)
        [![License](https://img.shields.io/github/license/hellodhlyn/telegrambot-py.svg?style=flat-square)](https://github.com/hellodhlyn/telegrambot-py/blob/master/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](https://core.telegram.org/bots#3-how-do-i-create-a-bot).
        
        Below is the example code that responds 'pong' for '/ping' command.
        
        ```python
        from telegrambot import Bot
        
        bot = Bot('your_bot_token')
        
        @bot.command('/ping')
        def ping(ctx):
            return 'pong'
        
        bot.start()
        ```
        
        ## Development
        ### Prerequsites
        
        - Python 3.5 or greater
        - [Pipenv](https://github.com/pypa/pipenv)
        
        ### Install dependencies
        
        ```sh
        pipenv install --dev
        ```
        
        ### Running Tests
        
        ```sh
        pipenv run lint
        pipenv run test
        ```
        
        ### Deployment
        
        ```sh
        pipenv run package
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=3.5
Description-Content-Type: text/markdown
