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.
- {comprobot-2.2.4 → comprobot-2.2.5}/PKG-INFO +5 -4
- {comprobot-2.2.4 → comprobot-2.2.5}/README.md +4 -3
- {comprobot-2.2.4 → comprobot-2.2.5}/comprobot.egg-info/PKG-INFO +5 -4
- {comprobot-2.2.4 → comprobot-2.2.5}/pyproject.toml +1 -1
- {comprobot-2.2.4 → comprobot-2.2.5}/src/__main__.py +0 -2
- {comprobot-2.2.4 → comprobot-2.2.5}/LICENSE +0 -0
- {comprobot-2.2.4 → comprobot-2.2.5}/comprobot.egg-info/SOURCES.txt +0 -0
- {comprobot-2.2.4 → comprobot-2.2.5}/comprobot.egg-info/dependency_links.txt +0 -0
- {comprobot-2.2.4 → comprobot-2.2.5}/comprobot.egg-info/entry_points.txt +0 -0
- {comprobot-2.2.4 → comprobot-2.2.5}/comprobot.egg-info/requires.txt +0 -0
- {comprobot-2.2.4 → comprobot-2.2.5}/comprobot.egg-info/top_level.txt +0 -0
- {comprobot-2.2.4 → comprobot-2.2.5}/setup.cfg +0 -0
- {comprobot-2.2.4 → comprobot-2.2.5}/src/__init__.py +0 -0
- {comprobot-2.2.4 → comprobot-2.2.5}/src/api.py +0 -0
- {comprobot-2.2.4 → comprobot-2.2.5}/src/bot.py +0 -0
- {comprobot-2.2.4 → comprobot-2.2.5}/src/commands.py +0 -0
- {comprobot-2.2.4 → comprobot-2.2.5}/src/config.py +0 -0
- {comprobot-2.2.4 → comprobot-2.2.5}/src/data.py +0 -0
- {comprobot-2.2.4 → comprobot-2.2.5}/src/functions.py +0 -0
- {comprobot-2.2.4 → comprobot-2.2.5}/src/moderation.py +0 -0
- {comprobot-2.2.4 → comprobot-2.2.5}/src/money_system.py +0 -0
- {comprobot-2.2.4 → comprobot-2.2.5}/src/onboarding.py +0 -0
- {comprobot-2.2.4 → comprobot-2.2.5}/src/process.py +0 -0
- {comprobot-2.2.4 → comprobot-2.2.5}/src/start.py +0 -0
- {comprobot-2.2.4 → comprobot-2.2.5}/src/templates.py +0 -0
- {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.
|
|
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.
|
|
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
|
|
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.
|
|
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
|
|
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.
|
|
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.
|
|
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
|
|
49
|
+
sudo apt update
|
|
49
50
|
sudo apt install comprobot
|
|
50
51
|
```
|
|
51
52
|
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|