Badiboy
ec86182f62
Possibility to use alternative serializer
...
With apihelper.CUSTOM_SERIALIZER you can replace pickle with other "dumper" like dill.
2020-04-11 13:42:34 +03:00
bedilbek
932ac9477b
Add ENABLE_MIDDLEWARE=False in apihelpers to keep backward compatibility
2020-04-11 13:02:50 +05:00
bedilbek
1e242f2263
Add Middleware support
2020-04-08 23:13:19 +05:00
Alexander Tkachev
d2f9c51a5a
Handle Poll update
2020-03-09 17:25:54 +07:00
Alexander Tkachev
12547efa08
Fix order for consistency in process_new_updates
2020-03-09 17:25:37 +07:00
Badiboy
aa02ddb573
TAB fix
...
TAB fix
2020-01-08 20:17:25 +03:00
Badiboy
760ea5a2f0
Design updates from #711
...
Significant design updated from
https://github.com/eternnoir/pyTelegramBotAPI/pull/711
2020-01-08 20:06:40 +03:00
Badiboy
59810b5e2a
Merge pull request #620 from nev3rfail/send_animation
...
Added reduced version of sendAnimation (no width/height/thumb).
2020-01-03 17:12:29 +03:00
Badiboy
86644c05f7
Merge pull request #539 from Badiboy/master
...
"timeout" parameter for send_message
Fix kick_chat_member return type
HTML symbols not replaced
2020-01-03 00:50:24 +03:00
FrankWang
151880f391
Merge pull request #659 from OslikAi/master
...
Add Poll
2019-06-28 21:02:23 +08:00
FrankWang
56f0b0a0d4
Merge pull request #603 from nailerNAS/master
...
infinity_polling fix
2019-06-28 20:57:28 +08:00
P0lunin
3a1bdc2899
add Poll, sendPoll, stopPoll
2019-06-27 15:07:41 +03:00
Tiger 1
9624b45314
add Poll, sendPoll, stopPoll
2019-06-06 21:47:08 +03:00
Artem M
99df992a66
Added the method sendAnimation, which can be used instead of sendDocument to send animations, specifying their duration.
2019-02-15 18:46:18 +00:00
Moon Princess
79e6a3166d
edit message_handler doc
2019-01-20 23:04:11 +05:00
nailer
b82ed70ec9
fix syntax errors
2018-11-17 13:19:09 +02:00
nailer
18e37f3d20
sleep time timeout time instead of 5 seconds always
2018-11-17 12:58:56 +02:00
Badiboy
ad4be5c0ae
Merge branch 'master' of https://github.com/eternnoir/pyTelegramBotAPI
2018-10-19 13:40:14 +03:00
uburuntu
36621bb22a
fix: some intendation
2018-08-17 13:01:03 +03:00
uburuntu
99466017c5
enh: optimize imports
2018-08-17 12:54:26 +03:00
uburuntu
feec1dde56
fix: little style fixes
2018-08-17 12:49:37 +03:00
uburuntu
54eba946be
fix: wrong arguments usage (fix fa038c2
)
2018-08-17 12:48:59 +03:00
FrankWang
421118d9d8
Merge pull request #558 from uburuntu/InputMedia
...
v.4.0: InputMediaAnimation, InputMediaAudio, InputMediaDocument, editMessageMedia
2018-08-13 23:47:03 +08:00
uburuntu
8ac6e664c5
new: InputMediaAnimation, InputMediaAudio, InputMediaDocument, editMessageMedia
...
Added support for editing the media content of messages: added the method editMessageMedia and new types InputMediaAnimation, InputMediaAudio, and InputMediaDocument.
2018-08-09 19:16:38 +03:00
Andru1999
494b535a91
Fix issue When you use threading mode
2018-08-08 10:46:23 +10:00
eternnoir
35ea2a2b7e
Fix #548
2018-08-03 08:34:48 +08:00
Badiboy
8634e65249
Fix kick_chat_member decription
...
Fix kick_chat_member return value type description (should be boolean according to API and is boolean by fact).
2018-07-25 12:44:18 +03:00
FrankWang
578a9383b2
Merge branch 'master' into patch-1
2018-07-24 10:42:04 +08:00
Badiboy
27d442fabf
timeout for send_message
...
Add optional "timeout" parameter to send_message (the same as exists in all other send_*).
Equal rights for all send functions! :)
2018-07-24 00:33:13 +03:00
WaffleWafflerov
f251def304
Merge branch 'master' into master
2018-07-22 04:43:53 +03:00
Andru1999
2b822f782d
Update __init__.py
...
I find bug when I use your library without threading. If call bot.register_next_step_handler in function that register next_handler in next_step_handlers but in function _notify_next_handlers this delete and bot don`t have handler, but in threading mode function self.next_step_handlers.pop(chat_id, None) has time to eval self.next_step_handlers.pop(chat_id, None) and bug disappear. Sorry for my English
2018-07-22 00:31:02 +10:00
users
c8b2b14157
rename async -> async_dec
2018-07-02 18:13:11 +03:00
Badiboy
776a699a8d
_notify_next_handlers skips sequential messages
...
Is there are several sequential messages and next_step_handlers are set, the _notify_next_handlers will process only every even message dew to execute both .pop(i) and i+=1
2018-05-29 18:55:41 +03:00
Badiboy
78afd045d8
_notify_next_handlers drops messages if empty handler list
...
After calling
clear_step_handler(...)
code:
self.next_step_handlers[chat_id] = []
left the key in next_step_handlers.
When a next message arrives, the old handler executes nothing (no handlers), but still remove message from message queue:
new_messages.pop(i).
Updated to pop message only when there are real handlers in the list.
2018-05-27 23:24:37 +03:00
Waffle
bc855f7610
Fix register_for_reply_by_message_id and register_for_reply doc strings.
2018-05-27 17:05:01 +03:00
Waffle
893d5386c5
Fix register_for_reply_by_message_id doc strings.
2018-05-27 17:02:04 +03:00
Waffle
909d570dca
Add warning about lambda functions in callbacks
2018-05-27 17:01:07 +03:00
Waffle
424c77fd2c
Remove type hint for 2.x and PyPy python compatibility
2018-05-27 16:54:56 +03:00
Waffle
333949683f
Add doc strings to new TeleBot methods
...
Update telebot/__init__.py
2018-05-27 01:37:06 +03:00
Waffle
fa038c2e42
Move del_file_after_loading param to right methods :face_palm:
...
Update: telebot/__init__.py
2018-05-27 01:30:14 +03:00
Waffle
d61de35a32
Remove rudiment json things, again!
...
Update: telebot/__init__.py
2018-05-27 01:23:20 +03:00
Waffle
1de356dcc3
Change default save directory to "./.handler-saves/".
...
Add del_file_after_loading param to load methods.
Update: telebot/__init__.py
2018-05-26 17:10:00 +03:00
Waffle
47e6dfd6bc
Remove rudiment json things
...
Update: telebot/__init__.py
2018-05-26 16:52:30 +03:00
Waffle
3c890a7846
Remove 2 spaces up to TeleBot class.
...
Update: telebot/__init__.py
2018-05-26 16:37:25 +03:00
Waffle
17971ff48b
Move from json to pickle.
...
Update: relebot/__init__.py
2018-05-26 12:19:01 +03:00
Waffle
b989b7601b
Add new class: Handler
...
Change type of (next step|reply) handlers from dict to Handler [WIP]
update: telebot/__init__.py
2018-05-25 20:57:22 +03:00
Waffle
8c574a786a
Merge branch 'master' of https://github.com/WaffleWafflerov/pyTelegramBotAPI-1
2018-05-25 20:37:36 +03:00
Waffle
7e5f51e4ab
Remove old thing.
...
Update telebot/__init__.py
2018-05-25 09:44:43 +03:00
Waffle
018e4597a2
Add del_file_after_loading param to Saver.return_load_handlers and Saver.load_handlers methods.
...
Update telebot/__init__.py
2018-05-25 09:40:29 +03:00
Waffle
7df6b3d4c9
Fix situation where delay <= 0.
...
Update telebot/__init__.py
2018-05-25 09:35:39 +03:00