Metadata-Version: 2.1
Name: lullaby
Version: 0.2
Summary: Telegram Bot API Python wrapper.
Home-page: https://github.com/andrekornyk/Lullaby-Library-by-DexTeam/
Author: DexTeam
Author-email: bankcommandoofficial@gmail.com
Keywords: telegram bot api lullaby
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: requests ==2.31.0

================================================================
Framework for extract data from vk.com (russian social network).
================================================================

This is a Python wrapper for Telegram Bot API.

Quickstart
==========

Install
-------

.. code:: bash

    pip install lullaby

Usage
-----

.. code:: python

    >>> from lullaby import Lullaby
    >>> from lullaby.long_polling import get_updates
    >>>
    >>> token = '123456:ABC-DEF1234ghIkl-zyx57W2v1u123ew11'
    >>> lullaby_bot = Lullaby(token)
    >>>
    >>> print(lullaby_bot.getMe())
    >>>
    >>> def on_updates(updates):
    ...    print(updates)
    ...
    >>> get_updates(lullaby_bot, on_updates, timeout=10)

See https://core.telegram.org/bots/api for detailed API guide.
