Metadata-Version: 2.1
Name: telegram.py
Version: 0.1.0
Summary: An async API wrapper for telegram in Python
Home-page: https://github.com/ilovetocode2019/telegram.py
Author: ilovetocode
License: UNKNOWN
Project-URL: Documentation, https://telegrampy.readthedocs.io
Project-URL: Issue tracker, https://github.com/ilovetocode2019/telegram.py/issues
Description: <p align="center">
        <img src="docs/icon.png" alt="Logo" title="telegram.py" height="200" width="200"/>
        </p>
        
        # telegram.py
        
        [![PyPI](https://img.shields.io/pypi/v/telegram.py)](https://pypi.org/project/telegram.py)
        [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/telegram.py)](https://pypi.org/project/telegram.py)
        [![Documentation Status](https://readthedocs.org/projects/telegrampy/badge/?version=latest)](https://telegrampy.readthedocs.io/en/latest/?badge=latest)
        [![GitHub - License](https://img.shields.io/github/license/ilovetocode2019/telegram.py)](LICENSE)
        [![Telegram Channel](https://img.shields.io/badge/telegram-t.me%2Ftpy__updates-0088cc)](https://t.me/tpy_updates)
        
        An async API wrapper for Telegram in Python
        
        ## Installation
        
        Python 3.6+ is **required** to install and use telegram.py.
        
        Install the latest release from PyPi:
        
        ```bash
        # Mac/Linux
        python3 -m pip install telegram.py
        
        # Windows
        py -3 -m pip install telegram.py
        ```
        
        Or install the development version from GitHub:
        
        ```
        # Mac/Linux
        python3 -m pip install git+https://github.com/ilovetocode2019/telegram.py
        
        # Windows
        py -3 -m pip install git+https://github.com/ilovetocode2019/telegram.py
        ```
        
        ## Quick Example
        
        ```python
        import logging
        
        import telegrampy
        from telegrampy.ext import commands
        
        logging.basicConfig(level=logging.INFO, format="(%(asctime)s) %(levelname)s %(message)s", datefmt="%m/%d/%y - %H:%M:%S %Z")
        logger = logging.getLogger("telegrampy")
        
        bot = commands.Bot("token here")
        
        @bot.command()
        async def hi(ctx):
            await ctx.send("Hello")
        
        bot.run()
        ```
        
        For a line-by-line walkthrough for this example, see the [quickstart](https://telegrampy.readthedocs.io/en/latest/quickstart.html#basic-example).
        
        ## Documentation
        
        [Documentation can be found here.](https://telegrampy.readthedocs.io)
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Provides-Extra: docs
