Source code for twx.botapi.botapi

# -*- coding: utf-8 -*-
"""Unofficial Telegram Bot API

.. _Google Python Style Guide:
   http://google.github.io/styleguide/pyguide.html

"""

from requests import Request, Session
from collections import namedtuple
from abc import ABCMeta, abstractmethod
from threading import Thread
from enum import Enum

import json

"""
Telegram Bot API Types as defined at https://core.telegram.org/bots/api#available-types
"""
_UserBase = namedtuple('User', ['id', 'first_name', 'last_name', 'username'])
[docs]class User(_UserBase): """This object represents a Telegram user or bot. Attributes: id (int): Unique identifier for this user or bot first_name (str): User‘s or bot’s first name last_name (Optional[str]): User‘s or bot’s last name username (Optional[str]): User‘s or bot’s username """ __slots__ = () @staticmethod def from_result(result): if result is None: return None return User( id=result.get('id'), first_name=result.get('first_name'), last_name=result.get('last_name'), username=result.get('username') )
_ChatMemberBase = namedtuple('ChatMember', ['user', 'status'])
[docs]class ChatMember(_ChatMemberBase): """This object contains information about one member of the chat. Attributes: user (User): Information about the user status (str): The member's status in the chat. Can be “creator”, “administrator”, “member”, “left” or “kicked” """ __slots__ = () @staticmethod def from_result(result): if result is None: return None return User( user=User.from_result(result.get('user')), status=result.get('status'), ) @staticmethod def from_result_list(results): if results is None: return None ret = [] for result in results: ret.append( User( user=User.from_result(result.get('user')), status=result.get('status'), ) ) return ret
_ChatBase = namedtuple('Chat', ['id', 'type', 'title', 'username', 'first_name', 'last_name'])
[docs]class Chat(_ChatBase): """This object represents a chat. Attributes: id (int) :Unique identifier for this chat, not exceeding 1e13 by absolute value type (str) :Type of chat, can be either “private”, or “group”, or “channel” title (str) :*Optional.* Title, for channels and group chats username (str) :*Optional.* Username, for private chats and channels if available first_name (str) :*Optional.* First name of the other party in a private chat last_name (str) :*Optional.* Last name of the other party in a private chat """ __slots__ = () @staticmethod def from_result(result): if result is None: return None return Chat( id=result.get('id'), type=result.get('type'), title=result.get('title'), username=result.get('username'), first_name=result.get('first_name'), last_name=result.get('last_name'), )
_MessageBase = namedtuple('Message', [ 'message_id', 'sender', 'date', 'edit_date', 'chat', 'forward_from', 'forward_from_chat', 'forward_date', 'reply_to_message', 'text', 'entities', 'audio', 'document', 'photo', 'sticker', 'video', 'voice', 'caption', 'contact', 'location', 'venue', 'new_chat_member', 'left_chat_member', 'new_chat_title', 'new_chat_photo', 'delete_chat_photo', 'group_chat_created', 'supergroup_chat_created', 'channel_chat_created', 'migrate_to_chat_id', 'migrate_from_chat_id', 'pinned_message'])
[docs]class Message(_MessageBase): """This object represents a message. Attributes: message_id (int) :Unique message identifier from (User) :*Optional.* Sender, can be empty for messages sent to channels date (int) :Date the message was sent in Unix time chat (Chat) :Conversation the message belongs to forward_from (User) :*Optional.* For forwarded messages, sender of the original message forward_from_chat (Chat) :*Optional.* For messages forwarded from a channel, information about the original channel forward_date (int) :*Optional.* For forwarded messages, date the original message was sent in Unix time reply_to_message (Message) :*Optional.* For replies, the original message. Note that the Message object in this field will not contain further reply_to_message fields even if it itself is a reply. edit_date (int) :*Optional.* Date the message was last edited in Unix time text (str) :*Optional.* For text messages, the actual UTF-8 text of the message entities (Sequence[MessageEntity]) :*Optional.*For text messages, special entities like usernames, URLs, bot commands, etc. that appear in the text audio (Audio) :*Optional.* Message is an audio file, information about the file document (Document) :*Optional.* Message is a general file, information about the file photo (Sequence[PhotoSize]) :*Optional.* Message is a photo, available sizes of the photo sticker (Sticker) :*Optional.* Message is a sticker, information about the sticker video (Video) :*Optional.* Message is a video, information about the video voice (Voice) :*Optional.* Message is a voice message, information about the file caption (str) :*Optional.* Caption for the photo or video contact (Contact) :*Optional.* Message is a shared contact, information about the contact location (Location) :*Optional.* Message is a shared location, information about the location venue (Venue) :*Optional.* Message is a venue, information about the venue new_chat_member (User) :*Optional.* A new member was added to the group, information about them (this member may be bot itself) left_chat_member (User) :*Optional.* A member was removed from the group, information about them (this member may be bot itself) new_chat_title (str) :*Optional.* A group title was changed to this value new_chat_photo (Sequence[PhotoSize]) :*Optional.* A group photo was change to this value delete_chat_photo (bool) :*Optional.* Informs that the group photo was deleted group_chat_created (bool) :*Optional.* Informs that the group has been created supergroup_chat_created (bool) :*Optional.* Service message: the supergroup has been created channel_chat_created (bool) :*Optional.* Service message: the channel has been created migrate_to_chat_id (int) :*Optional.* The group has been migrated to a supergroup with the specified identifier, not exceeding 1e13 by absolute value migrate_from_chat_id (int) :*Optional.* The supergroup has been migrated from a group with the specified identifier, not exceeding 1e13 by absolute value pinned_message (Message) :*Optional.* Specified message was pinned. Note that the Message object in this field will not contain further reply_to_message fields even if it is itself a reply. """ __slots__ = () @property def new_chat_participant(self): print("DEPRECATED: new_chat_participant is now new_chat_member") return self.new_chat_member @property def left_chat_participant(self): print("DEPRECATED: left_chat_participant is now left_chat_member") return self.left_chat_member @staticmethod def from_result(result): if result is None: return None # photo is a list of PhotoSize photo = result.get('photo') if photo is not None: photo = [PhotoSize.from_result(photo_size) for photo_size in photo] # entities is a list of MessageEntity entities = result.get('entities') if entities is not None: entities = [MessageEntity.from_result(entity) for entity in entities] return Message( message_id=result.get('message_id'), sender=User.from_result(result.get('from')), date=result.get('date'), edit_date=result.get('edit_date'), chat=Chat.from_result(result.get('chat')), forward_from=User.from_result(result.get('forward_from')), forward_from_chat=Chat.from_result(result.get('forward_from_chat')), forward_date=result.get('forward_date'), reply_to_message=Message.from_result(result.get('reply_to_message')), text=result.get('text'), entities=entities, audio=Audio.from_result(result.get('audio')), document=Document.from_result(result.get('document')), photo=photo, sticker=Sticker.from_result(result.get('sticker')), video=Video.from_result(result.get('video')), voice=Voice.from_result(result.get('voice')), caption=result.get('caption'), contact=Contact.from_result(result.get('contact')), location=Location.from_result(result.get('location')), venue=Venue.from_result(result.get('venue')), new_chat_member=User.from_result(result.get('new_chat_member')), left_chat_member=User.from_result(result.get('left_chat_member')), new_chat_title=result.get('new_chat_title'), new_chat_photo=result.get('new_chat_photo'), delete_chat_photo=result.get('delete_chat_photo'), group_chat_created=result.get('group_chat_created'), supergroup_chat_created=result.get('supergroup_chat_created'), channel_chat_created=result.get('channel_chat_created'), migrate_to_chat_id=result.get('migrate_to_chat_id'), migrate_from_chat_id=result.get('migrate_from_chat_id'), pinned_message=Message.from_result(result.get('pinned_message')) )
_MessageEntityBase = namedtuple('MessageEntity', ['type', 'offset', 'length', 'url', 'user'])
[docs]class MessageEntity(_MessageEntityBase): """This object represents a chat. Attributes: type (str) :Type of the entity. One of mention (@username), hashtag, bot_command, url, email, bold (bold text), italic (italic text), code (monowidth string), pre (monowidth block), text_link (for clickable text URLs), text_mention (for users without usernames) offset (int) :Offset in UTF-16 code units to the start of the entity length (int) :Length of the entity in UTF-16 code units url (str) :*Optional.* For “text_link” only, url that will be opened after user taps on the text user (User0 :*Optional.* For “text_mention” only, the mentioned user """ __slots__ = () @staticmethod def from_result(result): if result is None: return None return MessageEntity( type=result.get('type'), offset=result.get('offset'), length=result.get('length'), url=result.get('url'), user=User.from_result(result.get('user')) )
_PhotoSizeBase = namedtuple('PhotoSize', ['file_id', 'width', 'height', 'file_size'])
[docs]class PhotoSize(_PhotoSizeBase): """This object represents one size of a photo or a file / sticker thumbnail. Attributes: file_id (str) :Unique identifier for this file width (int) :Photo width height (int) :Photo height file_size (int) :*Optional.* File size """ __slots__ = () @staticmethod def from_result(result): if result is None: return None return PhotoSize( file_id=result.get('file_id'), width=result.get('width'), height=result.get('height'), file_size=result.get('file_size') )
_AudioBase = namedtuple('Audio', ['file_id', 'duration', 'performer', 'title', 'mime_type', 'file_size'])
[docs]class Audio(_AudioBase): """This object represents a generic audio file (not voice note). Attributes: file_id (str) :Unique identifier for this file duration (int) :Duration of the audio in seconds as defined by sender performer (str) :*Optional.* Performer of the audio as defined by sender or by audio tags title (str) :*Optional.* Title of the audio as defined by sender or by audio tags mime_type (str) :*Optional.* MIME type of the file as defined by sender file_size (int) :*Optional.* File size """ __slots__ = () @staticmethod def from_result(result): if result is None: return None return Audio( file_id=result.get('file_id'), duration=result.get('duration'), performer=result.get('performer'), title=result.get('title'), mime_type=result.get('mime_type'), file_size=result.get('file_size') )
_DocumentBase = namedtuple('Document', ['file_id', 'thumb', 'file_name', 'mime_type', 'file_size'])
[docs]class Document(_DocumentBase): """This object represents a general file (as opposed to photos and audio files). Attributes: file_id (str) :Unique file identifier thumb (PhotoSize) :*Optional.* Document thumbnail as defined by sender file_name (str) :*Optional.* Original filename as defined by sender mime_type (str) :*Optional.* MIME type of the file as defined by sender file_size (int) :*Optional.* File size """ __slots__ = () @staticmethod def from_result(result): if result is None: return None return Document( file_id=result.get('file_id'), thumb=PhotoSize.from_result(result.get('thumb')), file_name=result.get('file_name'), mime_type=result.get('mime_type'), file_size=result.get('file_size') )
_StickerBase = namedtuple('Sticker', ['file_id', 'width', 'height', 'thumb', 'emoji', 'file_size'])
[docs]class Sticker(_StickerBase): """This object represents a sticker. Attributes: file_id (str) :Unique identifier for this file width (int) :Sticker width height (int) :Sticker height thumb (PhotoSize) :*Optional.* Sticker thumbnail in .webp or .jpg format emoji (str) :*Optional.* Emoji associated with the sticker file_size (int) :*Optional.* File size """ __slots__ = () @staticmethod def from_result(result): if result is None: return None return Sticker( file_id=result.get('file_id'), width=result.get('width'), height=result.get('height'), thumb=PhotoSize.from_result(result.get('thumb')), emoji=result.get('emoji'), file_size=result.get('file_size') )
_VideoBase = namedtuple('Video', [ 'file_id', 'width', 'height', 'duration', 'thumb', 'mime_type', 'file_size'])
[docs]class Video(_VideoBase): """This object represents a video file. Attributes: file_id (str) :Unique identifier for this file width (int) :Video width as defined by sender height (int) :Video height as defined by sender duration (int) :Duration of the video in seconds as defined by sender thumb (PhotoSize) :*Optional.* Video thumbnail mime_type (str) :*Optional.* Mime type of a file as defined by sender file_size (int) :*Optional.* File size """ __slots__ = () @staticmethod def from_result(result): if result is None: return None return Video( file_id=result.get('file_id'), width=result.get('width'), height=result.get('height'), duration=result.get('duration'), thumb=PhotoSize.from_result(result.get('thumb')), mime_type=result.get('mime_type'), file_size=result.get('file_size') )
_VoiceBase = namedtuple('Voice', ['file_id', 'duration', 'mime_type', 'file_size'])
[docs]class Voice(_VoiceBase): """This object represents an voice node audio file. Attributes: file_id (str) :Unique identifier for this file duration (int) :Duration of the audio in seconds as defined by sender mime_type (str) :*Optional.* MIME type of the file as defined by sender file_size (int) :*Optional.* File size """ __slots__ = () @staticmethod def from_result(result): if result is None: return None return Voice( file_id=result.get('file_id'), duration=result.get('duration'), mime_type=result.get('mime_type'), file_size=result.get('file_size') )
_ContactBase = namedtuple('Contact', ['phone_number', 'first_name', 'last_name', 'user_id'])
[docs]class Contact(_ContactBase): """This object represents a phone contact. Attributes: phone_number (str) :Contact's phone number first_name (str) :Contact's first name last_name (str) :*Optional.* Contact's last name user_id (int) :*Optional.* Contact's user identifier in Telegram """ __slots__ = () @staticmethod def from_result(result): if result is None: return None return Contact( phone_number=result.get('phone_number'), first_name=result.get('first_name'), last_name=result.get('last_name'), user_id=result.get('user_id') )
_LocationBase = namedtuple('Location', ['longitude', 'latitude'])
[docs]class Location(_LocationBase): """This object represents a point on the map. Attributes: longitude (float) :Longitude as defined by sender latitude (float) :Latitude as defined by sender """ __slots__ = () @staticmethod def from_result(result): if result is None: return None return Location( longitude=result.get('longitude'), latitude=result.get('latitude') )
_VenueBase = namedtuple('Venue', ['location', 'title', 'address', 'foursquare_id'])
[docs]class Venue(_VenueBase): """This object represents a venue. Attributes: location (Location) :Venue location title (str) :Name of the venue address (str) :Address of the venue foursquare_id (str) :*Optional.* Foursquare identifier of the venue """ __slots__ = () @staticmethod def from_result(result): if result is None: return None return Venue( location=Location.from_result(result.get('location')), title=result.get('title'), address=result.get('address'), foursquare_id=result.get('foursquare_id'), )
_UpdateBase = namedtuple('Update', ['update_id', 'message', 'edited_message', 'inline_query', 'chosen_inline_result', 'callback_query'])
[docs]class Update(_UpdateBase): """This object represents an incoming update. Attributes: update_id (int) :The update‘s unique identifier. Update identifiers start from a certain positive number and increase sequentially. This ID becomes especially handy if you’re using Webhooks, since it allows you to ignore repeated updates or to restore the correct update sequence, should they get out of order. message (Message) :*Optional.* New incoming message of any kind — text, photo, sticker, etc. edited_message (Message) :*Optional.* New version of a message that is known to the bot and was edited. inline_query (InlineQuery) :*Optional.* New incoming inline query chosen_inline_result (ChosenInlineResult) :*Optional.* The result of a inline query that was chosen by a user and sent to their chat partner callback_query (CallbackQuery) :*Optional.* New incoming callback query """ __slots__ = () @staticmethod def from_dict(message_update): if message_update is None: return None return Update(message_update.get('update_id'), Message.from_result(message_update.get('message')), Message.from_result(message_update.get('edited_message')), InlineQuery.from_result(message_update.get('inline_query')), ChosenInlineResult.from_result(message_update.get('chosen_inline_result')), CallbackQuery.from_result(message_update.get('callback_query'))) @staticmethod def from_result(result): if result is None: return None updates = [Update.from_dict(message_update) for message_update in result] return updates
_InputFileInfoBase = namedtuple('InputFileInfo', ['file_name', 'fp', 'mime_type'])
[docs]class InputFileInfo(_InputFileInfoBase): """This object represents the contents of a file to be uploaded. Must be posted using multipart/form-data in the usual way that files are uploaded via the browser. Attributes: file_name (str) :The full file name fp (file object) :File object obtained via open() mime_type (str) :*Optional.* Mimetype to use when sending. """ __slots__ = ()
_InputFileBase = namedtuple('InputFile', ['form', 'file_info'])
[docs]class InputFile(_InputFileBase): """This object represents the contents of a file to be uploaded. Must be posted using multipart/form-data in the usual way that files are uploaded via the browser. Attributes: form (str) :the form used to submit (e.g. 'photo') file_info (InputFileInfo) :The file metadata required :Example: :: fp = open('foo.png', 'rb') file_info = InputFileInfo('foo.png', fp, 'image/png') InputFile('photo', file_info) bot.send_photo(chat_id=12345678, photo=InputFile) .. note:: While creating the FileInput currently requires a reasonable amount of preparation just to send a file. This class will be extended in the future to make the process easier. """ __slots__ = ()
_UserProfilePhotosBase = namedtuple('UserProfilePhotos', ['total_count', 'photos'])
[docs]class UserProfilePhotos(_UserProfilePhotosBase): """This object represent a user's profile pictures. Attributes: total_count (int): Total number of profile pictures the target user has photos (list of list of PhotoSize): Requested profile pictures (in up to 4 sizes each) """ __slots__ = () @staticmethod def from_result(result): if result is None: return None photos = [] for photo_list in result.get('photos'): photos.append([PhotoSize.from_result(photo) for photo in photo_list]) return UserProfilePhotos( total_count=result.get('total_count'), photos=photos )
_FileBase = namedtuple('File', ['file_id', 'file_size', 'file_path'])
[docs]class File(_FileBase): """This object represents a file ready to be downloaded. Attributes: file_id (str): Unique identifier for this file file_size (int): *Optional.* File size, if known file_path (str): *Optional.* File path. Use https://api.telegram.org/file/bot<token>/<file_path> to get the file. It is guaranteed that the link will be valid for at least 1 hour. """ __slots__ = () @staticmethod def from_result(result): if result is None: return None return File( file_id=result.get('file_id'), file_size=result.get('file_size'), file_path=result.get('file_path') )
class ReplyMarkup: __metaclass__ = ABCMeta __slots__ = () @abstractmethod def serialize(self): raise NotImplementedError("") _KeyboardButtonBase = namedtuple('KeyboardButton', ['text', 'request_contact', 'request_location'])
[docs]class KeyboardButton(_KeyboardButtonBase): """This object represents one button of the reply keyboard. For simple text buttons String can be used instead of this object to specify text of the button. Optional fields are mutually exclusive. Attributes: text (str): Unique identifier for this file request_contact (bool): *Optional.* If True, the user's phone number will be sent as a contact when the button is pressed. Available in private chats only request_location (bool): *Optional.* If True, the user's current location will be sent when the button is pressed. Available in private chats only """ __slots__ = () @staticmethod def create(text, request_contact=None, request_location=None): if request_contact == request_location and (request_contact or request_location): raise ValueError("Optional fields are mutually exclusive") return KeyboardButton(text, request_contact, request_location)
_ReplyKeyboardMarkupBase = namedtuple('ReplyKeyboardMarkup', [ 'keyboard', 'resize_keyboard', 'one_time_keyboard', 'selective'])
[docs]class ReplyKeyboardMarkup(_ReplyKeyboardMarkupBase, ReplyMarkup): """This object represents a custom keyboard with reply options (see Introduction to bots for details and examples). Attributes: keyboard (Sequence[Sequence[KeyboardButton or str]]) :Array of button rows, each represented by an Array of KeyboardButton objects or strings resize_keyboard (bool) :*Optional.* Requests clients to resize the keyboard vertically for optimal fit (e.g., make the keyboard smaller if there are just two rows of buttons). Defaults to false, in which case the custom keyboard is always of the same height as the app's standard keyboard. one_time_keyboard (bool) :*Optional.* Requests clients to hide the keyboard as soon as it's been used. Defaults to false. selective (bool) :*Optional.* Use this parameter if you want to show the keyboard to specific users only. Targets: 1. users that are @mentioned in the text of the Message object; 2. if the bot's message is a reply (has reply_to_message_id), sender of the original message. :example: A user requests to change the bot‘s language, bot replies to the request with a keyboard to select the new language. Other users in the group don’t see the keyboard. :Example: :: keyboard = [ ['7', '8', '9'], ['4', '5', '6'], ['1', '2', '3'], ['0'] ] reply_markup = ReplyKeyboardMarkup.create(keyboard) bot.send_message(12345678, 'testing reply_markup', reply_markup=reply_markup) """ __slots__ = () @staticmethod def create(keyboard, resize_keyboard=None, one_time_keyboard=None, selective=None): return ReplyKeyboardMarkup(keyboard, resize_keyboard, one_time_keyboard, selective) def serialize(self): reply_markup = dict(keyboard=self.keyboard) if self.resize_keyboard is not None: reply_markup['resize_keyboard'] = bool(self.resize_keyboard) if self.one_time_keyboard is not None: reply_markup['one_time_keyboard'] = bool(self.one_time_keyboard) if self.selective is not None: reply_markup['selective'] = bool(self.selective) return json.dumps(reply_markup)
_ReplyKeyboardHideBase = namedtuple('ReplyKeyboardHide', ['hide_keyboard', 'selective'])
[docs]class ReplyKeyboardHide(_ReplyKeyboardHideBase, ReplyMarkup): """Upon receiving a message with this object, Telegram clients will hide the current custom keyboard and display the default letter-keyboard. By default, custom keyboards are displayed until a new keyboard is sent by a bot. An exception is made for one-time keyboards that are hidden immediately after the user presses a button (see :class:`ReplyKeyboardMarkup`). Attributes: hide_keyboard (``True``) :Requests clients to hide the custom keyboard selective (bool) :*Optional.* Use this parameter if you want to hide keyboard for specific users only. Targets: 1. users that are @mentioned in the text of the Message object; 2. if the bot's message is a reply (has reply_to_message_id), sender of the original message. :example: A user votes in a poll, bot returns confirmation message in reply to the vote and hides keyboard for that user, while still showing the keyboard with poll options to users who haven't voted yet. """ __slots__ = () @staticmethod def create(selective=None): return ReplyKeyboardHide(True, selective) def serialize(self): reply_markup = dict( hide_keyboard=True ) if self.selective is not None: reply_markup['selective'] = bool(self.selective) return json.dumps(reply_markup)
_ForceReplyBase = namedtuple('ForceReply', ['force_reply', 'selective'])
[docs]class ForceReply(_ForceReplyBase, ReplyMarkup): """Upon receiving a message with this object, Telegram clients will display a reply interface to the user (act as if the user has selected the bot‘s message and tapped ’Reply'). This can be extremely useful if you want to create user-friendly step-by-step interfaces without having to sacrifice privacy mode. Attributes: force_reply (``True``) :Shows reply interface to the user, as if they manually selected the bot‘s message and tapped ’Reply' selective (bool) :Optional. Use this parameter if you want to force reply from specific users only. Targets: 1) users that are @mentioned in the text of the Message object; 2) if the bot's message is a reply (has reply_to_message_id), sender of the original message. :Example: A poll bot for groups runs in privacy mode (only receives commands, replies to its messages and mentions). There could be two ways to create a new poll: * Explain the user how to send a command with parameters (e.g. /newpoll question answer1 answer2). May be appealing for hardcore users but lacks modern day polish. * Guide the user through a step-by-step process. ‘Please send me your question’, ‘Cool, now let’s add the first answer option‘, ’Great. Keep adding answer options, then send /done when you‘re ready’. The last option is definitely more attractive. And if you use ForceReply in your bot‘s questions, it will receive the user’s answers even if it only receives replies, commands and mentions — without any extra work for the user. """ __slots__ = () @staticmethod def create(selective=None): return ForceReply(True, selective) def serialize(self): reply_markup = dict(force_reply=True) if self.selective is not None: reply_markup['selective'] = bool(self.selective) return json.dumps(reply_markup)
_InlineQueryBase = namedtuple('InlineQuery', ['id', 'sender', 'location', 'query', 'offset'])
[docs]class InlineQuery(_InlineQueryBase): """ This object represents an incoming inline query. When the user sends an empty query, your bot could return some default or trending results. Attributes: id (str) :Unique identifier for this query sender (User) :Sender location (Location) :*Optional.* Sender location, only for bots that request user location query (str) :Text of the query offset (str) :Offset of the results to be returned, can be controlled by the bot """ __slots__ = () @staticmethod def from_result(result): if result is None: return None return InlineQuery( id=result.get('id'), sender=User.from_result(result.get('from')), location=Location.from_result(result.get('location')), query=result.get('query'), offset=result.get('offset'), )
_ChosenInlineResultBase = namedtuple('ChosenInlineResult', ['result_id', 'sender', 'query'])
[docs]class ChosenInlineResult(_ChosenInlineResultBase): """ This object represents an incoming inline query. When the user sends an empty query, your bot could return some default or trending results. Attributes: result_id (str) :The unique identifier for the result that was chosen. sender (User) :The user that chose the result. location (Location) :*Optional.* Sender location, only for bots that require user location inline_message_id (str) :*Optional.* Identifier of the sent inline message. Available only if there is an inline keyboard attached to the message. Will be also received in callback queries and can be used to edit the message. query (str) :The query that was used to obtain the result. """ __slots__ = () @staticmethod def from_result(result): if result is None: return None return ChosenInlineResult( result_id=result.get('result_id'), sender=User.from_result(result.get('from')), location=Location.from_result(result.get('location')), inline_message_id=result.get('inline_message_id'), query=result.get('query'), )
_CallbackQueryBase = namedtuple('CallbackQuery', ['id', 'sender', 'message', 'inline_message_id', 'data'])
[docs]class CallbackQuery(_CallbackQueryBase): """ This object represents an incoming callback query from a callback button in an inline keyboard. If the button that originated the query was attached to a message sent by the bot, the field message will be presented. If the button was attached to a message sent via the bot (in inline mode), the field inline_message_id will be presented. Attributes: id (str) :Unique identifier for this query. sender (User) :Sender. message (Message) :*Optional.* Message with the callback button that originated the query. Note that message content and message date will not be available if the message is too old inline_message_id (str) :*Optional.* Identifier of the message sent via the bot in inline mode, that originated the query data (str) :Data associated with the callback button. Be aware that a bad client can send arbitrary data in this field """ __slots__ = () @staticmethod def from_result(result): if result is None: return None return CallbackQuery( id=result.get('id'), sender=User.from_result(result.get('from')), message=Message.from_result(result.get('message')), inline_message_id=result.get('inline_message_id'), data=result.get('data'), )
[docs]class InlineKeyboardMarkup: """ This object represents an inline keyboard that appears right next to the message it belongs to. Attributes: inline_keyboard (Sequence[Sequence[InlineKeyboardButton]]) :Array of button rows, each represented by an Array of InlineKeyboardButton objects """ def __init__(self, inline_keyboard): self.inline_keyboard = inline_keyboard def serialize(self): inline_keyboard = [] for button_list in self.inline_keyboard: temp_list = [] for button in button_list: temp_list.append(button.serialize()) inline_keyboard.append(temp_list) reply_markup = dict(inline_keyboard=inline_keyboard) return json.dumps(reply_markup)
[docs]class InlineKeyboardButton: """ This object represents one button of an inline keyboard. You must use exactly one of the optional fields. Attributes: text (str) :Label text on the button url (str) :*Optional.* HTTP url to be opened when button is pressed callback_data (str) :*Optional.* Data to be sent in a callback query to the bot when button is pressed switch_inline_query (str) :*Optional.* If set, pressing the button will prompt the user to select one of their chats, open that chat and insert the bot‘s username and the specified inline query in the input field. Can be empty, in which case just the bot’s username will be inserted. Note: This offers an easy way for users to start using your bot in inline mode when they are currently in a private chat with it. Especially useful when combined with switch_pm… actions – in this case the user will be automatically returned to the chat they switched from, skipping the chat selection screen. """ def __init__(self, text, url=None, callback_data=None, switch_inline_query=None): self.text = text self.url = url self.callback_data = callback_data self.switch_inline_query = switch_inline_query if url is None and callback_data is None and switch_inline_query is None: raise ValueError("You must use exactly one of the optional fields.") def serialize(self): reply_markup = dict() reply_markup['text'] = self.text if self.url is not None: reply_markup['url'] = self.url if self.callback_data is not None: reply_markup['callback_data'] = self.callback_data if self.switch_inline_query is not None: reply_markup['switch_inline_query'] = self.switch_inline_query return reply_markup
""" InlineQuery Types """ class InlineQueryResult: pass
[docs]class InlineQueryResultArticle(InlineQueryResult): """ Represents a link to an article or web page. Attributes: id (str) :Unique identifier for this result, 1-64 bytes title (str) :Title of the result input_message_content (InputMessageContent) :Content of the message to be sent reply_markup (InlineKeyboardMarkup) :*Optional.* Inline keyboard attached to the message url (str) :*Optional.* URL of the result hide_url (bool) :*Optional.* Pass True, if you don't want the URL to be shown in the message description (str) :*Optional.* Short description of the result thumb_url (str) :*Optional.* Url of the thumbnail for the result thumb_width (int) :*Optional.* Thumbnail width thumb_height (int) :*Optional.* Thumbnail height """ def __init__(self, id, title, input_message_content, reply_markup=None, url=None, hide_url=None, description=None, thumb_url=None, thumb_width=None, thumb_height=None): self.type = "article" self.id = id self.title = title self.input_message_content = input_message_content self.reply_markup = reply_markup self.url = url self.hide_url = hide_url self.description = description self.thumb_url = thumb_url self.thumb_width = thumb_width self.thumb_height = thumb_height
[docs]class InlineQueryResultPhoto(InlineQueryResult): """ Represents a link to a photo. By default, this photo will be sent by the user with optional caption. Alternatively, you can provide message_text to send it instead of photo. Attributes: id (str) :Unique identifier for this result, 1-64 bytes photo_url (str) :A valid URL of the photo. Photo size must not exceed 5MB mime_type (str) :*Optional.* MIME type of the photo, defaults to image/jpeg photo_width (int) :*Optional.* Width of the photo photo_height (int) :*Optional.* Height of the photo thumb_url (str) :*Optional.* URL of the thumbnail for the photo title (str) :*Optional.* Title for the result description (str) :*Optional.* Short description of the result caption (str) :*Optional.* Caption of the photo to be sent, 0-200 characters reply_markup (InlineKeyboardMarkup) :*Optional.* Inline keyboard attached to the message input_message_content (InputMessageContent) :*Optional.*Content of the message to be sent instead of the photo """ def __init__(self, id, photo_url, mime_type=None, photo_width=None, photo_height=None, thumb_url=None, title=None, description=None, caption=None, input_message_content=None, reply_markup=None): self.type = "photo" self.id = id self.photo_url = photo_url self.mime_type = mime_type self.photo_width = photo_width self.photo_height = photo_height self.thumb_url = thumb_url self.title = title self.description = description self.caption = caption self.input_message_content = input_message_content self.reply_markup = reply_markup
class InlineQueryResultCachedPhoto(InlineQueryResult): """ Represents a link to a photo stored on the Telegram servers. By default, this photo will be sent by the user with an optional caption. Alternatively, you can use input_message_content to send a message with the specified content instead of the photo. Attributes: id (str) :Unique identifier for this result, 1-64 bytes photo_file_id (str) :A valid file identifier of the photo title (str) :*Optional.* Title for the result description (str) :*Optional.* Short description of the result caption (str) :*Optional.* Caption of the photo to be sent, 0-200 characters reply_markup (InlineKeyboardMarkup) :*Optional.* Inline keyboard attached to the message input_message_content (InputMessageContent) :*Optional.*Content of the message to be sent instead of the photo """ def __init__(self, id, photo_file_id, title=None, description=None, caption=None, input_message_content=None, reply_markup=None): self.type = "photo" self.id = id self.photo_file_id = photo_file_id self.title = title self.description = description self.caption = caption self.input_message_content = input_message_content self.reply_markup = reply_markup
[docs]class InlineQueryResultGif(InlineQueryResult): """ Represents a link to an animated GIF file. By default, this animated GIF file will be sent by the user with optional caption. Alternatively, you can provide message_text to send it instead of the animation. Attributes: id (str) :Unique identifier for this result, 1-64 bytes gif_url (str) :A valid URL for the GIF file. File size must not exceed 1MB gif_width (int) :*Optional.* Width of the GIF gif_height (int) :*Optional.* Height of the GIF thumb_url (str) :*Optional.* URL of a static thumbnail for the result (jpeg or gif) title (str) :*Optional.* Title for the result caption (str) :*Optional.* Caption of the GIF file to be sent, 0-200 characters reply_markup (InlineKeyboardMarkup) :*Optional.* Inline keyboard attached to the message input_message_content (InputMessageContent) :*Optional.*Content of the message to be sent instead of the GIF animation """ def __init__(self, id, gif_url, gif_width=None, gif_height=None, thumb_url=None, title=None, caption=None, input_message_content=None, reply_markup=None): self.type = "gif" self.id = id self.gif_url = gif_url self.gif_width = gif_width self.gif_height = gif_height self.thumb_url = thumb_url self.title = title self.caption = caption self.input_message_content = input_message_content self.reply_markup = reply_markup
[docs]class InlineQueryResultCachedGif(InlineQueryResult): """ Represents a link to an animated GIF file stored on the Telegram servers. By default, this animated GIF file will be sent by the user with an optional caption. Alternatively, you can use input_message_content to send a message with specified content instead of the animation. Attributes: id (str) :Unique identifier for this result, 1-64 bytes gif_file_id (str) :A valid file identifier for the GIF file title (str) :*Optional.* Title for the result caption (str) :*Optional.* Caption of the GIF file to be sent, 0-200 characters reply_markup (InlineKeyboardMarkup) :*Optional.* Inline keyboard attached to the message input_message_content (InputMessageContent) :*Optional.*Content of the message to be sent instead of the GIF animation """ def __init__(self, id, gif_file_id, title=None, caption=None, input_message_content=None, reply_markup=None): self.type = "gif" self.id = id self.gif_file_id = gif_file_id self.title = title self.caption = caption self.input_message_content = input_message_content self.reply_markup = reply_markup
[docs]class InlineQueryResultMpeg4Gif(InlineQueryResult): """ Represents a link to a video animation (H.264/MPEG-4 AVC video without sound). By default, this animated MPEG-4 file will be sent by the user with optional caption. Alternatively, you can provide message_text to send it instead of the animation. Attributes: id (str) :Unique identifier for this result, 1-64 bytes mpeg4_url (str) :A valid URL for the mp4 file. File size must not exceed 1MB mpeg4_width (int) :*Optional.* Width of the mp4 mpeg4_height (int) :*Optional.* Height of the mp4 thumb_url (str) :*Optional.* URL of a static thumbnail for the result (jpeg or mpeg4) title (str) :*Optional.* Title for the result caption (str) :*Optional.* Caption of the mp4 file to be sent, 0-200 characters reply_markup (InlineKeyboardMarkup) :*Optional.* Inline keyboard attached to the message input_message_content (InputMessageContent) :*Optional.*Content of the message to be sent instead of the video animation """ def __init__(self, id, mpeg4_url, mpeg4_width=None, mpeg4_height=None, thumb_url=None, title=None, caption=None, input_message_content=None, reply_markup=None): self.type = "mpeg4_gif" self.id = id self.mpeg4_url = mpeg4_url self.mpeg4_width = mpeg4_width self.mpeg4_height = mpeg4_height self.thumb_url = thumb_url self.title = title self.caption = caption self.input_message_content = input_message_content self.reply_markup = reply_markup
[docs]class InlineQueryResultCachedMpeg4Gif(InlineQueryResult): """ Represents a link to a video animation (H.264/MPEG-4 AVC video without sound) stored on the Telegram servers. By default, this animated MPEG-4 file will be sent by the user with an optional caption. Alternatively, you can use input_message_content to send a message with the specified content instead of the animation. Attributes: id (str) :Unique identifier for this result, 1-64 bytes mpeg4_file_id (str) :A valid file identifier for the MP4 file title (str) :*Optional.* Title for the result caption (str) :*Optional.* Caption of the mp4 file to be sent, 0-200 characters reply_markup (InlineKeyboardMarkup) :*Optional.* Inline keyboard attached to the message input_message_content (InputMessageContent) :*Optional.*Content of the message to be sent instead of the video animation """ def __init__(self, id, mpeg4_file_id, title=None, caption=None, input_message_content=None, reply_markup=None): self.type = "mpeg4_gif" self.id = id self.mpeg4_file_id = mpeg4_file_id self.title = title self.caption = caption self.input_message_content = input_message_content self.reply_markup = reply_markup
[docs]class InlineQueryResultVideo(InlineQueryResult): """ Represents link to a page containing an embedded video player or a video file. Attributes: id (str) :Unique identifier for this result, 1-64 bytes video_url (str) :A valid URL for the embedded video player or video file mime_type (str) :Mime type of the content of video url, i.e. “text/html” or “video/mp4” title (str) :Title for the result video_width (int) :*Optional.* Video width video_height (int) :*Optional.* Video height video_duration (int) :*Optional.* Video duration in seconds thumb_url (str) :*Optional.* URL of the thumbnail (jpeg only) for the video description (str) :*Optional.* Short description of the result reply_markup (InlineKeyboardMarkup) :*Optional.* Inline keyboard attached to the message input_message_content (InputMessageContent) :*Optional.* Content of the message to be sent instead of the video """ def __init__(self, id, video_url, mime_type, title=None, video_width=None, video_height=None, video_duration=None, thumb_url=None, description=None, input_message_content=None, reply_markup=None): self.type = "video" self.id = id self.video_url = video_url self.mime_type = mime_type self.video_width = video_width self.video_height = video_height self.video_duration = video_duration self.thumb_url = thumb_url self.title = title self.description = description self.input_message_content = input_message_content self.reply_markup = reply_markup
[docs]class InlineQueryResultCachedVideo(InlineQueryResult): """ Represents a link to a video file stored on the Telegram servers. By default, this video file will be sent by the user with an optional caption. Alternatively, you can use input_message_content to send a message with the specified content instead of the video. Attributes: id (str) :Unique identifier for this result, 1-64 bytes video_file_id (str) :A valid file identifier for the video file title (str) :Title for the result description (str) :*Optional.* Short description of the result reply_markup (InlineKeyboardMarkup) :*Optional.* Inline keyboard attached to the message input_message_content (InputMessageContent) :*Optional.* Content of the message to be sent instead of the video """ def __init__(self, id, video_file_id, title, description=None, input_message_content=None, reply_markup=None): self.type = "video" self.id = id self.video_file_id = video_file_id self.title = title self.description = description self.input_message_content = input_message_content self.reply_markup = reply_markup
[docs]class InlineQueryResultAudio(InlineQueryResult): """ Represents a link to an mp3 audio file. By default, this audio file will be sent by the user. Alternatively, you can use input_message_content to send a message with the specified content instead of the audio. Attributes: id (str) :Unique identifier for this result, 1-64 bytes audio_url (str) :A valid URL for the audio file title (str) :Title performer (str) :*Optional.* Performer audio_duration (int) :*Optional.* Audio duration in seconds reply_markup (InlineKeyboardMarkup) :*Optional.* Inline keyboard attached to the message input_message_content (InputMessageContent) :*Optional.* Content of the message to be sent instead of the audio """ def __init__(self, id, audio_url, title, performer=None, audio_duration=None, input_message_content=None, reply_markup=None): self.type = "audio" self.id = id self.audio_url = audio_url self.performer = performer self.audio_duration = audio_duration self.title = title self.input_message_content = input_message_content self.reply_markup = reply_markup
[docs]class InlineQueryResultCachedAudio(InlineQueryResult): """ Represents a link to an mp3 audio file stored on the Telegram servers. By default, this audio file will be sent by the user. Alternatively, you can use input_message_content to send a message with the specified content instead of the audio. Attributes: id (str) :Unique identifier for this result, 1-64 bytes audio_file_id (str) :A valid file identifier for the audio file title (str) :Title reply_markup (InlineKeyboardMarkup) :*Optional.* Inline keyboard attached to the message input_message_content (InputMessageContent) :*Optional.* Content of the message to be sent instead of the audio """ def __init__(self, id, audio_file_id, title, input_message_content=None, reply_markup=None): self.type = "audio" self.id = id self.audio_file_id = audio_file_id self.title = title self.input_message_content = input_message_content self.reply_markup = reply_markup
[docs]class InlineQueryResultVoice(InlineQueryResult): """ Represents a link to a voice recording in an .ogg container encoded with OPUS. By default, this voice recording will be sent by the user. Alternatively, you can use input_message_content to send a message with the specified content instead of the the voice message. Attributes: id (str) :Unique identifier for this result, 1-64 bytes voice_url (str) :A valid URL for the audio file title (str) :Title voice_duration (int) :*Optional.* Recording duration in seconds reply_markup (InlineKeyboardMarkup) :*Optional.* Inline keyboard attached to the message input_message_content (InputMessageContent) :*Optional.* Content of the message to be sent instead of the voice recording """ def __init__(self, id, voice_url, title, voice_duration=None, input_message_content=None, reply_markup=None): self.type = "voice" self.id = id self.voice_url = voice_url self.voice_duration = voice_duration self.title = title self.input_message_content = input_message_content self.reply_markup = reply_markup
[docs]class InlineQueryResultCachedVoice(InlineQueryResult): """ Represents a link to a voice message stored on the Telegram servers. By default, this voice message will be sent by the user. Alternatively, you can use input_message_content to send a message with the specified content instead of the voice message. Attributes: id (str) :Unique identifier for this result, 1-64 bytes voice_file_id (str) :A valid URL for the audio file title (str) :Title reply_markup (InlineKeyboardMarkup) :*Optional.* Inline keyboard attached to the message input_message_content (InputMessageContent) :*Optional.* Content of the message to be sent instead of the voice recording """ def __init__(self, id, voice_file_id, title, input_message_content=None, reply_markup=None): self.type = "voice" self.id = id self.voice_file_id = voice_file_id self.title = title self.input_message_content = input_message_content self.reply_markup = reply_markup
[docs]class InlineQueryResultDocument(InlineQueryResult): """ Represents a link to a file. By default, this file will be sent by the user with an optional caption. Alternatively, you can use input_message_content to send a message with the specified content instead of the file. Currently, only .PDF and .ZIP files can be sent using this method. Attributes: id (str) :Unique identifier for this result, 1-64 bytes document_url (str) :A valid URL for the file title (str) :Title mime_type (str) :Mime type of the content of the file, either “application/pdf” or “application/zip” caption (str) :*Optional.* Caption of the document to be sent, 0-200 characters description (str) :*Optional.* Short description of the result reply_markup (InlineKeyboardMarkup) :*Optional.* Inline keyboard attached to the message input_message_content (InputMessageContent) :*Optional.* Content of the message to be sent instead of the document thumb_url (str) :*Optional.* URL of the thumbnail (jpeg only) for the file thumb_width (int) :*Optional.* Thumbnail width thumb_height (int) :*Optional.* Thumbnail height """ def __init__(self, id, document_url, title, mime_type, caption=None, description=None, input_message_content=None, reply_markup=None, thumb_url=None, thumb_width=None, thumb_height=None): self.type = "document" self.id = id self.document_url = document_url self.mime_type = mime_type self.caption = caption self.description = description self.title = title self.input_message_content = input_message_content self.reply_markup = reply_markup self.thumb_url = thumb_url self.thumb_width = thumb_width self.thumb_height = thumb_height
[docs]class InlineQueryResultCachedDocument(InlineQueryResult): """ Represents a link to a file stored on the Telegram servers. By default, this file will be sent by the user with an optional caption. Alternatively, you can use input_message_content to send a message with the specified content instead of the file. Currently, only pdf-files and zip archives can be sent using this method. Attributes: id (str) :Unique identifier for this result, 1-64 bytes document_file_id (str) :A valid file identifier for the file title (str) :Title caption (str) :*Optional.* Caption of the document to be sent, 0-200 characters description (str) :*Optional.* Short description of the result reply_markup (InlineKeyboardMarkup) :*Optional.* Inline keyboard attached to the message input_message_content (InputMessageContent) :*Optional.* Content of the message to be sent instead of the document """ def __init__(self, id, document_file_id, title, caption=None, description=None, input_message_content=None, reply_markup=None): self.type = "document" self.id = id self.document_file_id = document_file_id self.caption = caption self.description = description self.title = title self.input_message_content = input_message_content self.reply_markup = reply_markup
[docs]class InlineQueryResultLocation(InlineQueryResult): """ Represents a location on a map. By default, the location will be sent by the user. Alternatively, you can use input_message_content to send a message with the specified content instead of the location. Attributes: id (str) :Unique identifier for this result, 1-64 bytes latitude (str) :Location latitude in degrees longitude (str) :Location longitude in degrees title (str) :Title reply_markup (InlineKeyboardMarkup) :*Optional.* Inline keyboard attached to the message input_message_content (InputMessageContent) :*Optional.* Content of the message to be sent instead of the location thumb_url (str) :*Optional.* URL of the thumbnail (jpeg only) for the file thumb_width (int) :*Optional.* Thumbnail width thumb_height (int) :*Optional.* Thumbnail height """ def __init__(self, id, latitude, longitude, title, input_message_content=None, reply_markup=None, thumb_url=None, thumb_width=None, thumb_height=None): self.type = "location" self.id = id self.latitude = latitude self.longitude = longitude self.title = title self.input_message_content = input_message_content self.reply_markup = reply_markup self.thumb_url = thumb_url self.thumb_width = thumb_width self.thumb_height = thumb_height
[docs]class InlineQueryResultVenue(InlineQueryResult): """ Represents a venue. By default, the venue will be sent by the user. Alternatively, you can use input_message_content to send a message with the specified content instead of the venue. Attributes: id (str) :Unique identifier for this result, 1-64 bytes latitude (str) :Location latitude in degrees longitude (str) :Location longitude in degrees title (str) :Title address (str) :Address of the venue foursquare_id (str) :*Optional.* Foursquare identifier of the venue if known reply_markup (InlineKeyboardMarkup) :*Optional.* Inline keyboard attached to the message input_message_content (InputMessageContent) :*Optional.* Content of the message to be sent instead of the venue thumb_url (str) :*Optional.* URL of the thumbnail (jpeg only) for the file thumb_width (int) :*Optional.* Thumbnail width thumb_height (int) :*Optional.* Thumbnail height """ def __init__(self, id, latitude, longitude, title, address, foursquare_id=None, input_message_content=None, reply_markup=None, thumb_url=None, thumb_width=None, thumb_height=None): self.type = "venue" self.id = id self.latitude = latitude self.longitude = longitude self.title = title self.address = address self.foursquare_id = foursquare_id self.input_message_content = input_message_content self.reply_markup = reply_markup self.thumb_url = thumb_url self.thumb_width = thumb_width self.thumb_height = thumb_height
class InlineQueryResultContact(InlineQueryResult): """ Represents a contact with a phone number. By default, this contact will be sent by the user. Alternatively, you can use input_message_content to send a message with the specified content instead of the contact. Attributes: id (str) :Unique identifier for this result, 1-64 bytes phone_number (str) :Contact's phone number first_name (str) :Contact's first name last_name (str) :*Optional.* Contact's last name reply_markup (InlineKeyboardMarkup) :*Optional.* Inline keyboard attached to the message input_message_content (InputMessageContent) :*Optional.* Content of the message to be sent instead of the contact thumb_url (str) :*Optional.* URL of the thumbnail (jpeg only) for the file thumb_width (int) :*Optional.* Thumbnail width thumb_height (int) :*Optional.* Thumbnail height """ def __init__(self, id, phone_number, first_name, last_name=None, input_message_content=None, reply_markup=None, thumb_url=None, thumb_width=None, thumb_height=None): self.type = "contact" self.id = id self.phone_number = phone_number self.first_name = first_name self.last_name = last_name self.input_message_content = input_message_content self.reply_markup = reply_markup self.thumb_url = thumb_url self.thumb_width = thumb_width self.thumb_height = thumb_height
[docs]class InlineQueryResultContact(InlineQueryResult): """ Represents a link to a sticker stored on the Telegram servers. By default, this sticker will be sent by the user. Alternatively, you can use input_message_content to send a message with the specified content instead of the sticker. Attributes: id (str) :Unique identifier for this result, 1-64 bytes sticker_file_id (str) :A valid file identifier of the sticker reply_markup (InlineKeyboardMarkup) :*Optional.* Inline keyboard attached to the message input_message_content (InputMessageContent) :*Optional.* Content of the message to be sent instead of the document """ def __init__(self, id, sticker_file_id, input_message_content=None, reply_markup=None): self.type = "sticker" self.id = id self.sticker_file_id = sticker_file_id self.input_message_content = input_message_content self.reply_markup = reply_markup
class InputMessageContent: """ This object represents the content of a message to be sent as a result of an inline query. """ pass
[docs]class InputTextMessageContent(InputMessageContent): """ Represents the content of a text message to be sent as the result of an inline query. Attributes: message_text (str) :Text of the message to be sent, 1-4096 characters parse_mode (str) :*Optional.* Send Markdown or HTML, if you want Telegram apps to show bold, italic, fixed-width text or inline URLs in your bot's message. disable_web_page_preview (bool) :*Optional.* Disables link previews for links in the sent message """ def __init__(self, message_text, parse_mode=None, disable_web_page_preview=None): self.message_text = message_text self.parse_mode = parse_mode self.disable_web_page_preview = disable_web_page_preview
[docs]class InputLocationMessageContent(InputMessageContent): """ Represents the content of a location message to be sent as the result of an inline query. Attributes: latitude (float) :Latitude of the location in degrees longitude (float) :Longitude of the location in degrees """ def __init__(self, latitude, longitude): self.latitude = latitude self.longitude = longitude
[docs]class InputVenueMessageContent(InputMessageContent): """ Represents the content of a location message to be sent as the result of an inline query. Attributes: latitude (float) :Latitude of the venue in degrees longitude (float) :Longitude of the venue in degrees title (str) :Name of the venue address (str) :Address of the venue foursquare_id (str) :*Optional.* Foursquare identifier of the venue, if known """ def __init__(self, latitude, longitude, title, address, foursquare_id=None): self.latitude = latitude self.longitude = longitude self.title = title self.address = address self.foursquare_id = foursquare_id
[docs]class InputContactMessageContent(InputMessageContent): """ Represents the content of a contact message to be sent as the result of an inline query. Attributes: phone_number (str) :Contact's phone number first_name (str) :Contact's first name last_name (str) :*Optional.* Contact's last name """ def __init__(self, phone_number, first_name, last_name=None): self.phone_number = phone_number self.first_name = first_name self.last_name = last_name
""" Types added for utility purposes """ _ErrorBase = namedtuple('Error', ['error_code', 'description'])
[docs]class Error(_ErrorBase): """The error code and message returned when a request was successfuly but the method call was invalid Attributes: error_code (int) :An Integer ‘error_code’ field is also returned, but its contents are subject to change in the future. description (str) :The description of the error as reported by Telegram """ __slots__ = () @staticmethod def from_result(result): return Error(error_code=result.get('error_code'), description=result.get('description'))
""" RPC Objects """
[docs]class RequestMethod(str, Enum): """Used to specify the HTTP request method. Attributes: GET : 'GET' POST: 'POST' :example: :: bot.get_me(request_method=RequestMethod.GET) """ GET = 'GET' POST = 'POST'
[docs]class TelegramBotRPCRequest: """Class that handles creating the actual RPC request, and sending callbacks based on response :param api_method: The API method to call. See https://core.telegram.org/bots/api#available-methods :param token: The API token generated following the instructions at https://core.telegram.org/bots#botfather :param params: A dictionary mapping the api method parameters to their arguments :param on_result: a callback function that gets called before when te request finishes. The return value of this function gets passed to on_success. Useful if you wish to override the generated result type :param on_success: a callback function that gets called when the api call was successful, gets passed the return value from on_result :param on_error: called when an error occurs :param files: a list of :class:`InputFile`s to be sent to the server` :param request_method: ``RequestMethod.POST`` or ``RequestMethod.GET`` :type api_method: str :type token: str :type params: dict :type on_result: callable :type on_success: callable :type on_error: callable :type files: `list` of :class:`InputFile` :type request_method: RequestMethod .. note:: Typically you do not have to interact with this class directly. However, you may override any of these arguments by specifiying it in the the `\*\*kwargs` of any api method. """ api_url_base = 'https://api.telegram.org/bot' def __init__(self, api_method, token, params=None, on_result=None, on_success=None, callback=None, on_error=None, files=None, request_method=RequestMethod.POST): reply_markup = params.get('reply_markup') if params else None if reply_markup is not None: params['reply_markup'] = reply_markup.serialize() if callback is not None: print('WARNING: callback is deprecated in favor of on_success') if on_success: print('WARNING: callback parameter will be ignored, on_success will be used instead') else: on_success = callback self.api_method = api_method self.token = token self.params = params self.on_result = on_result self.on_success = on_success self.on_error = on_error self.files = files self.request_method = RequestMethod(request_method) self.result = None self.error = None self.thread = Thread(target=self._async_call) def _get_url(self): return '{base_url}{token}/{method}'.format(base_url=TelegramBotRPCRequest.api_url_base, token=self.token, method=self.api_method) def _get_request(self): data, files = None, None if self.params is not None: data = self.params if self.files is not None: files = self.files return Request(self.request_method, self._get_url(), data=data, files=files).prepare() def _async_call(self): self.error = None self.response = None s = Session() request = self._get_request() resp = s.send(request) if resp.status_code == 200: try: api_response = resp.json() except ValueError: api_response = {'ok': False, 'description': 'Invalid Value in JSON response', 'error_code': None} else: api_response = {'ok': False, 'description': 'API doesn\'t answer', 'error_code': resp.status_code} if api_response.get('ok'): result = api_response['result'] if self.on_result is None: self.result = result else: self.result = self.on_result(result) if self.on_success is not None: self.on_success(self.result) else: self.error = Error.from_result(api_response) if self.on_error: self.on_error(self.error) return None def run(self): self.thread.start() return self def join(self, timeout=None): self.thread.join(timeout) return self def wait(self): """ Wait for the request to finish and return the result or error when finished :returns: result or error :type: result tyoe or Error """ self.thread.join() if self.error is not None: return self.error return self.result
class TelegramDownloadRequest(TelegramBotRPCRequest): """Class that handles downloading files from telegram. :param file_path: The remote file path received via :func:`get_file` :param out_file: File to save to. Can be a file path (str) or a file-like object :param token: The API token generated following the instructions at https://core.telegram.org/bots#botfather :param on_success: a callback function that gets called when the api call was successful, gets passed the return value from on_result :param on_error: called when an error occurs :type file_path: str :type out_file: str :type token: str :type on_success: callable :type on_error: callable .. note:: Typically you do not have to interact with this class directly. """ download_url_base = 'https://api.telegram.org/file/bot' def __init__(self, file_path, out_file, token, on_success=None, on_error=None, request_method=None): # request_method eats the kwarg from TelegramBot.request_args self.file_path = file_path self.out_file = out_file self.token = token self.on_success = on_success self.on_error = on_error self.request_method = RequestMethod.GET # Others are not allowed self.params = None self.files = None self.result = None self.error = None self.thread = Thread(target=self._async_call) def _get_url(self): return '{base_url}{token}/{path}'.format(base_url=self.download_url_base, token=self.token, path=self.file_path) def _do_download(self, resp, f): for chunk in resp.iter_content(chunk_size=1024): if chunk: # filter out keep-alive chunks f.write(chunk) def _async_call(self): s = Session() request = self._get_request() resp = s.send(request) if not resp.status_code == 200: self.error = RuntimeError("Bad HTTP Status Code", resp, resp.status_code) else: try: if isinstance(self.out_file, str): with open(self.out_file, 'w+b') as f: self._do_download(resp, f) elif hasattr(self.out_file, 'write'): self._do_download(resp, self.out_file) except OSError as e: self.error = e if self.error: if self.on_error: self.on_error(self.error) else: self.result = self.out_file if self.on_success: self.on_success(self.out_file) def _clean_params(**params): return {name: val for name, val in params.items() if val is not None} """ Telegram Bot API Methods as defined at https://core.telegram.org/bots/api#available-methods """
[docs]def get_me(**kwargs): """ A simple method for testing your bot's auth token. Requires no parameters. Returns basic information about the bot in form of a User object. :param \*\*kwargs: Args that get passed down to :class:`TelegramBotRPCRequest` :returns: Returns basic information about the bot in form of a User object. :rtype: User """ return TelegramBotRPCRequest('getMe', on_result=User.from_result, **kwargs)
[docs]def send_message(chat_id, text, parse_mode=None, disable_web_page_preview=None, reply_to_message_id=None, reply_markup=None, disable_notification=False, **kwargs): """ Use this method to send text messages. :param chat_id: Unique identifier for the message recipient — User or GroupChat id :param text: Text of the message to be sent :param parse_mode: Send ``"Markdown"``, if you want Telegram apps to show bold, italic and inline URLs in your bot's message. :param disable_web_page_preview: Disables link previews for links in this message :param reply_to_message_id: If the message is a reply, ID of the original message :param reply_markup: Additional interface options. A JSON-serialized object for a custom reply keyboard, instructions to hide keyboard or to force a reply from the user. :param disable_notification: Sends the message silently. iOS users will not receive a notification, Android users will receive a notification with no sound. Other apps coming soon. :param \*\*kwargs: Args that get passed down to :class:`TelegramBotRPCRequest` :type chat_id: int :type text: str :type disable_web_page_preview: bool :type reply_to_message_id: int :type reply_markup: :class:`ReplyKeyboardMarkup` or :class:`ReplyKeyboardHide` or :class:`ForceReply` :returns: On success, the sent Message is returned. :rtype: Message """ # required args params = dict(chat_id=chat_id, text=text) # optional args params.update( _clean_params( parse_mode=parse_mode, disable_web_page_preview=disable_web_page_preview, reply_to_message_id=reply_to_message_id, reply_markup=reply_markup, disable_notification=disable_notification, ) ) return TelegramBotRPCRequest('sendMessage', params=params, on_result=Message.from_result, **kwargs)
[docs]def forward_message(chat_id, from_chat_id, message_id, disable_notification=False, **kwargs): """ Use this method to forward messages of any kind. :param chat_id: Unique identifier for the message recipient — User or GroupChat id :param from_chat_id: Unique identifier for the chat where the original message was sent — User or GroupChat id :param message_id: Unique message identifier :param disable_notification: Sends the message silently. iOS users will not receive a notification, Android users will receive a notification with no sound. Other apps coming soon. :param \*\*kwargs: Args that get passed down to :class:`TelegramBotRPCRequest` :type chat_id: int :type from_chat_id: int :type message_id: int :returns: On success, the sent Message is returned. :rtype: Message """ # required args params = dict( chat_id=chat_id, from_chat_id=from_chat_id, message_id=message_id, disable_notification=disable_notification, ) return TelegramBotRPCRequest('forwardMessage', params=params, on_result=Message.from_result, **kwargs)
[docs]def send_photo(chat_id, photo, caption=None, reply_to_message_id=None, reply_markup=None, disable_notification=False, **kwargs): """ Use this method to send photos. :param chat_id: Unique identifier for the message recipient — User or GroupChat id :param photo: Photo to send. You can either pass a file_id as String to resend a photo that is already on the Telegram servers, or upload a new photo using multipart/form-data. :param caption: Photo caption (may also be used when resending photos by file_id). :param reply_to_message_id: If the message is a reply, ID of the original message :param reply_markup: Additional interface options. A JSON-serialized object for a custom reply keyboard, instructions to hide keyboard or to force a reply from the user. :param disable_notification: Sends the message silently. iOS users will not receive a notification, Android users will receive a notification with no sound. Other apps coming soon. :param \*\*kwargs: Args that get passed down to :class:`TelegramBotRPCRequest` :type chat_id: int :type photo: InputFile or str :type caption: str :type reply_to_message_id: int :type reply_markup: :class:`ReplyKeyboardMarkup` or :class:`ReplyKeyboardHide` or :class:`ForceReply` :returns: On success, the sent Message is returned. :rtype: TelegramBotRPCRequest """ files = None if isinstance(photo, InputFile): files = [photo] photo = None elif not isinstance(photo, str): raise Exception('photo must be instance of InputFile or str') # required args params = dict( chat_id=chat_id, photo=photo ) # optional args params.update( _clean_params( caption=caption, reply_to_message_id=reply_to_message_id, reply_markup=reply_markup, disable_notification=disable_notification, ) ) return TelegramBotRPCRequest('sendPhoto', params=params, files=files, on_result=Message.from_result, **kwargs)
[docs]def send_audio(chat_id, audio, duration=None, performer=None, title=None, reply_to_message_id=None, reply_markup=None, disable_notification=False, **kwargs): """ Use this method to send audio files, if you want Telegram clients to display them in the music player. Your audio must be in the .mp3 format. On success, the sent Message is returned. Bots can currently send audio files of up to 50 MB in size, this limit may be changed in the future. For backward compatibility, when the fields title and performer are both empty and the mime-type of the file to be sent is not audio/mpeg, the file will be sent as a playable voice message. For this to work, the audio must be in an .ogg file encoded with OPUS. This behavior will be phased out in the future. For sending voice messages, use the sendVoice method instead. :param chat_id: Unique identifier for the message recipient — User or GroupChat id :param audio: Audio file to send. You can either pass a file_id as String to resend an audio that is already on the Telegram servers, or upload a new audio file using multipart/form-data. :param duration: Duration of the audio in seconds :param performer: Performer :param title: Track name :param reply_to_message_id: If the message is a reply, ID of the original message :param reply_markup: Additional interface options. A JSON-serialized object for a custom reply keyboard, :param disable_notification: Sends the message silently. iOS users will not receive a notification, Android users will receive a notification with no sound. Other apps coming soon. :param \*\*kwargs: Args that get passed down to :class:`TelegramBotRPCRequest` :type chat_id: int :type audio: InputFile or str :param duration: int :param performer: str :param title: str :type reply_to_message_id: int :type reply_markup: ReplyKeyboardMarkup or ReplyKeyboardHide or ForceReply :returns: On success, the sent Message is returned. :rtype: TelegramBotRPCRequest """ files = None if isinstance(audio, InputFile): files = [audio] audio = None elif not isinstance(audio, str): raise Exception('audio must be instance of InputFile or str') # required args params = dict( chat_id=chat_id, audio=audio ) # optional args params.update( _clean_params( duration=duration, performer=performer, title=title, reply_to_message_id=reply_to_message_id, reply_markup=reply_markup, disable_notification=disable_notification, ) ) return TelegramBotRPCRequest('sendAudio', params=params, files=files, on_result=Message.from_result, **kwargs)
[docs]def send_document(chat_id, document, reply_to_message_id=None, reply_markup=None, disable_notification=False, **kwargs): """ Use this method to send general files. :param chat_id: Unique identifier for the message recipient — User or GroupChat id :param document: File to send. You can either pass a file_id as String to resend a file that is already on the Telegram servers, or upload a new file using multipart/form-data. :param reply_to_message_id: If the message is a reply, ID of the original message :param reply_markup: Additional interface options. A JSON-serialized object for a custom reply keyboard, instructions to hide keyboard or to force a reply from the user. :param disable_notification: Sends the message silently. iOS users will not receive a notification, Android users will receive a notification with no sound. Other apps coming soon. :param \*\*kwargs: Args that get passed down to :class:`TelegramBotRPCRequest` :type chat_id: int :type document: InputFile or str :type reply_to_message_id: int :type reply_markup: ReplyKeyboardMarkup or ReplyKeyboardHide or ForceReply :returns: On success, the sent Message is returned. :rtype: TelegramBotRPCRequest """ files = None if isinstance(document, InputFile): files = [document] document = None elif not isinstance(document, str): raise Exception('document must be instance of InputFile or str') # required args params = dict( chat_id=chat_id, document=document ) # optional args params.update( _clean_params( reply_to_message_id=reply_to_message_id, reply_markup=reply_markup, disable_notification=disable_notification, ) ) return TelegramBotRPCRequest('sendDocument', params=params, files=files, on_result=Message.from_result, **kwargs)
[docs]def send_sticker(chat_id, sticker, reply_to_message_id=None, reply_markup=None, disable_notification=False, **kwargs): """ :param chat_id: Unique identifier for the message recipient — User or GroupChat id :param sticker: Sticker to send. You can either pass a file_id as String to resend a sticker that is already on the Telegram servers, or upload a new sticker using multipart/form-data. :param reply_to_message_id: If the message is a reply, ID of the original message :param reply_markup: Additional interface options. A JSON-serialized object for a custom reply keyboard, instructions to hide keyboard or to force a reply from the user. :param disable_notification: Sends the message silently. iOS users will not receive a notification, Android users will receive a notification with no sound. Other apps coming soon. :param \*\*kwargs: Args that get passed down to :class:`TelegramBotRPCRequest` :type chat_id: int :type sticker: InputFile or str :type reply_to_message_id: int :type reply_markup: ReplyKeyboardMarkup or ReplyKeyboardHide or ForceReply :returns: On success, the sent Message is returned. :rtype: TelegramBotRPCRequest """ files = None if isinstance(sticker, InputFile): files = [sticker] sticker = None elif not isinstance(sticker, str): raise Exception('sticker must be instance of InputFile or str') # required args params = dict( chat_id=chat_id, sticker=sticker ) # optional args params.update( _clean_params( reply_to_message_id=reply_to_message_id, reply_markup=reply_markup, disable_notification=disable_notification, ) ) return TelegramBotRPCRequest('sendSticker', params=params, files=files, on_result=Message.from_result, **kwargs)
[docs]def send_video(chat_id, video, duration=None, caption=None, reply_to_message_id=None, reply_markup=None, disable_notification=False, **kwargs): """ Use this method to send video files, Telegram clients support mp4 videos (other formats may be sent as Document). :param chat_id: Unique identifier for the message recipient — User or GroupChat id :param video: Video to send. You can either pass a file_id as String to resend a video that is already on the Telegram servers, or upload a new video using multipart/form-data. :param duration: Duration of sent video in seconds :param caption: Video caption (may also be used when resending videos by file_id) :param reply_to_message_id: If the message is a reply, ID of the original message :param reply_markup: Additional interface options. A JSON-serialized object for a custom reply keyboard, instructions to hide keyboard or to force a reply from the user. :param disable_notification: Sends the message silently. iOS users will not receive a notification, Android users will receive a notification with no sound. Other apps coming soon. :param \*\*kwargs: Args that get passed down to :class:`TelegramBotRPCRequest` :type chat_id: int :type video: InputFile or str :type duration: int :type caption: str :type reply_to_message_id: int :type reply_markup: ReplyKeyboardMarkup or ReplyKeyboardHide or ForceReply :returns: On success, the sent Message is returned. :rtype: TelegramBotRPCRequest """ files = None if isinstance(video, InputFile): files = [video] video = None elif not isinstance(video, str): raise Exception('video must be instance of InputFile or str') # required args params = dict( chat_id=chat_id, video=video ) # optional args params.update( _clean_params( duration=duration, caption=caption, reply_to_message_id=reply_to_message_id, reply_markup=reply_markup, disable_notification=disable_notification, ) ) return TelegramBotRPCRequest('sendVideo', params=params, files=files, on_result=Message.from_result, **kwargs)
[docs]def send_voice(chat_id, voice, duration=None, reply_to_message_id=None, reply_markup=None, disable_notification=False, **kwargs): """ Use this method to send audio files, if you want Telegram clients to display the file as a playable voice message. For this to work, your audio must be in an .ogg file encoded with OPUS (other formats may be sent as Audio or Document). On success, the sent Message is returned. Bots can currently send voice messages of up to 50 MB in size, this limit may be changed in the future. :param chat_id: Unique identifier for the message recipient — User or GroupChat id :param voice: Audio file to send. You can either pass a file_id as String to resend an audio that is already on the Telegram servers, or upload a new audio file using multipart/form-data. :param duration: Duration of sent audio in seconds :param reply_to_message_id: If the message is a reply, ID of the original message :param reply_markup: Additional interface options. A JSON-serialized object for a custom reply keyboard, :param disable_notification: Sends the message silently. iOS users will not receive a notification, Android users will receive a notification with no sound. Other apps coming soon. :param \*\*kwargs: Args that get passed down to :class:`TelegramBotRPCRequest` :type chat_id: int :type voice: InputFile or str :type duration: int :type reply_to_message_id: int :type reply_markup: ReplyKeyboardMarkup or ReplyKeyboardHide or ForceReply :returns: On success, the sent Message is returned. :rtype: TelegramBotRPCRequest """ files = None if isinstance(voice, InputFile): files = [voice] voice = None elif not isinstance(voice, str): raise Exception('voice must be instance of InputFile or str') # required args params = dict( chat_id=chat_id, voice=voice ) # optional args params.update( _clean_params( reply_to_message_id=reply_to_message_id, reply_markup=reply_markup, disable_notification=disable_notification, ) ) return TelegramBotRPCRequest('sendVoice', params=params, files=files, on_result=Message.from_result, **kwargs)
[docs]def send_location(chat_id, latitude, longitude, reply_to_message_id=None, reply_markup=None, disable_notification=False, **kwargs): """ Use this method to send point on the map. :param chat_id: Unique identifier for the message recipient — User or GroupChat id :param latitude: Latitude of location. :param longitude: Longitude of location. :param reply_to_message_id: If the message is a reply, ID of the original message :param reply_markup: Additional interface options. A JSON-serialized object for a custom reply keyboard, instructions to hide keyboard or to force a reply from the user. :param disable_notification: Sends the message silently. iOS users will not receive a notification, Android users will receive a notification with no sound. Other apps coming soon. :param \*\*kwargs: Args that get passed down to :class:`TelegramBotRPCRequest` :type chat_id: int :type latitude: float :type longitude: float :type reply_to_message_id: int :type reply_markup: ReplyKeyboardMarkup or ReplyKeyboardHide or ForceReply :returns: On success, the sent Message is returned. :rtype: TelegramBotRPCRequest """ # required args params = dict( chat_id=chat_id, latitude=latitude, longitude=longitude ) # optional args params.update( _clean_params( reply_to_message_id=reply_to_message_id, reply_markup=reply_markup, disable_notification=disable_notification, ) ) return TelegramBotRPCRequest('sendLocation', params=params, on_result=Message.from_result, **kwargs)
[docs]def send_venue(chat_id, latitude, longitude, title, address, foursquare_id=None, reply_to_message_id=None, reply_markup=None, disable_notification=False, **kwargs): """ Use this method to send information about a venue. :param chat_id: Unique identifier for the message recipient — User or GroupChat id :param latitude: Latitude of location. :param longitude: Longitude of location. :param title: Name of the venue. :param address: Address of the venue. :param foursquare_id: Foursquare identifier of the venue. :param reply_to_message_id: If the message is a reply, ID of the original message :param reply_markup: Additional interface options. A JSON-serialized object for a custom reply keyboard, instructions to hide keyboard or to force a reply from the user. :param disable_notification: Sends the message silently. iOS users will not receive a notification, Android users will receive a notification with no sound. Other apps coming soon. :param \*\*kwargs: Args that get passed down to :class:`TelegramBotRPCRequest` :type chat_id: int :type latitude: float :type longitude: float :type title: str :type address: str :type foursquare_id: str :type reply_to_message_id: int :type reply_markup: ReplyKeyboardMarkup or ReplyKeyboardHide or ForceReply :type disable_notification: bool :returns: On success, the sent Message is returned. :rtype: TelegramBotRPCRequest """ # required args params = dict( chat_id=chat_id, latitude=latitude, longitude=longitude, title=title, address=address, ) # optional args params.update( _clean_params( foursquare_id=foursquare_id, reply_to_message_id=reply_to_message_id, reply_markup=reply_markup, disable_notification=disable_notification, ) ) return TelegramBotRPCRequest('sendVenue', params=params, on_result=Message.from_result, **kwargs)
[docs]def send_contact(chat_id, phone_number, first_name, last_name=None, reply_to_message_id=None, reply_markup=None, disable_notification=False, **kwargs): """ Use this method to send phone contacts. :param chat_id: Unique identifier for the target chat or username of the target channel (in the format @channelusername) :param phone_number: Contact's phone number. :param first_name: Contact's first name. :param last_name: Contact's last name. :param reply_to_message_id: If the message is a reply, ID of the original message :param reply_markup: Additional interface options. A JSON-serialized object for a custom reply keyboard, instructions to hide keyboard or to force a reply from the user. :param disable_notification: Sends the message silently. iOS users will not receive a notification, Android users will receive a notification with no sound. Other apps coming soon. :param \*\*kwargs: Args that get passed down to :class:`TelegramBotRPCRequest` :type chat_id: int :type phone_number: str :type first_name: str :type last_name: str :type reply_to_message_id: int :type reply_markup: ReplyKeyboardMarkup or ReplyKeyboardHide or ForceReply :type disable_notification: bool :returns: On success, the sent Message is returned. :rtype: TelegramBotRPCRequest """ # required args params = dict( chat_id=chat_id, phone_number=phone_number, first_name=first_name, ) # optional args params.update( _clean_params( last_name=last_name, reply_to_message_id=reply_to_message_id, reply_markup=reply_markup, disable_notification=disable_notification, ) ) return TelegramBotRPCRequest('sendContact', params=params, on_result=Message.from_result, **kwargs)
class ChatAction(str, Enum): TEXT = 'typing' PHOTO = 'upload_photo' RECORD_VIDEO = 'record_video' VIDEO = 'upload_video' RECORD_AUDIO = 'record_audio' AUDIO = 'upload_audio' DOCUMENT = 'upload_document' LOCATION = 'find_location'
[docs]def send_chat_action(chat_id, action, **kwargs): """ Use this method when you need to tell the user that something is happening on the bot's side. The status is set for 5 seconds or less (when a message arrives from your bot, Telegram clients clear its typing status). Example: The ImageBot needs some time to process a request and upload the image. Instead of sending a text message along the lines of “Retrieving image, please wait…”, the bot may use sendChatAction with action = upload_photo. The user will see a “sending photo” status for the bot. We only recommend using this method when a response from the bot will take a noticeable amount of time to arrive. :param chat_id: Unique identifier for the message recipient — User or GroupChat id :param action: Type of action to broadcast. Choose one, depending on what the user is about to receive: typing for text messages, upload_photo for photos, record_video or upload_video for videos, record_audio or upload_audio for audio files, upload_document for general files, find_location for location data. :param \*\*kwargs: Args that get passed down to :class:`TelegramBotRPCRequest` :type chat_id: int :type action: ChatAction :returns: Returns True on success. :rtype: bool """ # required args params = dict( chat_id=chat_id, action=action ) return TelegramBotRPCRequest('sendChatAction', params=params, on_result=lambda result: result, **kwargs)
[docs]def kick_chat_member(chat_id, user_id, **kwargs): """ Use this method to kick a user from a group or a supergroup. In the case of supergroups, the user will not be able to return to the group on their own using invite links, etc., unless unbanned first. The bot must be an administrator in the group for this to work. Returns True on success. Note: This will method only work if the ‘All Members Are Admins’ setting is off in the target group. Otherwise members may only be removed by the group's creator or by the member that added them. :param chat_id: Unique identifier for the target group or username of the target supergroup (in the format @supergroupusername) :param user_id: Unique identifier of the target user :param \*\*kwargs: Args that get passed down to :class:`TelegramBotRPCRequest` :type chat_id: int or str :type user_id: int :returns: Returns True on success. :rtype: bool """ # required args params = dict( chat_id=chat_id, user_id=user_id, ) return TelegramBotRPCRequest('kickChatMember', params=params, on_result=lambda result: result, **kwargs)
[docs]def unban_chat_member(chat_id, user_id, **kwargs): """ Use this method to unban a previously kicked user in a supergroup. The user will not return to the group automatically, but will be able to join via link, etc. The bot must be an administrator in the group for this to work :param chat_id: Unique identifier for the target group or username of the target supergroup (in the format @supergroupusername) :param user_id: Unique identifier of the target user :param \*\*kwargs: Args that get passed down to :class:`TelegramBotRPCRequest` :type chat_id: int or str :type user_id: int :returns: Returns True on success. :rtype: bool """ # required args params = dict( chat_id=chat_id, user_id=user_id, ) return TelegramBotRPCRequest('unbanChatMember', params=params, on_result=lambda result: result, **kwargs)
[docs]def get_chat(chat_id, **kwargs): """ Use this method to get up to date information about the chat (current name of the user for one-on-one conversations, current username of a user, group or channel, etc.). :param chat_id: Unique identifier for the target chat or username of the target supergroup or channel (in the format @channelusername) :param \*\*kwargs: Args that get passed down to :class:`TelegramBotRPCRequest` :type chat_id: int or str :returns: Returns a Chat object on success. :rtype: Chat """ # required args params = dict( chat_id=chat_id, ) return TelegramBotRPCRequest('getChat', params=params, on_result=lambda result: Chat.from_result(result), **kwargs)
[docs]def leave_chat(chat_id, **kwargs): """ Use this method for your bot to leave a group, supergroup or channel. :param chat_id: Unique identifier for the target chat or username of the target supergroup or channel (in the format @channelusername) :param \*\*kwargs: Args that get passed down to :class:`TelegramBotRPCRequest` :type chat_id: int or str :returns: Returns true on success. :rtype: bool """ # required args params = dict( chat_id=chat_id, ) return TelegramBotRPCRequest('leaveChat', params=params, on_result=lambda result: result, **kwargs)
[docs]def get_chat_administrators(chat_id, **kwargs): """ Use this method to get a list of administrators in a chat. On success, returns an Array of ChatMember objects that contains information about all chat administrators except other bots. If the chat is a group or a supergroup and no administrators were appointed, only the creator will be returned. :param chat_id: Unique identifier for the target chat or username of the target supergroup or channel (in the format @channelusername) :param \*\*kwargs: Args that get passed down to :class:`TelegramBotRPCRequest` :type chat_id: int or str :returns: List of Chat Members on success. :rtype: list[ChatMember] """ # required args params = dict( chat_id=chat_id, ) return TelegramBotRPCRequest('getChatAdministrators', params=params, on_result=lambda result: ChatMember.from_result_list(result), **kwargs)
[docs]def get_chat_member(chat_id, **kwargs): """ Use this method to get information about a member of a chat :param chat_id: Unique identifier for the target chat or username of the target supergroup or channel (in the format @channelusername) :param user_id: Unique identifier of the target user :param \*\*kwargs: Args that get passed down to :class:`TelegramBotRPCRequest` :type chat_id: int or str :type user_id: int :returns: Returns ChatMember on success. :rtype: ChatMember """ # required args params = dict( chat_id=chat_id, ) return TelegramBotRPCRequest('getChatMember', params=params, on_result=lambda result: ChatMember.from_result(result), **kwargs)
[docs]def get_chat_members_count(chat_id, **kwargs): """ Use this method to get the number of members in a chat. :param chat_id: Unique identifier for the target chat or username of the target supergroup or channel (in the format @channelusername) :param \*\*kwargs: Args that get passed down to :class:`TelegramBotRPCRequest` :type chat_id: int or str :returns: Returns count on success. :rtype: int """ # required args params = dict( chat_id=chat_id, ) return TelegramBotRPCRequest('getChatMembersCount', params=params, on_result=lambda result: result, **kwargs)
[docs]def answer_callback_query(callback_query_id, text=None, show_alert=None, **kwargs): """ Use this method to send answers to callback queries sent from inline keyboards. The answer will be displayed to the user as a notification at the top of the chat screen or as an alert. :param callback_query_id: Unique identifier for the query to be answered :param text: Text of the notification. If not specified, nothing will be shown to the user :param show_alert: If true, an alert will be shown by the client instead of a notificaiton at the top of the chat screen. Defaults to false. :param \*\*kwargs: Args that get passed down to :class:`TelegramBotRPCRequest` :type callback_query_id: str :type text: str :type show_alert: bool :returns: Returns True on success. :rtype: bool """ # required args params = dict( callback_query_id=callback_query_id, ) # optional args params.update( _clean_params( text=text, show_alert=show_alert, ) ) return TelegramBotRPCRequest('answerCallbackQuery', params=params, on_result=lambda result: result, **kwargs)
[docs]def edit_message_text(text, chat_id=None, message_id=None, inline_message_id=None, parse_mode=None, disable_web_page_preview=None, reply_markup=None, **kwargs): """ Use this method to edit text messages sent by the bot or via the bot (for inline bots). :param text: New text of the message :param chat_id: Required if inline_message_id is not specified. Unique identifier for the target chat or username of the target channel (in the format @channelusername) :param message_id: Required if inline_message_id is not specified. Unique identifier of the sent message :param inline_message_id: Required if chat_id and message_id are not specified. Identifier of the inline message :param parse_mode: Send Markdown or HTML, if you want Telegram apps to show bold, italic, fixed-width text or inline URLs in your bot's message. :param disable_web_page_preview: Send Markdown or HTML, if you want Telegram apps to show bold, italic, fixed-width text or inline URLs in your bot's message. :param reply_markup: A JSON-serialized object for an inline keyboard. :param \*\*kwargs: Args that get passed down to :class:`TelegramBotRPCRequest` :type text: str :type chat_id: str or int :type message_id: int :type inline_message_id: str :type parse_mode: str :type disable_web_page_preview: bool :type reply_markup: InlineKeyboardMarkup :returns: On success, the edited Message is returned. :rtype: Message """ if not chat_id and not message_id and not inline_message_id: raise ValueError("Must specify chat_id and message_id or inline_message_id") if (chat_id and not message_id) or (not chat_id and message_id): raise ValueError("Must specify chat_id and message_id together") # required args params = dict( text=text, ) # optional args params.update( _clean_params( chat_id=chat_id, message_id=message_id, inline_message_id=inline_message_id, parse_mode=parse_mode, disable_web_page_preview=disable_web_page_preview, reply_markup=reply_markup ) ) return TelegramBotRPCRequest('editMessageText', params=params, on_result=Message.from_result, **kwargs)
[docs]def edit_message_caption(caption, chat_id=None, message_id=None, inline_message_id=None, reply_markup=None, **kwargs): """ Use this method to edit text messages sent by the bot or via the bot (for inline bots). :param caption : New caption of the message :param chat_id: Required if inline_message_id is not specified. Unique identifier for the target chat or username of the target channel (in the format @channelusername) :param message_id: Required if inline_message_id is not specified. Unique identifier of the sent message :param inline_message_id: Required if chat_id and message_id are not specified. Identifier of the inline message :param reply_markup: A JSON-serialized object for an inline keyboard. :param *\*kwargs: Args that get passed down to :class:`TelegramBotRPCRequest` :type caption: str :type chat_id: str or int :type message_id: int :type inline_message_id: str :type reply_markup: InlineKeyboardMarkup :returns: On success, the edited Message is returned. :rtype: Message """ if not chat_id and not message_id and not inline_message_id: raise ValueError("Must specify chat_id and message_id or inline_message_id") if (chat_id and not message_id) or (not chat_id and message_id): raise ValueError("Must specify chat_id and message_id together") # required args params = dict( caption=caption, ) # optional args params.update( _clean_params( chat_id=chat_id, message_id=message_id, inline_message_id=inline_message_id, reply_markup=reply_markup ) ) return TelegramBotRPCRequest('editMessageCaption', params=params, on_result=Message.from_result, **kwargs)
[docs]def edit_message_reply_markup(chat_id=None, message_id=None, inline_message_id=None, reply_markup=None, **kwargs): """ Use this method to edit text messages sent by the bot or via the bot (for inline bots). :param chat_id: Required if inline_message_id is not specified. Unique identifier for the target chat or username of the target channel (in the format @channelusername) :param message_id: Required if inline_message_id is not specified. Unique identifier of the sent message :param inline_message_id: Required if chat_id and message_id are not specified. Identifier of the inline message :param reply_markup: A JSON-serialized object for an inline keyboard. :param *\*kwargs: Args that get passed down to :class:`TelegramBotRPCRequest` :type chat_id: str or int :type message_id: int :type inline_message_id: str :type reply_markup: InlineKeyboardMarkup :returns: On success, the edited Message is returned. :rtype: Message """ if not chat_id and not message_id and not inline_message_id: raise ValueError("Must specify chat_id and message_id or inline_message_id") if (chat_id and not message_id) or (not chat_id and message_id): raise ValueError("Must specify chat_id and message_id together") # required args params = dict( ) # optional args params.update( _clean_params( chat_id=chat_id, message_id=message_id, inline_message_id=inline_message_id, reply_markup=reply_markup ) ) return TelegramBotRPCRequest('editMessageReplyMarkup', params=params, on_result=Message.from_result, **kwargs)
[docs]def answer_inline_query(inline_query_id, results, cache_time=None, is_personal=None, next_offset=None, switch_pm_text=None, switch_pm_parameter=None, **kwargs): """ Use this method to send answers to an inline query. On success, True is returned. :param inline_query_id: Unique identifier for the message recipient — String :param results: An array of results for the inline query — Array of InlineQueryResult :param cache_time: The maximum amount of time the result of the inline query may be cached on the server :param is_personal: Pass True, if results may be cached on the server side only for the user that sent the query. By default, results may be returned to any user who sends the same query :param next_offset: Pass the offset that a client should send in the next query with the same text to receive more results. Pass an empty string if there are no more results or if you don‘t support pagination. Offset length can’t exceed 64 bytes. :param switch_pm_text: If passed, clients will display a button with specified text that switches the user to a private that with the bot and sends the bot a start message with the parameter switch_pm_parameter :param switch_pm_parameter: Parameter for the start message sent to the bot when user presses the switch button *Example:* An inline bot that sends YouTube videos can ask the user to connect the bot to their YouTube account to adapt search results accordingly. To do this, it displays a ‘Connect your YouTube account’ button above the results, or even before showing any. The user presses the button, switches to a private chat with the bot and, in doing so, passes a start parameter that instructs the bot to return an oauth link. Once done, the bot can offer a switch_inline button so that the user can easily return to the chat where they wanted to use the bot's inline capabilities. :param \*\*kwargs: Args that get passed down to :class:`TelegramBotRPCRequest` :type inline_query_id: str :type results: InlineQueryResult[] :type cache_time: int :type is_personal: bool :type next_offset: str :type switch_pm_text: str :type switch_pm_parameter: str :returns: On success, the sent True is returned. :rtype: bool """ json_results = [] for result in results: result_dict = dict((k, v) for k, v in result.__dict__.items() if v) # Don't serialize None keys. result_dict['input_message_content'] = dict((k, v) for k, v in result_dict['input_message_content'].__dict__.items() if v) # Serialize InputMessageContent keyboard_buttons = result_dict['reply_markup'].inline_keyboard serialized_buttons = [] for row in keyboard_buttons: new_row = [] for column in row: serialized_button = dict((k, v) for k, v in column._asdict().items() if v) new_row.append(serialized_button) serialized_buttons.append(new_row) result_dict['reply_markup'] = { 'inline_keyboard': serialized_buttons } json_results.append(result_dict) # required args params = dict( inline_query_id=inline_query_id, results=json.dumps(json_results) ) # optional args params.update( _clean_params( cache_time=cache_time, is_personal=is_personal, next_offset=next_offset, switch_pm_text=switch_pm_text, switch_pm_parameter=switch_pm_parameter, ) ) return TelegramBotRPCRequest('answerInlineQuery', params=params, on_result=Message.from_result, **kwargs)
[docs]def get_user_profile_photos(user_id, offset=None, limit=None, **kwargs): """ Use this method to get a list of profile pictures for a user. Returns a UserProfilePhotos object. :param user_id: Unique identifier of the target user :param offset: Sequential number of the first photo to be returned. By default, all photos are returned. :param limit: Limits the number of photos to be retrieved. Values between 1—100 are accepted. Defaults to 100. :param \*\*kwargs: Args that get passed down to :class:`TelegramBotRPCRequest` :type user_id: int :type offset: int :type limit: int :returns: Returns a UserProfilePhotos object. :rtype: TelegramBotRPCRequest """ # required args params = dict(user_id=user_id) # optional args params.update( _clean_params( offset=offset, limit=limit ) ) return TelegramBotRPCRequest('getUserProfilePhotos', params=params, on_result=UserProfilePhotos.from_result, **kwargs)
[docs]def get_file(file_id, **kwargs): """ Use this method to get basic info about a file and prepare it for downloading. For the moment, bots can download files of up to 20MB in size. On success, a File object is returned. The file can then be downloaded via the link https://api.telegram.org/file/bot<token>/<file_path>, where <file_path> is taken from the response. It is guaranteed that the link will be valid for at least 1 hour. When the link expires, a new one can be requested by calling getFile again. :param file_id: File identifier to get info about :type file_id: str :returns: Returns a File object. :rtype: TelegramBotRPCRequest """ # required args params = dict(file_id=file_id) return TelegramBotRPCRequest('getFile', params=params, on_result=File.from_result, **kwargs)
[docs]def get_updates(offset=None, limit=None, timeout=None, **kwargs): """ Use this method to receive incoming updates using long polling. .. note:: 1. This method will not work if an outgoing webhook is set up. 2. In order to avoid getting duplicate updates, recalculate offset after each server response. :param offset: Identifier of the first update to be returned. Must be greater by one than the highest among the identifiers of previously received updates. By default, updates starting with the earliest unconfirmed update are returned. An update is considered confirmed as soon as getUpdates is called with an offset higher than its update_id. :param limit: Limits the number of updates to be retrieved. Values between 1—100 are accepted. Defaults to 100 :param timeout: Timeout in seconds for long polling. Defaults to 0, i.e. usual short polling :param \*\*kwargs: Args that get passed down to :class:`TelegramBotRPCRequest` :type offset: int :type limit: int :type timeout: int :returns: An Array of Update objects is returned. :rtype: TelegramBotRPCRequest """ # optional parameters params = _clean_params( offset=offset, limit=limit, timeout=timeout ) return TelegramBotRPCRequest('getUpdates', params=params, on_result=Update.from_result, **kwargs)
[docs]def set_webhook(url=None, certificate=None, **kwargs): """ Use this method to specify a url and receive incoming updates via an outgoing webhook. Whenever there is an update for the bot, we will send an HTTPS POST request to the specified url, containing a JSON-serialized Update. In case of an unsuccessful request, we will give up after a reasonable amount of attempts. Please note that you will not be able to receive updates using getUpdates for as long as an outgoing webhook is set up. To use a self-signed certificate, you need to upload your public key certificate using certificate parameter. Please upload as InputFile, sending a String will not work. Ports currently supported for Webhooks: 443, 80, 88, 8443. :param url: HTTPS url to send updates to. Use an empty string to remove webhook integration :param certificate: Upload your public key certificate so that the root certificate in use can be checked. See telegram's self-signed guide for details (https://core.telegram.org/bots/self-signed). :param \*\*kwargs: Args that get passed down to :class:`TelegramBotRPCRequest` :type url: str :type certificate: InputFile :returns: Returns True on success. :rtype: TelegramBotRPCRequest """ # optional args params = _clean_params(url=url, certificate=certificate) return TelegramBotRPCRequest('setWebhook', params=params, on_result=lambda result: result, **kwargs)
[docs]def download_file(file_path, out_file, **kwargs): """ Use this method to download a file from the telegram servers. It is guaranteed that the link will be valid for at least 1 hour. :param file_path: The remote file path received via :func:`get_file` :param out_file: File to save to. Can be a file path (str) or a file-like object :param \*\*kwargs: Args that get passed down to :class:`TelegramDownloadRequest` :type file_path: str :type out_file: str or file-like object :returns: Returns out_file on success or an Exception on error. :rtype: TelegramDownloadRequest """ return TelegramDownloadRequest(file_path, out_file, **kwargs)
class TelegramBot: """A `TelegramBot` object represents a specific regisitered bot user as identified by its token. The bot object also helps try to maintain state and simplify interaction for library users. Attributes: token (str) :The api token generated by BotFather request_method (`RequestMethod` or `str`) :*Optional.* The http method to use (e.g. 'POST' or RequestMethod.POST') .. note:: Unlike the unbound API methods, when the bot executes an API call, ``run()`` is immediately called on the request object. """ def __init__(self, token, request_method=RequestMethod.POST): self._bot_user = None self.request_args = dict( token=token, request_method=request_method ) def __str__(self): return self.token def _merge_overrides(self, **kwargs): ra = self.request_args.copy() ra.update(kwargs) return ra def get_me(self, *args, **kwargs): """See :func:`get_me`""" return get_me(*args, **self._merge_overrides(**kwargs)).run() def answer_inline_query(self, *args, **kwargs): return answer_inline_query(*args, **self._merge_overrides(**kwargs)).run() def send_message(self, *args, **kwargs): """See :func:`send_message`""" return send_message(*args, **self._merge_overrides(**kwargs)).run() def forward_message(self, *args, **kwargs): """See :func:`forward_message`""" return forward_message(*args, **self._merge_overrides(**kwargs)).run() def send_photo(self, *args, **kwargs): """See :func:`send_photo`""" return send_photo(*args, **self._merge_overrides(**kwargs)).run() def send_audio(self, *args, **kwargs): """See :func:`send_audio`""" return send_audio(*args, **self._merge_overrides(**kwargs)).run() def send_document(self, *args, **kwargs): """See :func:`send_document`""" return send_document(*args, **self._merge_overrides(**kwargs)).run() def send_sticker(self, *args, **kwargs): """See :func:`send_sticker`""" return send_sticker(*args, **self._merge_overrides(**kwargs)).run() def send_video(self, *args, **kwargs): """See :func:`send_video`""" return send_video(*args, **self._merge_overrides(**kwargs)).run() def send_voice(self, *args, **kwargs): """See :func:`send_voice`""" return send_voice(*args, **self._merge_overrides(**kwargs)).run() def send_location(self, *args, **kwargs): """See :func:`send_location`""" return send_location(*args, **self._merge_overrides(**kwargs)).run() def send_venue(self, *args, **kwargs): """See :func:`send_venue`""" return send_venue(*args, **self._merge_overrides(**kwargs)).run() def send_contact(self, *args, **kwargs): """See :func:`send_contact`""" return send_contact(*args, **self._merge_overrides(**kwargs)).run() def send_chat_action(self, *args, **kwargs): """See :func:`send_chat_action`""" return send_chat_action(*args, **self._merge_overrides(**kwargs)).run() def get_user_profile_photos(self, *args, **kwargs): """See :func:`get_user_profile_photos`""" return get_user_profile_photos(*args, **self._merge_overrides(**kwargs)).run() def get_file(self, *args, **kwargs): """See :func:`get_file`""" return get_file(*args, **self._merge_overrides(**kwargs)).run() def edit_message_text(self, *args, **kwargs): """See :func:`edit_message_text`""" return edit_message_text(*args, **self._merge_overrides(**kwargs)).run() def edit_message_caption(self, *args, **kwargs): """See :func:`edit_message_caption`""" return edit_message_caption(*args, **self._merge_overrides(**kwargs)).run() def kick_chat_member(self, *args, **kwargs): """See :func:`kick_chat_member`""" return kick_chat_member(*args, **self._merge_overrides(**kwargs)).run() def unban_chat_member(self, *args, **kwargs): """See :func:`unban_chat_member`""" return unban_chat_member(*args, **self._merge_overrides(**kwargs)).run() def edit_message_reply_markup(self, *args, **kwargs): """See :func:`edit_message_reply_markup`""" return edit_message_reply_markup(*args, **self._merge_overrides(**kwargs)).run() def get_updates(self, *args, **kwargs): """See :func:`get_updates`""" return get_updates(*args, **self._merge_overrides(**kwargs)).run() def set_webhook(self, *args, **kwargs): """See :func:`set_webhook`""" return set_webhook(*args, **self._merge_overrides(**kwargs)).run() def _update_bot_info(self, response): self._bot_user = response def update_bot_info(self): """See :func:`get_me`. After calling this, you may access :attr:`id`, :attr:`first_name`, :attr:`last_name` and :attr:`username`. """ return self.get_me(on_success=self._update_bot_info) def download_file(self, *args, **kwargs): """See :func:`download_file`""" return download_file(*args, **self._merge_overrides(**kwargs)).run() @property def token(self): return self.request_args['token'] @token.setter def token(self, val): self.request_args['token'] = val @property def request_method(self): return self.request_args['request_method'] @request_method.setter def request_method(self, val): self.request_args['request_method'] = val @property def id(self): if self._bot_user is not None: return self._bot_user.id @property def first_name(self): if self._bot_user is not None: return self._bot_user.first_name @property def last_name(self): if self._bot_user is not None: return self._bot_user.last_name @property def username(self): if self._bot_user is not None: return self._bot_user.username