mirror of
https://github.com/eternnoir/pyTelegramBotAPI.git
synced 2023-08-10 21:12:57 +03:00
Comment fix
This commit is contained in:
parent
555257a3fe
commit
08fc32b70a
@ -75,74 +75,59 @@ class TeleBot:
|
||||
logOut
|
||||
close
|
||||
sendMessage
|
||||
Formatting options
|
||||
forwardMessage
|
||||
copyMessage
|
||||
deleteMessage
|
||||
sendPhoto
|
||||
sendAudio
|
||||
sendDocument
|
||||
sendSticker
|
||||
sendVideo
|
||||
sendVenue
|
||||
sendAnimation
|
||||
sendVoice
|
||||
sendVideoNote
|
||||
sendLocation
|
||||
sendChatAction
|
||||
sendDice
|
||||
sendContact
|
||||
sendInvoice
|
||||
sendMediaGroup
|
||||
getUserProfilePhotos
|
||||
getUpdates
|
||||
getFile
|
||||
sendPoll
|
||||
stopPoll
|
||||
sendGame
|
||||
setGameScore
|
||||
getGameHighScores
|
||||
editMessageText
|
||||
editMessageCaption
|
||||
editMessageMedia
|
||||
editMessageReplyMarkup
|
||||
sendLocation
|
||||
editMessageLiveLocation
|
||||
stopMessageLiveLocation
|
||||
sendVenue
|
||||
sendContact
|
||||
sendPoll
|
||||
sendDice
|
||||
sendChatAction
|
||||
getUserProfilePhotos
|
||||
getFile
|
||||
banChatMember
|
||||
unbanChatMember
|
||||
restrictChatMember
|
||||
promoteChatMember
|
||||
setChatAdministratorCustomTitle
|
||||
banChatSenderChat
|
||||
unbanChatSenderChat
|
||||
setChatPermissions
|
||||
exportChatInviteLink
|
||||
createChatInviteLink
|
||||
editChatInviteLink
|
||||
revokeChatInviteLink
|
||||
exportChatInviteLink
|
||||
setChatStickerSet
|
||||
deleteChatStickerSet
|
||||
createNewStickerSet
|
||||
addStickerToSet
|
||||
deleteStickerFromSet
|
||||
setStickerPositionInSet
|
||||
uploadStickerFile
|
||||
setStickerSetThumb
|
||||
getStickerSet
|
||||
approveChatJoinRequest
|
||||
declineChatJoinRequest
|
||||
setChatPhoto
|
||||
deleteChatPhoto
|
||||
setChatTitle
|
||||
setChatDescription
|
||||
pinChatMessage
|
||||
unpinChatMessage
|
||||
unpinAllChatMessages
|
||||
leaveChat
|
||||
getChat
|
||||
getChatAdministrators
|
||||
getChatMemberCount
|
||||
getChatMember
|
||||
setChatStickerSet
|
||||
deleteChatStickerSet
|
||||
answerCallbackQuery
|
||||
getMyCommands
|
||||
setMyCommands
|
||||
deleteMyCommands
|
||||
answerInlineQuery
|
||||
answerShippingQuery
|
||||
answerPreCheckoutQuery
|
||||
getMyCommands
|
||||
"""
|
||||
|
||||
def __init__(
|
||||
|
@ -94,7 +94,66 @@ class CancelUpdate:
|
||||
pass
|
||||
|
||||
class AsyncTeleBot:
|
||||
|
||||
""" This is AsyncTeleBot Class
|
||||
Methods:
|
||||
getMe
|
||||
logOut
|
||||
close
|
||||
sendMessage
|
||||
Formatting options
|
||||
forwardMessage
|
||||
copyMessage
|
||||
sendPhoto
|
||||
sendAudio
|
||||
sendDocument
|
||||
sendVideo
|
||||
sendAnimation
|
||||
sendVoice
|
||||
sendVideoNote
|
||||
sendMediaGroup
|
||||
sendLocation
|
||||
editMessageLiveLocation
|
||||
stopMessageLiveLocation
|
||||
sendVenue
|
||||
sendContact
|
||||
sendPoll
|
||||
sendDice
|
||||
sendChatAction
|
||||
getUserProfilePhotos
|
||||
getFile
|
||||
banChatMember
|
||||
unbanChatMember
|
||||
restrictChatMember
|
||||
promoteChatMember
|
||||
setChatAdministratorCustomTitle
|
||||
banChatSenderChat
|
||||
unbanChatSenderChat
|
||||
setChatPermissions
|
||||
exportChatInviteLink
|
||||
createChatInviteLink
|
||||
editChatInviteLink
|
||||
revokeChatInviteLink
|
||||
approveChatJoinRequest
|
||||
declineChatJoinRequest
|
||||
setChatPhoto
|
||||
deleteChatPhoto
|
||||
setChatTitle
|
||||
setChatDescription
|
||||
pinChatMessage
|
||||
unpinChatMessage
|
||||
unpinAllChatMessages
|
||||
leaveChat
|
||||
getChat
|
||||
getChatAdministrators
|
||||
getChatMemberCount
|
||||
getChatMember
|
||||
setChatStickerSet
|
||||
deleteChatStickerSet
|
||||
answerCallbackQuery
|
||||
setMyCommands
|
||||
deleteMyCommands
|
||||
getMyCommands
|
||||
"""
|
||||
|
||||
def __init__(self, token: str, parse_mode: Optional[str]=None, offset=None,
|
||||
exception_handler=None) -> None: # TODO: ADD TYPEHINTS
|
||||
|
Loading…
Reference in New Issue
Block a user