Metadata-Version: 2.1
Name: telegrambotapiwrapper
Version: 0.0.4
Summary: Python Telegram Bot Api Wrapper.
Home-page: https://github.com/pynista/telegrambotapiwrapper
Author: Dzmitry Maliuzhenets
Author-email: dzmitrymliuzhenets@gmail.com
License: UNKNOWN
Description: 
        # telegrambotapiwrapper
        Python Telegram Bot API wrapper
        
        ### What is telegrambotapiwrapper?
        `telegramapiwrapper` is the simplest Telegram Bot Api wrapper for Python among existing wrappers.
        ### Requirements
        Python 3.7
        ### Installation
        ```
        pip install telegrambotapiwrapper
        ```
        
        # Getting started.
        ### Создание бота
        Вы должны [создать бота и получить токен](https://core.telegram.org/bots#6-botfather)
        
        ### Testing your bot's auth token
        Воспользуемся методом [getMe](https://core.telegram.org/bots/api#getme)
        ```python
        >>> from telegrambotapiwrapper.wrapper import Api
        >>> bot_api = Api(token="<paste here your token>")
        >>> me = bot_api.get_me()
        >>> me
        User(id=123456679, is_bot=True, first_name='botbotbot', last_name=None, username='myrudatingposterbot', language_code=None)
        >>> from telegrambotapiwrapper.typelib import User
        >>> isinstance(me, User)
        True
        ```
        ### Sending text message
        
        ### Sending audio file
        
        ### Sending 
        
        
        ### Writing first bot
        ```python
        # firstbot.py
        from telegrambotapiwrapper.wrapper import Api
        from telegrambotapiwrapper.typelib import User
        
        TOKEN = "<past_your_bot_api_token>"
        
        bot_api = Api(token=TOKEN)
        me = bot_api.get_me()
        print("me: {}".format(me))
        print("isinstance(me, User): {}".format(isinstance(me, User)))  # see type of result
        ```
        Result:
        ```
        (venv) dzmitry@mycomp:~$ python3 firstbot.py 
        me: User(id=123456789, is_bot=True, first_name='myrfffrbot', last_name=None, username='myrfffrbot', language_code=None)
        isinstance(me, User): True
        (venv) dzmitry@mycomp:~$
        ```
        ## Examples
        ### Setting webhook
        ### Sending message
        ### Sending file
        
        ## Using proxies
        
        ## License
        MIT License
        Copyright (c) 2019 Dzmitry Maliuzhenets
        
        See LICENSE for details.
        
        
Keywords: telegram api bot wrapper
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Natural Language :: Russian
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
