We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d110972 commit c593672Copy full SHA for c593672
ptbcontrib/true_reply_filter/README.md
@@ -0,0 +1,21 @@
1
+# True Reply Filter
2
+
3
+Provides a `TRUE_REPLY_FILTER` that allows you to filter only **real replies** in Telegram groups and forum topics, ignoring topic starters.
4
5
+```python
6
+from telegram.ext import MessageHandler
7
+from ptbcontrib.true_reply_filter import TRUE_REPLY_FILTER
8
9
+MessageHandler(
10
+ TRUE_REPLY_FILTER,
11
+ callback
12
+)
13
+```
14
15
+## Requirements
16
17
+* `python-telegram-bot>=20.0`
18
19
+## Authors
20
21
+* [Daniel](https://github.com/rozari0)
0 commit comments