├── .gitignore
├── CHANGELOG.md
├── LICENSE.md
├── README.md
├── doc
├── Makefile
├── _code
│ ├── counter.py
│ ├── countera.py
│ ├── inline_keyboard.py
│ ├── inline_per_user.py
│ ├── inline_query_answerer.py
│ └── inline_query_simple.py
├── conf.py
├── index.rst
└── reference.rst
├── examples
├── README.md
├── callback
│ ├── README.md
│ ├── datecalc.py
│ ├── datecalca.py
│ ├── lover.py
│ ├── lovera.py
│ ├── quiz.py
│ ├── quiza.py
│ ├── vote.py
│ └── votea.py
├── chat
│ ├── README.md
│ ├── chatbox_nodb.py
│ ├── chatboxa_nodb.py
│ ├── counter.py
│ ├── countera.py
│ ├── guess.py
│ └── guessa.py
├── deeplinking
│ ├── README.md
│ └── flask_deeplinking.py
├── event
│ ├── alarm.py
│ └── alarma.py
├── inline
│ ├── README.md
│ ├── inline.py
│ └── inlinea.py
├── payment
│ ├── payment.py
│ └── paymenta.py
├── simple
│ ├── README.md
│ ├── diceyclock.py
│ ├── emodi.py
│ ├── skeleton.py
│ ├── skeleton_route.py
│ ├── skeletona.py
│ └── skeletona_route.py
└── webhook
│ ├── README.md
│ ├── aiohttp_countera.py
│ ├── aiohttp_skeletona.py
│ ├── flask_counter.py
│ └── flask_skeleton.py
├── setup.py
├── telepot
├── __init__.py
├── aio
│ ├── __init__.py
│ ├── api.py
│ ├── delegate.py
│ ├── hack.py
│ ├── helper.py
│ ├── loop.py
│ └── routing.py
├── api.py
├── delegate.py
├── exception.py
├── filtering.py
├── hack.py
├── helper.py
├── loop.py
├── namedtuple.py
├── routing.py
└── text.py
└── test
├── bookshelf.jpg
├── dgdg.mp3
├── document.txt
├── example.ogg
├── gandhi.png
├── hktraffic.mp4
├── lighthouse.jpg
├── lincoln.png
├── old.cert
├── saturn.jpg
├── test27_admin.py
├── test27_inline.py
├── test27_pay.py
├── test27_queue.py
├── test27_routing.py
├── test27_send.py
├── test27_sticker.py
├── test27_text.py
├── test27_updates.py
├── test3_admin.py
├── test3_inline.py
├── test3_pay.py
├── test3_queue.py
├── test3_routing.py
├── test3_send.py
├── test3_sticker.py
├── test3_text.py
├── test3_updates.py
├── test3a_admin.py
├── test3a_inline.py
├── test3a_pay.py
├── test3a_queue.py
├── test3a_routing.py
├── test3a_send_updates.py
└── test3a_sticker.py
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/.gitignore
--------------------------------------------------------------------------------
/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/CHANGELOG.md
--------------------------------------------------------------------------------
/LICENSE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/LICENSE.md
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/README.md
--------------------------------------------------------------------------------
/doc/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/doc/Makefile
--------------------------------------------------------------------------------
/doc/_code/counter.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/doc/_code/counter.py
--------------------------------------------------------------------------------
/doc/_code/countera.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/doc/_code/countera.py
--------------------------------------------------------------------------------
/doc/_code/inline_keyboard.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/doc/_code/inline_keyboard.py
--------------------------------------------------------------------------------
/doc/_code/inline_per_user.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/doc/_code/inline_per_user.py
--------------------------------------------------------------------------------
/doc/_code/inline_query_answerer.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/doc/_code/inline_query_answerer.py
--------------------------------------------------------------------------------
/doc/_code/inline_query_simple.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/doc/_code/inline_query_simple.py
--------------------------------------------------------------------------------
/doc/conf.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/doc/conf.py
--------------------------------------------------------------------------------
/doc/index.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/doc/index.rst
--------------------------------------------------------------------------------
/doc/reference.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/doc/reference.rst
--------------------------------------------------------------------------------
/examples/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/examples/README.md
--------------------------------------------------------------------------------
/examples/callback/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/examples/callback/README.md
--------------------------------------------------------------------------------
/examples/callback/datecalc.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/examples/callback/datecalc.py
--------------------------------------------------------------------------------
/examples/callback/datecalca.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/examples/callback/datecalca.py
--------------------------------------------------------------------------------
/examples/callback/lover.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/examples/callback/lover.py
--------------------------------------------------------------------------------
/examples/callback/lovera.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/examples/callback/lovera.py
--------------------------------------------------------------------------------
/examples/callback/quiz.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/examples/callback/quiz.py
--------------------------------------------------------------------------------
/examples/callback/quiza.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/examples/callback/quiza.py
--------------------------------------------------------------------------------
/examples/callback/vote.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/examples/callback/vote.py
--------------------------------------------------------------------------------
/examples/callback/votea.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/examples/callback/votea.py
--------------------------------------------------------------------------------
/examples/chat/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/examples/chat/README.md
--------------------------------------------------------------------------------
/examples/chat/chatbox_nodb.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/examples/chat/chatbox_nodb.py
--------------------------------------------------------------------------------
/examples/chat/chatboxa_nodb.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/examples/chat/chatboxa_nodb.py
--------------------------------------------------------------------------------
/examples/chat/counter.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/examples/chat/counter.py
--------------------------------------------------------------------------------
/examples/chat/countera.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/examples/chat/countera.py
--------------------------------------------------------------------------------
/examples/chat/guess.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/examples/chat/guess.py
--------------------------------------------------------------------------------
/examples/chat/guessa.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/examples/chat/guessa.py
--------------------------------------------------------------------------------
/examples/deeplinking/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/examples/deeplinking/README.md
--------------------------------------------------------------------------------
/examples/deeplinking/flask_deeplinking.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/examples/deeplinking/flask_deeplinking.py
--------------------------------------------------------------------------------
/examples/event/alarm.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/examples/event/alarm.py
--------------------------------------------------------------------------------
/examples/event/alarma.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/examples/event/alarma.py
--------------------------------------------------------------------------------
/examples/inline/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/examples/inline/README.md
--------------------------------------------------------------------------------
/examples/inline/inline.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/examples/inline/inline.py
--------------------------------------------------------------------------------
/examples/inline/inlinea.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/examples/inline/inlinea.py
--------------------------------------------------------------------------------
/examples/payment/payment.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/examples/payment/payment.py
--------------------------------------------------------------------------------
/examples/payment/paymenta.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/examples/payment/paymenta.py
--------------------------------------------------------------------------------
/examples/simple/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/examples/simple/README.md
--------------------------------------------------------------------------------
/examples/simple/diceyclock.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/examples/simple/diceyclock.py
--------------------------------------------------------------------------------
/examples/simple/emodi.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/examples/simple/emodi.py
--------------------------------------------------------------------------------
/examples/simple/skeleton.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/examples/simple/skeleton.py
--------------------------------------------------------------------------------
/examples/simple/skeleton_route.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/examples/simple/skeleton_route.py
--------------------------------------------------------------------------------
/examples/simple/skeletona.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/examples/simple/skeletona.py
--------------------------------------------------------------------------------
/examples/simple/skeletona_route.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/examples/simple/skeletona_route.py
--------------------------------------------------------------------------------
/examples/webhook/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/examples/webhook/README.md
--------------------------------------------------------------------------------
/examples/webhook/aiohttp_countera.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/examples/webhook/aiohttp_countera.py
--------------------------------------------------------------------------------
/examples/webhook/aiohttp_skeletona.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/examples/webhook/aiohttp_skeletona.py
--------------------------------------------------------------------------------
/examples/webhook/flask_counter.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/examples/webhook/flask_counter.py
--------------------------------------------------------------------------------
/examples/webhook/flask_skeleton.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/examples/webhook/flask_skeleton.py
--------------------------------------------------------------------------------
/setup.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/setup.py
--------------------------------------------------------------------------------
/telepot/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/telepot/__init__.py
--------------------------------------------------------------------------------
/telepot/aio/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/telepot/aio/__init__.py
--------------------------------------------------------------------------------
/telepot/aio/api.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/telepot/aio/api.py
--------------------------------------------------------------------------------
/telepot/aio/delegate.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/telepot/aio/delegate.py
--------------------------------------------------------------------------------
/telepot/aio/hack.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/telepot/aio/hack.py
--------------------------------------------------------------------------------
/telepot/aio/helper.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/telepot/aio/helper.py
--------------------------------------------------------------------------------
/telepot/aio/loop.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/telepot/aio/loop.py
--------------------------------------------------------------------------------
/telepot/aio/routing.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/telepot/aio/routing.py
--------------------------------------------------------------------------------
/telepot/api.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/telepot/api.py
--------------------------------------------------------------------------------
/telepot/delegate.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/telepot/delegate.py
--------------------------------------------------------------------------------
/telepot/exception.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/telepot/exception.py
--------------------------------------------------------------------------------
/telepot/filtering.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/telepot/filtering.py
--------------------------------------------------------------------------------
/telepot/hack.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/telepot/hack.py
--------------------------------------------------------------------------------
/telepot/helper.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/telepot/helper.py
--------------------------------------------------------------------------------
/telepot/loop.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/telepot/loop.py
--------------------------------------------------------------------------------
/telepot/namedtuple.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/telepot/namedtuple.py
--------------------------------------------------------------------------------
/telepot/routing.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/telepot/routing.py
--------------------------------------------------------------------------------
/telepot/text.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/telepot/text.py
--------------------------------------------------------------------------------
/test/bookshelf.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/test/bookshelf.jpg
--------------------------------------------------------------------------------
/test/dgdg.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/test/dgdg.mp3
--------------------------------------------------------------------------------
/test/document.txt:
--------------------------------------------------------------------------------
1 | Something
--------------------------------------------------------------------------------
/test/example.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/test/example.ogg
--------------------------------------------------------------------------------
/test/gandhi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/test/gandhi.png
--------------------------------------------------------------------------------
/test/hktraffic.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/test/hktraffic.mp4
--------------------------------------------------------------------------------
/test/lighthouse.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/test/lighthouse.jpg
--------------------------------------------------------------------------------
/test/lincoln.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/test/lincoln.png
--------------------------------------------------------------------------------
/test/old.cert:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/test/old.cert
--------------------------------------------------------------------------------
/test/saturn.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/test/saturn.jpg
--------------------------------------------------------------------------------
/test/test27_admin.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/test/test27_admin.py
--------------------------------------------------------------------------------
/test/test27_inline.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/test/test27_inline.py
--------------------------------------------------------------------------------
/test/test27_pay.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/test/test27_pay.py
--------------------------------------------------------------------------------
/test/test27_queue.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/test/test27_queue.py
--------------------------------------------------------------------------------
/test/test27_routing.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/test/test27_routing.py
--------------------------------------------------------------------------------
/test/test27_send.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/test/test27_send.py
--------------------------------------------------------------------------------
/test/test27_sticker.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/test/test27_sticker.py
--------------------------------------------------------------------------------
/test/test27_text.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/test/test27_text.py
--------------------------------------------------------------------------------
/test/test27_updates.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/test/test27_updates.py
--------------------------------------------------------------------------------
/test/test3_admin.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/test/test3_admin.py
--------------------------------------------------------------------------------
/test/test3_inline.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/test/test3_inline.py
--------------------------------------------------------------------------------
/test/test3_pay.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/test/test3_pay.py
--------------------------------------------------------------------------------
/test/test3_queue.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/test/test3_queue.py
--------------------------------------------------------------------------------
/test/test3_routing.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/test/test3_routing.py
--------------------------------------------------------------------------------
/test/test3_send.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/test/test3_send.py
--------------------------------------------------------------------------------
/test/test3_sticker.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/test/test3_sticker.py
--------------------------------------------------------------------------------
/test/test3_text.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/test/test3_text.py
--------------------------------------------------------------------------------
/test/test3_updates.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/test/test3_updates.py
--------------------------------------------------------------------------------
/test/test3a_admin.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/test/test3a_admin.py
--------------------------------------------------------------------------------
/test/test3a_inline.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/test/test3a_inline.py
--------------------------------------------------------------------------------
/test/test3a_pay.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/test/test3a_pay.py
--------------------------------------------------------------------------------
/test/test3a_queue.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/test/test3a_queue.py
--------------------------------------------------------------------------------
/test/test3a_routing.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/test/test3a_routing.py
--------------------------------------------------------------------------------
/test/test3a_send_updates.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/test/test3a_send_updates.py
--------------------------------------------------------------------------------
/test/test3a_sticker.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickoala/telepot/HEAD/test/test3a_sticker.py
--------------------------------------------------------------------------------