2015-07-07 16:50:36 -03:00
|
|
|
#!/usr/bin/env python
|
2015-08-11 16:58:17 -03:00
|
|
|
#
|
|
|
|
# A library that provides a Python interface to the Telegram Bot API
|
2016-01-05 14:12:03 +01:00
|
|
|
# Copyright (C) 2015-2016
|
|
|
|
# Leandro Toledo de Souza <devs@python-telegram-bot.org>
|
2015-08-11 16:58:17 -03:00
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Lesser Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Lesser Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser Public License
|
|
|
|
# along with this program. If not, see [http://www.gnu.org/licenses/].
|
2015-07-07 16:50:36 -03:00
|
|
|
|
2015-08-28 12:19:30 -03:00
|
|
|
"""A library that provides a Python interface to the Telegram Bot API"""
|
2015-07-07 16:50:36 -03:00
|
|
|
|
2015-07-20 07:53:58 -03:00
|
|
|
from .base import TelegramObject
|
2015-07-12 10:39:11 -03:00
|
|
|
from .user import User
|
2015-12-16 15:31:02 +01:00
|
|
|
from .chat import Chat
|
2015-07-12 10:39:11 -03:00
|
|
|
from .photosize import PhotoSize
|
|
|
|
from .audio import Audio
|
2015-08-17 11:34:42 -03:00
|
|
|
from .voice import Voice
|
2015-07-12 10:39:11 -03:00
|
|
|
from .document import Document
|
|
|
|
from .sticker import Sticker
|
|
|
|
from .video import Video
|
|
|
|
from .contact import Contact
|
|
|
|
from .location import Location
|
|
|
|
from .chataction import ChatAction
|
|
|
|
from .userprofilephotos import UserProfilePhotos
|
2015-07-19 23:06:04 -03:00
|
|
|
from .replymarkup import ReplyMarkup
|
2015-07-12 10:39:11 -03:00
|
|
|
from .replykeyboardmarkup import ReplyKeyboardMarkup
|
|
|
|
from .replykeyboardhide import ReplyKeyboardHide
|
|
|
|
from .forcereply import ForceReply
|
|
|
|
from .error import TelegramError
|
2015-08-21 23:15:29 -03:00
|
|
|
from .inputfile import InputFile
|
2015-09-20 12:28:10 -03:00
|
|
|
from .file import File
|
2015-08-09 09:41:58 -03:00
|
|
|
from .nullhandler import NullHandler
|
2015-07-12 10:39:11 -03:00
|
|
|
from .emoji import Emoji
|
2015-09-10 20:15:20 +03:00
|
|
|
from .parsemode import ParseMode
|
2015-08-21 14:49:07 -03:00
|
|
|
from .message import Message
|
2016-01-04 17:31:06 +01:00
|
|
|
from .inlinequery import InlineQuery
|
|
|
|
from .choseninlineresult import ChosenInlineResult
|
|
|
|
from .inlinequeryresult import InlineQueryResultArticle, InlineQueryResultGif,\
|
|
|
|
InlineQueryResultMpeg4Gif, InlineQueryResultPhoto, InlineQueryResultVideo
|
2015-08-21 23:15:29 -03:00
|
|
|
from .update import Update
|
2015-07-12 10:39:11 -03:00
|
|
|
from .bot import Bot
|
2015-11-22 14:52:41 +01:00
|
|
|
from .dispatcher import Dispatcher
|
2016-01-04 00:01:00 +01:00
|
|
|
from .jobqueue import JobQueue
|
2016-01-20 19:56:41 +01:00
|
|
|
from .updatequeue import UpdateQueue
|
2016-01-05 13:32:19 +01:00
|
|
|
from .updater import Updater
|
2015-07-07 16:50:36 -03:00
|
|
|
|
2016-01-20 19:56:41 +01:00
|
|
|
|
2016-01-13 14:23:15 -02:00
|
|
|
__author__ = 'devs@python-telegram-bot.org'
|
2016-02-28 02:33:49 +01:00
|
|
|
__version__ = '3.3'
|
2016-01-13 14:09:35 -02:00
|
|
|
__all__ = ('Bot', 'Updater', 'Dispatcher', 'Emoji', 'TelegramError',
|
2015-11-21 16:04:06 +01:00
|
|
|
'InputFile', 'ReplyMarkup', 'ForceReply', 'ReplyKeyboardHide',
|
|
|
|
'ReplyKeyboardMarkup', 'UserProfilePhotos', 'ChatAction',
|
|
|
|
'Location', 'Contact', 'Video', 'Sticker', 'Document', 'File',
|
2015-12-16 15:31:02 +01:00
|
|
|
'Audio', 'PhotoSize', 'Chat', 'Update', 'ParseMode', 'Message',
|
2016-01-04 17:31:06 +01:00
|
|
|
'User', 'TelegramObject', 'NullHandler', 'Voice', 'JobQueue',
|
|
|
|
'InlineQuery', 'ChosenInlineResult', 'InlineQueryResultArticle',
|
|
|
|
'InlineQueryResultGif', 'InlineQueryResultPhoto',
|
2016-01-25 18:05:27 +01:00
|
|
|
'InlineQueryResultMpeg4Gif', 'InlineQueryResultVideo',
|
2016-01-20 19:56:41 +01:00
|
|
|
'UpdateQueue')
|