pysportbot 0.0.14__tar.gz → 0.0.16__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.
- {pysportbot-0.0.14 → pysportbot-0.0.16}/PKG-INFO +7 -5
- {pysportbot-0.0.14 → pysportbot-0.0.16}/README.md +5 -3
- {pysportbot-0.0.14 → pysportbot-0.0.16}/pyproject.toml +10 -10
- {pysportbot-0.0.14 → pysportbot-0.0.16}/LICENSE +0 -0
- {pysportbot-0.0.14 → pysportbot-0.0.16}/pysportbot/__init__.py +0 -0
- {pysportbot-0.0.14 → pysportbot-0.0.16}/pysportbot/activities.py +0 -0
- {pysportbot-0.0.14 → pysportbot-0.0.16}/pysportbot/authenticator.py +0 -0
- {pysportbot-0.0.14 → pysportbot-0.0.16}/pysportbot/bookings.py +0 -0
- {pysportbot-0.0.14 → pysportbot-0.0.16}/pysportbot/centres.py +0 -0
- {pysportbot-0.0.14 → pysportbot-0.0.16}/pysportbot/endpoints.py +0 -0
- {pysportbot-0.0.14 → pysportbot-0.0.16}/pysportbot/service/__init__.py +0 -0
- {pysportbot-0.0.14 → pysportbot-0.0.16}/pysportbot/service/__main__.py +0 -0
- {pysportbot-0.0.14 → pysportbot-0.0.16}/pysportbot/service/booking.py +0 -0
- {pysportbot-0.0.14 → pysportbot-0.0.16}/pysportbot/service/config_loader.py +0 -0
- {pysportbot-0.0.14 → pysportbot-0.0.16}/pysportbot/service/config_validator.py +0 -0
- {pysportbot-0.0.14 → pysportbot-0.0.16}/pysportbot/service/scheduling.py +0 -0
- {pysportbot-0.0.14 → pysportbot-0.0.16}/pysportbot/service/service.py +0 -0
- {pysportbot-0.0.14 → pysportbot-0.0.16}/pysportbot/service/threading.py +0 -0
- {pysportbot-0.0.14 → pysportbot-0.0.16}/pysportbot/session.py +0 -0
- {pysportbot-0.0.14 → pysportbot-0.0.16}/pysportbot/utils/__init__.py +0 -0
- {pysportbot-0.0.14 → pysportbot-0.0.16}/pysportbot/utils/errors.py +0 -0
- {pysportbot-0.0.14 → pysportbot-0.0.16}/pysportbot/utils/logger.py +0 -0
- {pysportbot-0.0.14 → pysportbot-0.0.16}/pysportbot/utils/time.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: pysportbot
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.16
|
4
4
|
Summary: A python-based bot for automatic resasports slot booking
|
5
5
|
Author: Joshua Falco Beirer
|
6
6
|
Author-email: jbeirer@cern.ch
|
@@ -12,7 +12,7 @@ Classifier: Programming Language :: Python :: 3.12
|
|
12
12
|
Classifier: Programming Language :: Python :: 3.13
|
13
13
|
Requires-Dist: beautifulsoup4 (>=4.13.3,<5.0.0)
|
14
14
|
Requires-Dist: pandas (>=2.2.3,<3.0.0)
|
15
|
-
Requires-Dist: pytz (>=2025.
|
15
|
+
Requires-Dist: pytz (>=2025.2,<2026.0)
|
16
16
|
Requires-Dist: requests (>=2.32.3,<3.0.0)
|
17
17
|
Description-Content-Type: text/markdown
|
18
18
|
|
@@ -141,10 +141,12 @@ For example, if you have a **Yoga** class on **Monday at 18:00:00**, and you wan
|
|
141
141
|
name: Weekly Booking
|
142
142
|
|
143
143
|
on:
|
144
|
-
# Runs at
|
145
|
-
#
|
144
|
+
# Runs at 05:00 UTC (07:00 Madrid time during daylight saving time) on Fridays
|
145
|
+
# Note: Update to '0 6 * * 5' for winter (standard) time when Madrid shifts to UTC+1
|
146
|
+
# GitHub Actions cron expressions are always in UTC and do not support time zones
|
147
|
+
# Reference: https://github.com/orgs/community/discussions/13454
|
146
148
|
schedule:
|
147
|
-
- cron: '0
|
149
|
+
- cron: '0 5 * * 5'
|
148
150
|
|
149
151
|
jobs:
|
150
152
|
book:
|
@@ -123,10 +123,12 @@ For example, if you have a **Yoga** class on **Monday at 18:00:00**, and you wan
|
|
123
123
|
name: Weekly Booking
|
124
124
|
|
125
125
|
on:
|
126
|
-
# Runs at
|
127
|
-
#
|
126
|
+
# Runs at 05:00 UTC (07:00 Madrid time during daylight saving time) on Fridays
|
127
|
+
# Note: Update to '0 6 * * 5' for winter (standard) time when Madrid shifts to UTC+1
|
128
|
+
# GitHub Actions cron expressions are always in UTC and do not support time zones
|
129
|
+
# Reference: https://github.com/orgs/community/discussions/13454
|
128
130
|
schedule:
|
129
|
-
- cron: '0
|
131
|
+
- cron: '0 5 * * 5'
|
130
132
|
|
131
133
|
jobs:
|
132
134
|
book:
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "pysportbot"
|
3
|
-
version = "v0.0.
|
3
|
+
version = "v0.0.16"
|
4
4
|
description = "A python-based bot for automatic resasports slot booking"
|
5
5
|
authors = [
|
6
6
|
{ name = "Joshua Falco Beirer", email = "jbeirer@cern.ch" }
|
@@ -18,26 +18,26 @@ python = ">=3.10,<3.14"
|
|
18
18
|
requests = "^2.32.3"
|
19
19
|
beautifulsoup4 = "^4.13.3"
|
20
20
|
pandas = "^2.2.3"
|
21
|
-
pytz = "^2025.
|
21
|
+
pytz = "^2025.2"
|
22
22
|
|
23
23
|
[tool.poetry.group.dev.dependencies]
|
24
|
-
pytest = "^8.3.
|
24
|
+
pytest = "^8.3.5"
|
25
25
|
pytest-cov = "^6.0.0"
|
26
26
|
deptry = "^0.23.0"
|
27
27
|
mypy = "^1.15.0"
|
28
|
-
pre-commit = "^4.
|
29
|
-
tox = "^4.24.
|
28
|
+
pre-commit = "^4.2.0"
|
29
|
+
tox = "^4.24.2"
|
30
30
|
ipykernel = "^6.29.5"
|
31
|
-
types-pytz = "^2025.1.0.
|
32
|
-
types-requests = "^2.32.0.
|
31
|
+
types-pytz = "^2025.1.0.20250318"
|
32
|
+
types-requests = "^2.32.0.20250306"
|
33
33
|
|
34
34
|
[tool.poetry.group.docs.dependencies]
|
35
35
|
mkdocs = "^1.6.1"
|
36
|
-
mkdocs-material = "^9.6.
|
37
|
-
mkdocstrings = {extras = ["python"], version = "^0.
|
36
|
+
mkdocs-material = "^9.6.9"
|
37
|
+
mkdocstrings = {extras = ["python"], version = "^0.29.0"}
|
38
38
|
|
39
39
|
[build-system]
|
40
|
-
requires = ["poetry-core>=2.
|
40
|
+
requires = ["poetry-core>=2.1.1"]
|
41
41
|
build-backend = "poetry.core.masonry.api"
|
42
42
|
|
43
43
|
[tool.black]
|
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
|