comprobot 2.2.4__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.
Files changed (26) hide show
  1. {comprobot-2.2.4 → comprobot-2.2.5}/PKG-INFO +5 -4
  2. {comprobot-2.2.4 → comprobot-2.2.5}/README.md +4 -3
  3. {comprobot-2.2.4 → comprobot-2.2.5}/comprobot.egg-info/PKG-INFO +5 -4
  4. {comprobot-2.2.4 → comprobot-2.2.5}/pyproject.toml +1 -1
  5. {comprobot-2.2.4 → comprobot-2.2.5}/src/__main__.py +0 -2
  6. {comprobot-2.2.4 → comprobot-2.2.5}/LICENSE +0 -0
  7. {comprobot-2.2.4 → comprobot-2.2.5}/comprobot.egg-info/SOURCES.txt +0 -0
  8. {comprobot-2.2.4 → comprobot-2.2.5}/comprobot.egg-info/dependency_links.txt +0 -0
  9. {comprobot-2.2.4 → comprobot-2.2.5}/comprobot.egg-info/entry_points.txt +0 -0
  10. {comprobot-2.2.4 → comprobot-2.2.5}/comprobot.egg-info/requires.txt +0 -0
  11. {comprobot-2.2.4 → comprobot-2.2.5}/comprobot.egg-info/top_level.txt +0 -0
  12. {comprobot-2.2.4 → comprobot-2.2.5}/setup.cfg +0 -0
  13. {comprobot-2.2.4 → comprobot-2.2.5}/src/__init__.py +0 -0
  14. {comprobot-2.2.4 → comprobot-2.2.5}/src/api.py +0 -0
  15. {comprobot-2.2.4 → comprobot-2.2.5}/src/bot.py +0 -0
  16. {comprobot-2.2.4 → comprobot-2.2.5}/src/commands.py +0 -0
  17. {comprobot-2.2.4 → comprobot-2.2.5}/src/config.py +0 -0
  18. {comprobot-2.2.4 → comprobot-2.2.5}/src/data.py +0 -0
  19. {comprobot-2.2.4 → comprobot-2.2.5}/src/functions.py +0 -0
  20. {comprobot-2.2.4 → comprobot-2.2.5}/src/moderation.py +0 -0
  21. {comprobot-2.2.4 → comprobot-2.2.5}/src/money_system.py +0 -0
  22. {comprobot-2.2.4 → comprobot-2.2.5}/src/onboarding.py +0 -0
  23. {comprobot-2.2.4 → comprobot-2.2.5}/src/process.py +0 -0
  24. {comprobot-2.2.4 → comprobot-2.2.5}/src/start.py +0 -0
  25. {comprobot-2.2.4 → comprobot-2.2.5}/src/templates.py +0 -0
  26. {comprobot-2.2.4 → comprobot-2.2.5}/src/testing.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: comprobot
3
- Version: 2.2.4
3
+ Version: 2.2.5
4
4
  Summary: A self-hostable Discord bot built for maximum customization.
5
5
  Author: badluma
6
6
  License: MIT
@@ -29,7 +29,8 @@ Dynamic: license-file
29
29
 
30
30
  Comprobot is a highly-customizable, open-source Discord bot that you can run on your own server.
31
31
 
32
- It’s built with Python, has a wide range of fun and useful commands, and is designed to be easy to extend. You can add new commands, customize outputs, or change the behaviour of existing ones. You can also easily edit the keywords of existing commands and customize their outputs.
32
+ It’s built with Python, has a wide range of fun and useful commands, and is designed to be easy to extend.
33
+ You can add new commands, customize outputs, or change the behaviour of existing ones. You can also easily edit the keywords of existing commands and customize their outputs.
33
34
 
34
35
  The bot also comes with built-in AI capabilities when pinging the bot, with Ollama, Groq and Gemini as available providers.
35
36
 
@@ -40,12 +41,12 @@ The bot also comes with built-in AI capabilities when pinging the bot, with Olla
40
41
  pipx install comprobot
41
42
  ```
42
43
 
43
- **APT** (Ubuntu/Debian)
44
+ **APT** (Ubuntu/Debian/Kali)
44
45
  ```sh
45
46
  # If add-apt-repository isn't found, run this first:
46
47
  # sudo apt install software-properties-common
47
48
  sudo add-apt-repository ppa:badluma/ppa
48
- sudo apt update && sudo apt upgrade
49
+ sudo apt update
49
50
  sudo apt install comprobot
50
51
  ```
51
52
 
@@ -2,7 +2,8 @@
2
2
 
3
3
  Comprobot is a highly-customizable, open-source Discord bot that you can run on your own server.
4
4
 
5
- It’s built with Python, has a wide range of fun and useful commands, and is designed to be easy to extend. You can add new commands, customize outputs, or change the behaviour of existing ones. You can also easily edit the keywords of existing commands and customize their outputs.
5
+ It’s built with Python, has a wide range of fun and useful commands, and is designed to be easy to extend.
6
+ You can add new commands, customize outputs, or change the behaviour of existing ones. You can also easily edit the keywords of existing commands and customize their outputs.
6
7
 
7
8
  The bot also comes with built-in AI capabilities when pinging the bot, with Ollama, Groq and Gemini as available providers.
8
9
 
@@ -13,12 +14,12 @@ The bot also comes with built-in AI capabilities when pinging the bot, with Olla
13
14
  pipx install comprobot
14
15
  ```
15
16
 
16
- **APT** (Ubuntu/Debian)
17
+ **APT** (Ubuntu/Debian/Kali)
17
18
  ```sh
18
19
  # If add-apt-repository isn't found, run this first:
19
20
  # sudo apt install software-properties-common
20
21
  sudo add-apt-repository ppa:badluma/ppa
21
- sudo apt update && sudo apt upgrade
22
+ sudo apt update
22
23
  sudo apt install comprobot
23
24
  ```
24
25
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: comprobot
3
- Version: 2.2.4
3
+ Version: 2.2.5
4
4
  Summary: A self-hostable Discord bot built for maximum customization.
5
5
  Author: badluma
6
6
  License: MIT
@@ -29,7 +29,8 @@ Dynamic: license-file
29
29
 
30
30
  Comprobot is a highly-customizable, open-source Discord bot that you can run on your own server.
31
31
 
32
- It’s built with Python, has a wide range of fun and useful commands, and is designed to be easy to extend. You can add new commands, customize outputs, or change the behaviour of existing ones. You can also easily edit the keywords of existing commands and customize their outputs.
32
+ It’s built with Python, has a wide range of fun and useful commands, and is designed to be easy to extend.
33
+ You can add new commands, customize outputs, or change the behaviour of existing ones. You can also easily edit the keywords of existing commands and customize their outputs.
33
34
 
34
35
  The bot also comes with built-in AI capabilities when pinging the bot, with Ollama, Groq and Gemini as available providers.
35
36
 
@@ -40,12 +41,12 @@ The bot also comes with built-in AI capabilities when pinging the bot, with Olla
40
41
  pipx install comprobot
41
42
  ```
42
43
 
43
- **APT** (Ubuntu/Debian)
44
+ **APT** (Ubuntu/Debian/Kali)
44
45
  ```sh
45
46
  # If add-apt-repository isn't found, run this first:
46
47
  # sudo apt install software-properties-common
47
48
  sudo add-apt-repository ppa:badluma/ppa
48
- sudo apt update && sudo apt upgrade
49
+ sudo apt update
49
50
  sudo apt install comprobot
50
51
  ```
51
52
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "comprobot"
7
- version = "2.2.4"
7
+ version = "2.2.5"
8
8
  authors = [{name = "badluma"}]
9
9
  description = "A self-hostable Discord bot built for maximum customization."
10
10
  readme = "README.md"
@@ -23,8 +23,6 @@ def main():
23
23
 
24
24
  args = parser.parse_args()
25
25
 
26
- print(args)
27
-
28
26
  match args.command:
29
27
  case "start":
30
28
  start()
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes