threadkiller 2.2.3__tar.gz → 2.2.5__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: threadkiller
3
- Version: 2.2.3
3
+ Version: 2.2.5
4
4
  Summary: Telegram bot to delete messages sent outside of threads
5
5
  License-Expression: EUPL-1.2
6
6
  License-File: LICENSE.txt
@@ -10,8 +10,13 @@ Author-email: me@steffo.eu
10
10
  Maintainer: Stefano Pigozzi
11
11
  Maintainer-email: me@steffo.eu
12
12
  Requires-Python: >=3.10,<4.0
13
+ Classifier: Development Status :: 5 - Production/Stable
14
+ Classifier: Intended Audience :: System Administrators
13
15
  Classifier: Programming Language :: Python :: 3
14
16
  Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Programming Language :: Python :: 3.13
15
20
  Classifier: License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)
16
21
  Classifier: Natural Language :: English
17
22
  Classifier: Operating System :: OS Independent
@@ -47,12 +52,12 @@ This bot deletes all messages sent in the groups it's in except for replies to c
47
52
  ## Commands
48
53
 
49
54
  - **/start** - In private chats, display information about Threadkiller.
50
- - **/version** - View the Threadkiller version currently running.
55
+ - **/version** - View the currently running version of Threadkiller.
51
56
  - **/thread** - Start a new thread with the given title.
52
57
 
53
58
  ## Link
54
59
 
55
- ### Usage
60
+ ### Use
56
61
 
57
62
  <a href="https://t.me/the_threadkiller_bot?startgroup=yes">
58
63
  <img alt="Usable on Telegram" title="Usable on Telegram" src="https://img.shields.io/badge/telegram-@the__threadkiller__bot-27a7e7" height="30px">
@@ -98,7 +103,7 @@ This bot deletes all messages sent in the groups it's in except for replies to c
98
103
  <img alt="Issues" title="Issues" src="https://img.shields.io/gitea/issues/open/steffo/threadkiller?gitea_url=https%3A%2F%2Fforge.steffo.eu&label=issues&color=374351" height="30px">
99
104
  </a>
100
105
  &hairsp;
101
- <a href="https://forge.steffo.eu/steffo/threadkiller/issues">
102
- <img alt="Pull requests" title="Issues" src="https://img.shields.io/gitea/pull-requests/open/steffo/threadkiller?gitea_url=https%3A%2F%2Fforge.steffo.eu&color=374351" height="30px">
106
+ <a href="https://forge.steffo.eu/steffo/threadkiller/pulls">
107
+ <img alt="Pull requests" title="Pull requests" src="https://img.shields.io/gitea/pull-requests/open/steffo/threadkiller?gitea_url=https%3A%2F%2Fforge.steffo.eu&color=374351" height="30px">
103
108
  </a>
104
109
 
@@ -20,12 +20,12 @@ This bot deletes all messages sent in the groups it's in except for replies to c
20
20
  ## Commands
21
21
 
22
22
  - **/start** - In private chats, display information about Threadkiller.
23
- - **/version** - View the Threadkiller version currently running.
23
+ - **/version** - View the currently running version of Threadkiller.
24
24
  - **/thread** - Start a new thread with the given title.
25
25
 
26
26
  ## Link
27
27
 
28
- ### Usage
28
+ ### Use
29
29
 
30
30
  <a href="https://t.me/the_threadkiller_bot?startgroup=yes">
31
31
  <img alt="Usable on Telegram" title="Usable on Telegram" src="https://img.shields.io/badge/telegram-@the__threadkiller__bot-27a7e7" height="30px">
@@ -71,6 +71,6 @@ This bot deletes all messages sent in the groups it's in except for replies to c
71
71
  <img alt="Issues" title="Issues" src="https://img.shields.io/gitea/issues/open/steffo/threadkiller?gitea_url=https%3A%2F%2Fforge.steffo.eu&label=issues&color=374351" height="30px">
72
72
  </a>
73
73
  &hairsp;
74
- <a href="https://forge.steffo.eu/steffo/threadkiller/issues">
75
- <img alt="Pull requests" title="Issues" src="https://img.shields.io/gitea/pull-requests/open/steffo/threadkiller?gitea_url=https%3A%2F%2Fforge.steffo.eu&color=374351" height="30px">
74
+ <a href="https://forge.steffo.eu/steffo/threadkiller/pulls">
75
+ <img alt="Pull requests" title="Pull requests" src="https://img.shields.io/gitea/pull-requests/open/steffo/threadkiller?gitea_url=https%3A%2F%2Fforge.steffo.eu&color=374351" height="30px">
76
76
  </a>
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "threadkiller"
3
- version = "2.2.3"
3
+ version = "2.2.5"
4
4
  description = "Telegram bot to delete messages sent outside of threads"
5
5
  authors = [
6
6
  {name = "Stefano Pigozzi", email = "me@steffo.eu"}
@@ -19,8 +19,13 @@ keywords = [
19
19
  "python-telegram-bot",
20
20
  ]
21
21
  classifiers = [
22
+ "Development Status :: 5 - Production/Stable",
23
+ "Intended Audience :: System Administrators",
22
24
  "Programming Language :: Python :: 3",
23
25
  "Programming Language :: Python :: 3.10",
26
+ "Programming Language :: Python :: 3.11",
27
+ "Programming Language :: Python :: 3.12",
28
+ "Programming Language :: Python :: 3.13",
24
29
  "License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)",
25
30
  "Natural Language :: English",
26
31
  "Operating System :: OS Independent",
@@ -7,6 +7,8 @@ from . import handlers
7
7
 
8
8
 
9
9
  def main():
10
+ print("Initializing Threadkiller…")
11
+
10
12
  config.config.proxies.resolve()
11
13
  application = telegram.ext.ApplicationBuilder().token(config.TG_BOT_TOKEN).build()
12
14
 
@@ -45,6 +47,7 @@ def main():
45
47
  )
46
48
  )
47
49
 
50
+ print("Running Threadkiller with long polling!")
48
51
  application.run_polling()
49
52
 
50
53
 
File without changes