python-telegram-bot/telegram/__init__.py

28 lines
762 B
Python
Raw Normal View History

2015-07-07 21:50:36 +02:00
#!/usr/bin/env python
"""A library that provides a Python interface to the Telegram Bots API"""
__author__ = 'leandrotoledodesouza@gmail.com'
__version__ = '0.1'
import json
from user import User
from message import Message
from update import Update
from groupchat import GroupChat
2015-07-08 01:52:57 +02:00
from photosize import PhotoSize
from audio import Audio
2015-07-08 02:12:51 +02:00
from document import Document
2015-07-08 04:52:12 +02:00
from sticker import Sticker
2015-07-08 14:17:18 +02:00
from video import Video
2015-07-07 21:50:36 +02:00
# from contact import Contact
from location import Location
from chataction import ChatAction
2015-07-07 21:50:36 +02:00
# from inputfile import InputFile
# from userprofilephotos import UserProfilePhotos
# from replykeyboardmarkup import ReplyKeyboardMarkup
# from replykeyboardhide import ReplyKeyboardHide
# from forcereply import ForceReply
from bot import Bot