leistungsbot 1.1.0__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.
- leistungsbot-1.1.0/LICENSE.md +8 -0
- leistungsbot-1.1.0/PKG-INFO +85 -0
- leistungsbot-1.1.0/README.md +62 -0
- leistungsbot-1.1.0/leistungsbot/Bot.py +1542 -0
- leistungsbot-1.1.0/leistungsbot/BotHelper.py +653 -0
- leistungsbot-1.1.0/leistungsbot/BotScheduler.py +113 -0
- leistungsbot-1.1.0/leistungsbot/__main__.py +11 -0
- leistungsbot-1.1.0/leistungsbot/google_place.py +215 -0
- leistungsbot-1.1.0/leistungsbot/leistungs_config.py +60 -0
- leistungsbot-1.1.0/leistungsbot/leistungs_db.py +725 -0
- leistungsbot-1.1.0/leistungsbot/leistungs_returns.py +8 -0
- leistungsbot-1.1.0/leistungsbot/package/__init__.py +0 -0
- leistungsbot-1.1.0/leistungsbot/package/_version.py +5 -0
- leistungsbot-1.1.0/leistungsbot/resources/responisibility.gif +0 -0
- leistungsbot-1.1.0/leistungsbot/resources/sneaky.gif +0 -0
- leistungsbot-1.1.0/pyproject.toml +51 -0
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* ----------------------------------------------------------------------------
|
|
3
|
+
* "THE BEER-WARE LICENSE" (Revision 42):
|
|
4
|
+
* <leistungsbot@hsd-kuchl.at> wrote this file. As long as you retain this notice you
|
|
5
|
+
* can do whatever you want with this stuff. If we meet some day, and you think
|
|
6
|
+
* this stuff is worth it, you can buy me a beer in return Poul-Henning Kamp
|
|
7
|
+
* ----------------------------------------------------------------------------
|
|
8
|
+
*/
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: leistungsbot
|
|
3
|
+
Version: 1.1.0
|
|
4
|
+
Summary:
|
|
5
|
+
Author: EckPhi
|
|
6
|
+
Requires-Python: >=3.11,<4.0
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
11
|
+
Requires-Dist: confuse (>=2.0.1,<3.0.0)
|
|
12
|
+
Requires-Dist: googlemaps (>=4.10.0,<5.0.0)
|
|
13
|
+
Requires-Dist: mysql-connector-python (>=9.0.0,<10.0.0)
|
|
14
|
+
Requires-Dist: platformdirs (>=4.2.2,<5.0.0)
|
|
15
|
+
Requires-Dist: pyTelegramBotAPI (>=4.5.0,<5.0.0)
|
|
16
|
+
Requires-Dist: python-telegram-bot-calendar (>=1.0.5,<2.0.0)
|
|
17
|
+
Requires-Dist: pyyaml (>=6.0.2,<7.0.0)
|
|
18
|
+
Requires-Dist: requests (>=2.32.3,<3.0.0)
|
|
19
|
+
Requires-Dist: schedule (>=1.2.2,<2.0.0)
|
|
20
|
+
Requires-Dist: urllib3 (>=2.2.2,<3.0.0)
|
|
21
|
+
Description-Content-Type: text/markdown
|
|
22
|
+
|
|
23
|
+
[](https://github.com/SharedShithosting/Leistungsbot/actions/workflows/pytest.yml/reports/junit/report.html)
|
|
24
|
+
[](https://github.com/SharedShithosting/Leistungsbot/actions/workflows/docker-image.yml)
|
|
25
|
+
[](https://results.pre-commit.ci/latest/github/SharedShithosting/Leistungsbot/main)
|
|
26
|
+
[](https://github.com/psf/black)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
## Intro
|
|
30
|
+
<body>This Is A Simple Bot To Create Poll In Channel and Groups <br> And Also This Is our First Project Too..
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
## Enter you tokens at these are very important VARS:
|
|
34
|
+
Without fork you cant deploy so fork it and edit in [Bot.py#L22](https://github.com/BotsUniverse/poll-bot/blob/main/Bot.py#L22)
|
|
35
|
+
|
|
36
|
+
## DEVLOPERS
|
|
37
|
+
😎ROHITH [ROHITHADITYA](https://telegram.me/rohithaditya) <br> 😋PARVAT [PARVAT_R](https://telegram.me/Parvat_R)
|
|
38
|
+
|
|
39
|
+
## QUICK NOTES
|
|
40
|
+
**DONT FORGET TO JOIN [Venila Bots](https://telegram.me/venilabots)**
|
|
41
|
+
|
|
42
|
+
## LANUGUAGES
|
|
43
|
+
<br>
|
|
44
|
+
>> PY BOT API
|
|
45
|
+
<br>
|
|
46
|
+
>> PYTHON
|
|
47
|
+
|
|
48
|
+
## SUPPORT GROUP
|
|
49
|
+
<a href="https://t.me/venilabots"><img src="https://img.shields.io/badge/Join-Telegram%20Channel-blue.svg?logo=telegram"></a><br>
|
|
50
|
+
<a href="https://t.me/venilabots1"><img src="https://img.shields.io/badge/Join-Telegram%20Group-blue.svg?logo=telegram"></a><br>
|
|
51
|
+
|
|
52
|
+
## SIMLIFIED READ ME HERE
|
|
53
|
+
|
|
54
|
+
Read Me --> [SIMPLIFIED README](https://springreen.ga/pollbot-docs)<br>
|
|
55
|
+
### DEPLOY
|
|
56
|
+
## DEPLOY TO HEROKU <br>
|
|
57
|
+
[](http://springreen.ga/pollbot-docs/#getting_started)
|
|
58
|
+
|
|
59
|
+
## RUN IN TERMUX
|
|
60
|
+
```
|
|
61
|
+
git clone https://github.com/Botsuniverse/poll-bot
|
|
62
|
+
cd poll-bot
|
|
63
|
+
python3 Bot.py
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
## RUN IN PYDROID 3 <br>
|
|
67
|
+
(x) Just Copy The Bot.py to pydroid and Simply Run it
|
|
68
|
+
|
|
69
|
+
## RUN IN YOUR LINUX VPS OR DESKTOP
|
|
70
|
+
|
|
71
|
+
```
|
|
72
|
+
sudo apt update
|
|
73
|
+
sudo apt upgrade
|
|
74
|
+
git clone https://github.com/Botsuniverse/poll-bot
|
|
75
|
+
python3 Bot.py
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
## RUN THIS IN WINDOWS TERMINAL
|
|
79
|
+
|
|
80
|
+
```bash
|
|
81
|
+
git clone https://github.com/BotsUniverse/poll-bot/
|
|
82
|
+
cd where_the_fuck_you_stored/poll-bot
|
|
83
|
+
py Bot.py
|
|
84
|
+
```
|
|
85
|
+
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
[](https://github.com/SharedShithosting/Leistungsbot/actions/workflows/pytest.yml/reports/junit/report.html)
|
|
2
|
+
[](https://github.com/SharedShithosting/Leistungsbot/actions/workflows/docker-image.yml)
|
|
3
|
+
[](https://results.pre-commit.ci/latest/github/SharedShithosting/Leistungsbot/main)
|
|
4
|
+
[](https://github.com/psf/black)
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
## Intro
|
|
8
|
+
<body>This Is A Simple Bot To Create Poll In Channel and Groups <br> And Also This Is our First Project Too..
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
## Enter you tokens at these are very important VARS:
|
|
12
|
+
Without fork you cant deploy so fork it and edit in [Bot.py#L22](https://github.com/BotsUniverse/poll-bot/blob/main/Bot.py#L22)
|
|
13
|
+
|
|
14
|
+
## DEVLOPERS
|
|
15
|
+
😎ROHITH [ROHITHADITYA](https://telegram.me/rohithaditya) <br> 😋PARVAT [PARVAT_R](https://telegram.me/Parvat_R)
|
|
16
|
+
|
|
17
|
+
## QUICK NOTES
|
|
18
|
+
**DONT FORGET TO JOIN [Venila Bots](https://telegram.me/venilabots)**
|
|
19
|
+
|
|
20
|
+
## LANUGUAGES
|
|
21
|
+
<br>
|
|
22
|
+
>> PY BOT API
|
|
23
|
+
<br>
|
|
24
|
+
>> PYTHON
|
|
25
|
+
|
|
26
|
+
## SUPPORT GROUP
|
|
27
|
+
<a href="https://t.me/venilabots"><img src="https://img.shields.io/badge/Join-Telegram%20Channel-blue.svg?logo=telegram"></a><br>
|
|
28
|
+
<a href="https://t.me/venilabots1"><img src="https://img.shields.io/badge/Join-Telegram%20Group-blue.svg?logo=telegram"></a><br>
|
|
29
|
+
|
|
30
|
+
## SIMLIFIED READ ME HERE
|
|
31
|
+
|
|
32
|
+
Read Me --> [SIMPLIFIED README](https://springreen.ga/pollbot-docs)<br>
|
|
33
|
+
### DEPLOY
|
|
34
|
+
## DEPLOY TO HEROKU <br>
|
|
35
|
+
[](http://springreen.ga/pollbot-docs/#getting_started)
|
|
36
|
+
|
|
37
|
+
## RUN IN TERMUX
|
|
38
|
+
```
|
|
39
|
+
git clone https://github.com/Botsuniverse/poll-bot
|
|
40
|
+
cd poll-bot
|
|
41
|
+
python3 Bot.py
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
## RUN IN PYDROID 3 <br>
|
|
45
|
+
(x) Just Copy The Bot.py to pydroid and Simply Run it
|
|
46
|
+
|
|
47
|
+
## RUN IN YOUR LINUX VPS OR DESKTOP
|
|
48
|
+
|
|
49
|
+
```
|
|
50
|
+
sudo apt update
|
|
51
|
+
sudo apt upgrade
|
|
52
|
+
git clone https://github.com/Botsuniverse/poll-bot
|
|
53
|
+
python3 Bot.py
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
## RUN THIS IN WINDOWS TERMINAL
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
git clone https://github.com/BotsUniverse/poll-bot/
|
|
60
|
+
cd where_the_fuck_you_stored/poll-bot
|
|
61
|
+
py Bot.py
|
|
62
|
+
```
|