meteocatpy 0.0.8 → 0.0.10
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.
- package/CHANGELOG.md +19 -0
- package/meteocatpy/variables.py +6 -3
- package/meteocatpy/version.py +1 -1
- package/package.json +1 -1
- package/poetry.lock +151 -151
- package/pyproject.toml +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
## [0.0.10](https://github.com/figorr/meteocatpy/compare/v0.0.9...v0.0.10) (2024-12-10)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* 0.0.10 ([93301e8](https://github.com/figorr/meteocatpy/commit/93301e82667ec85c79966da8a2b637c4d85e1b6a))
|
|
7
|
+
* 0.0.11 ([4e1d638](https://github.com/figorr/meteocatpy/commit/4e1d6387200fb6cde2d06c448c178b108bbb2b92))
|
|
8
|
+
* fix cache dir ([5c1d435](https://github.com/figorr/meteocatpy/commit/5c1d435f2310f3d0b33538f823efe64c0f3797b4))
|
|
9
|
+
* fix poetry lock ([25f32b1](https://github.com/figorr/meteocatpy/commit/25f32b1cd078ee60ab877d99fe444ccfce116f42))
|
|
10
|
+
* python 3.13 ([99390f4](https://github.com/figorr/meteocatpy/commit/99390f4745c803b9623255b39c29edf61dacfcf9))
|
|
11
|
+
|
|
12
|
+
## [0.0.9](https://github.com/figorr/meteocatpy/compare/v0.0.8...v0.0.9) (2024-12-09)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* 0.0.9 ([0cf6bf8](https://github.com/figorr/meteocatpy/commit/0cf6bf888c572c3477a1385a06a753fc0096fc95))
|
|
18
|
+
* fix cache dir ([3cafd2f](https://github.com/figorr/meteocatpy/commit/3cafd2fb0ec2fcdf9d94cf3adb3fcb264aabeb9e))
|
|
19
|
+
|
|
1
20
|
## [0.0.8](https://github.com/figorr/meteocatpy/compare/v0.0.7...v0.0.8) (2024-12-08)
|
|
2
21
|
|
|
3
22
|
|
package/meteocatpy/variables.py
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
import aiohttp
|
|
2
2
|
from diskcache import Cache
|
|
3
|
+
import os
|
|
3
4
|
from .const import BASE_URL, VARIABLES_URL
|
|
4
5
|
from .exceptions import BadRequestError, ForbiddenError, TooManyRequestsError, InternalServerError, UnknownAPIError
|
|
5
6
|
|
|
6
7
|
class MeteocatVariables:
|
|
7
8
|
"""Clase para interactuar con la lista de variables de la API de Meteocat."""
|
|
8
9
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
def __init__(self, api_key: str):
|
|
10
|
+
def __init__(self, api_key: str, cache_dir: str = None):
|
|
12
11
|
"""
|
|
13
12
|
Inicializa la clase MeteocatVariables.
|
|
14
13
|
|
|
@@ -21,6 +20,10 @@ class MeteocatVariables:
|
|
|
21
20
|
"X-Api-Key": self.api_key,
|
|
22
21
|
}
|
|
23
22
|
|
|
23
|
+
# Configurar la ruta de caché
|
|
24
|
+
self._cache_dir = cache_dir or ".meteocat_cache"
|
|
25
|
+
self._cache = Cache(self._cache_dir)
|
|
26
|
+
|
|
24
27
|
async def get_variables(self, force_update=False):
|
|
25
28
|
"""
|
|
26
29
|
Obtiene la lista de variables desde la API de Meteocat. Usa la caché si está disponible.
|
package/meteocatpy/version.py
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
# version.py
|
|
2
|
-
__version__ = "0.0.
|
|
2
|
+
__version__ = "0.0.11"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "meteocatpy",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.10",
|
|
4
4
|
"description": "[](https://opensource.org/licenses/Apache-2.0)\r [](https://pypi.org/project/meteocatpy)\r [](https://gitlab.com/figorr/meteocatpy/commits/master)",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"directories": {
|
package/poetry.lock
CHANGED
|
@@ -24,87 +24,87 @@ files = [
|
|
|
24
24
|
|
|
25
25
|
[[package]]
|
|
26
26
|
name = "aiohttp"
|
|
27
|
-
version = "3.11.
|
|
27
|
+
version = "3.11.10"
|
|
28
28
|
description = "Async http client/server framework (asyncio)"
|
|
29
29
|
optional = false
|
|
30
30
|
python-versions = ">=3.9"
|
|
31
31
|
files = [
|
|
32
|
-
{file = "aiohttp-3.11.
|
|
33
|
-
{file = "aiohttp-3.11.
|
|
34
|
-
{file = "aiohttp-3.11.
|
|
35
|
-
{file = "aiohttp-3.11.
|
|
36
|
-
{file = "aiohttp-3.11.
|
|
37
|
-
{file = "aiohttp-3.11.
|
|
38
|
-
{file = "aiohttp-3.11.
|
|
39
|
-
{file = "aiohttp-3.11.
|
|
40
|
-
{file = "aiohttp-3.11.
|
|
41
|
-
{file = "aiohttp-3.11.
|
|
42
|
-
{file = "aiohttp-3.11.
|
|
43
|
-
{file = "aiohttp-3.11.
|
|
44
|
-
{file = "aiohttp-3.11.
|
|
45
|
-
{file = "aiohttp-3.11.
|
|
46
|
-
{file = "aiohttp-3.11.
|
|
47
|
-
{file = "aiohttp-3.11.
|
|
48
|
-
{file = "aiohttp-3.11.
|
|
49
|
-
{file = "aiohttp-3.11.
|
|
50
|
-
{file = "aiohttp-3.11.
|
|
51
|
-
{file = "aiohttp-3.11.
|
|
52
|
-
{file = "aiohttp-3.11.
|
|
53
|
-
{file = "aiohttp-3.11.
|
|
54
|
-
{file = "aiohttp-3.11.
|
|
55
|
-
{file = "aiohttp-3.11.
|
|
56
|
-
{file = "aiohttp-3.11.
|
|
57
|
-
{file = "aiohttp-3.11.
|
|
58
|
-
{file = "aiohttp-3.11.
|
|
59
|
-
{file = "aiohttp-3.11.
|
|
60
|
-
{file = "aiohttp-3.11.
|
|
61
|
-
{file = "aiohttp-3.11.
|
|
62
|
-
{file = "aiohttp-3.11.
|
|
63
|
-
{file = "aiohttp-3.11.
|
|
64
|
-
{file = "aiohttp-3.11.
|
|
65
|
-
{file = "aiohttp-3.11.
|
|
66
|
-
{file = "aiohttp-3.11.
|
|
67
|
-
{file = "aiohttp-3.11.
|
|
68
|
-
{file = "aiohttp-3.11.
|
|
69
|
-
{file = "aiohttp-3.11.
|
|
70
|
-
{file = "aiohttp-3.11.
|
|
71
|
-
{file = "aiohttp-3.11.
|
|
72
|
-
{file = "aiohttp-3.11.
|
|
73
|
-
{file = "aiohttp-3.11.
|
|
74
|
-
{file = "aiohttp-3.11.
|
|
75
|
-
{file = "aiohttp-3.11.
|
|
76
|
-
{file = "aiohttp-3.11.
|
|
77
|
-
{file = "aiohttp-3.11.
|
|
78
|
-
{file = "aiohttp-3.11.
|
|
79
|
-
{file = "aiohttp-3.11.
|
|
80
|
-
{file = "aiohttp-3.11.
|
|
81
|
-
{file = "aiohttp-3.11.
|
|
82
|
-
{file = "aiohttp-3.11.
|
|
83
|
-
{file = "aiohttp-3.11.
|
|
84
|
-
{file = "aiohttp-3.11.
|
|
85
|
-
{file = "aiohttp-3.11.
|
|
86
|
-
{file = "aiohttp-3.11.
|
|
87
|
-
{file = "aiohttp-3.11.
|
|
88
|
-
{file = "aiohttp-3.11.
|
|
89
|
-
{file = "aiohttp-3.11.
|
|
90
|
-
{file = "aiohttp-3.11.
|
|
91
|
-
{file = "aiohttp-3.11.
|
|
92
|
-
{file = "aiohttp-3.11.
|
|
93
|
-
{file = "aiohttp-3.11.
|
|
94
|
-
{file = "aiohttp-3.11.
|
|
95
|
-
{file = "aiohttp-3.11.
|
|
96
|
-
{file = "aiohttp-3.11.
|
|
97
|
-
{file = "aiohttp-3.11.
|
|
98
|
-
{file = "aiohttp-3.11.
|
|
99
|
-
{file = "aiohttp-3.11.
|
|
100
|
-
{file = "aiohttp-3.11.
|
|
101
|
-
{file = "aiohttp-3.11.
|
|
102
|
-
{file = "aiohttp-3.11.
|
|
103
|
-
{file = "aiohttp-3.11.
|
|
104
|
-
{file = "aiohttp-3.11.
|
|
105
|
-
{file = "aiohttp-3.11.
|
|
106
|
-
{file = "aiohttp-3.11.
|
|
107
|
-
{file = "aiohttp-3.11.
|
|
32
|
+
{file = "aiohttp-3.11.10-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cbad88a61fa743c5d283ad501b01c153820734118b65aee2bd7dbb735475ce0d"},
|
|
33
|
+
{file = "aiohttp-3.11.10-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:80886dac673ceaef499de2f393fc80bb4481a129e6cb29e624a12e3296cc088f"},
|
|
34
|
+
{file = "aiohttp-3.11.10-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:61b9bae80ed1f338c42f57c16918853dc51775fb5cb61da70d590de14d8b5fb4"},
|
|
35
|
+
{file = "aiohttp-3.11.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9e2e576caec5c6a6b93f41626c9c02fc87cd91538b81a3670b2e04452a63def6"},
|
|
36
|
+
{file = "aiohttp-3.11.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:02c13415b5732fb6ee7ff64583a5e6ed1c57aa68f17d2bda79c04888dfdc2769"},
|
|
37
|
+
{file = "aiohttp-3.11.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4cfce37f31f20800a6a6620ce2cdd6737b82e42e06e6e9bd1b36f546feb3c44f"},
|
|
38
|
+
{file = "aiohttp-3.11.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3bbbfff4c679c64e6e23cb213f57cc2c9165c9a65d63717108a644eb5a7398df"},
|
|
39
|
+
{file = "aiohttp-3.11.10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:49c7dbbc1a559ae14fc48387a115b7d4bbc84b4a2c3b9299c31696953c2a5219"},
|
|
40
|
+
{file = "aiohttp-3.11.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:68386d78743e6570f054fe7949d6cb37ef2b672b4d3405ce91fafa996f7d9b4d"},
|
|
41
|
+
{file = "aiohttp-3.11.10-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:9ef405356ba989fb57f84cac66f7b0260772836191ccefbb987f414bcd2979d9"},
|
|
42
|
+
{file = "aiohttp-3.11.10-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:5d6958671b296febe7f5f859bea581a21c1d05430d1bbdcf2b393599b1cdce77"},
|
|
43
|
+
{file = "aiohttp-3.11.10-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:99b7920e7165be5a9e9a3a7f1b680f06f68ff0d0328ff4079e5163990d046767"},
|
|
44
|
+
{file = "aiohttp-3.11.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:0dc49f42422163efb7e6f1df2636fe3db72713f6cd94688e339dbe33fe06d61d"},
|
|
45
|
+
{file = "aiohttp-3.11.10-cp310-cp310-win32.whl", hash = "sha256:40d1c7a7f750b5648642586ba7206999650208dbe5afbcc5284bcec6579c9b91"},
|
|
46
|
+
{file = "aiohttp-3.11.10-cp310-cp310-win_amd64.whl", hash = "sha256:68ff6f48b51bd78ea92b31079817aff539f6c8fc80b6b8d6ca347d7c02384e33"},
|
|
47
|
+
{file = "aiohttp-3.11.10-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:77c4aa15a89847b9891abf97f3d4048f3c2d667e00f8a623c89ad2dccee6771b"},
|
|
48
|
+
{file = "aiohttp-3.11.10-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:909af95a72cedbefe5596f0bdf3055740f96c1a4baa0dd11fd74ca4de0b4e3f1"},
|
|
49
|
+
{file = "aiohttp-3.11.10-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:386fbe79863eb564e9f3615b959e28b222259da0c48fd1be5929ac838bc65683"},
|
|
50
|
+
{file = "aiohttp-3.11.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3de34936eb1a647aa919655ff8d38b618e9f6b7f250cc19a57a4bf7fd2062b6d"},
|
|
51
|
+
{file = "aiohttp-3.11.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0c9527819b29cd2b9f52033e7fb9ff08073df49b4799c89cb5754624ecd98299"},
|
|
52
|
+
{file = "aiohttp-3.11.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65a96e3e03300b41f261bbfd40dfdbf1c301e87eab7cd61c054b1f2e7c89b9e8"},
|
|
53
|
+
{file = "aiohttp-3.11.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:98f5635f7b74bcd4f6f72fcd85bea2154b323a9f05226a80bc7398d0c90763b0"},
|
|
54
|
+
{file = "aiohttp-3.11.10-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:03b6002e20938fc6ee0918c81d9e776bebccc84690e2b03ed132331cca065ee5"},
|
|
55
|
+
{file = "aiohttp-3.11.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:6362cc6c23c08d18ddbf0e8c4d5159b5df74fea1a5278ff4f2c79aed3f4e9f46"},
|
|
56
|
+
{file = "aiohttp-3.11.10-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:3691ed7726fef54e928fe26344d930c0c8575bc968c3e239c2e1a04bd8cf7838"},
|
|
57
|
+
{file = "aiohttp-3.11.10-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:31d5093d3acd02b31c649d3a69bb072d539d4c7659b87caa4f6d2bcf57c2fa2b"},
|
|
58
|
+
{file = "aiohttp-3.11.10-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:8b3cf2dc0f0690a33f2d2b2cb15db87a65f1c609f53c37e226f84edb08d10f52"},
|
|
59
|
+
{file = "aiohttp-3.11.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:fbbaea811a2bba171197b08eea288b9402faa2bab2ba0858eecdd0a4105753a3"},
|
|
60
|
+
{file = "aiohttp-3.11.10-cp311-cp311-win32.whl", hash = "sha256:4b2c7ac59c5698a7a8207ba72d9e9c15b0fc484a560be0788b31312c2c5504e4"},
|
|
61
|
+
{file = "aiohttp-3.11.10-cp311-cp311-win_amd64.whl", hash = "sha256:974d3a2cce5fcfa32f06b13ccc8f20c6ad9c51802bb7f829eae8a1845c4019ec"},
|
|
62
|
+
{file = "aiohttp-3.11.10-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:b78f053a7ecfc35f0451d961dacdc671f4bcbc2f58241a7c820e9d82559844cf"},
|
|
63
|
+
{file = "aiohttp-3.11.10-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:ab7485222db0959a87fbe8125e233b5a6f01f4400785b36e8a7878170d8c3138"},
|
|
64
|
+
{file = "aiohttp-3.11.10-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:cf14627232dfa8730453752e9cdc210966490992234d77ff90bc8dc0dce361d5"},
|
|
65
|
+
{file = "aiohttp-3.11.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:076bc454a7e6fd646bc82ea7f98296be0b1219b5e3ef8a488afbdd8e81fbac50"},
|
|
66
|
+
{file = "aiohttp-3.11.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:482cafb7dc886bebeb6c9ba7925e03591a62ab34298ee70d3dd47ba966370d2c"},
|
|
67
|
+
{file = "aiohttp-3.11.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bf3d1a519a324af764a46da4115bdbd566b3c73fb793ffb97f9111dbc684fc4d"},
|
|
68
|
+
{file = "aiohttp-3.11.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:24213ba85a419103e641e55c27dc7ff03536c4873470c2478cce3311ba1eee7b"},
|
|
69
|
+
{file = "aiohttp-3.11.10-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b99acd4730ad1b196bfb03ee0803e4adac371ae8efa7e1cbc820200fc5ded109"},
|
|
70
|
+
{file = "aiohttp-3.11.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:14cdb5a9570be5a04eec2ace174a48ae85833c2aadc86de68f55541f66ce42ab"},
|
|
71
|
+
{file = "aiohttp-3.11.10-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:7e97d622cb083e86f18317282084bc9fbf261801b0192c34fe4b1febd9f7ae69"},
|
|
72
|
+
{file = "aiohttp-3.11.10-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:012f176945af138abc10c4a48743327a92b4ca9adc7a0e078077cdb5dbab7be0"},
|
|
73
|
+
{file = "aiohttp-3.11.10-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:44224d815853962f48fe124748227773acd9686eba6dc102578defd6fc99e8d9"},
|
|
74
|
+
{file = "aiohttp-3.11.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c87bf31b7fdab94ae3adbe4a48e711bfc5f89d21cf4c197e75561def39e223bc"},
|
|
75
|
+
{file = "aiohttp-3.11.10-cp312-cp312-win32.whl", hash = "sha256:06a8e2ee1cbac16fe61e51e0b0c269400e781b13bcfc33f5425912391a542985"},
|
|
76
|
+
{file = "aiohttp-3.11.10-cp312-cp312-win_amd64.whl", hash = "sha256:be2b516f56ea883a3e14dda17059716593526e10fb6303189aaf5503937db408"},
|
|
77
|
+
{file = "aiohttp-3.11.10-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8cc5203b817b748adccb07f36390feb730b1bc5f56683445bfe924fc270b8816"},
|
|
78
|
+
{file = "aiohttp-3.11.10-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:5ef359ebc6949e3a34c65ce20230fae70920714367c63afd80ea0c2702902ccf"},
|
|
79
|
+
{file = "aiohttp-3.11.10-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:9bca390cb247dbfaec3c664326e034ef23882c3f3bfa5fbf0b56cad0320aaca5"},
|
|
80
|
+
{file = "aiohttp-3.11.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:811f23b3351ca532af598405db1093f018edf81368e689d1b508c57dcc6b6a32"},
|
|
81
|
+
{file = "aiohttp-3.11.10-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ddf5f7d877615f6a1e75971bfa5ac88609af3b74796ff3e06879e8422729fd01"},
|
|
82
|
+
{file = "aiohttp-3.11.10-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6ab29b8a0beb6f8eaf1e5049252cfe74adbaafd39ba91e10f18caeb0e99ffb34"},
|
|
83
|
+
{file = "aiohttp-3.11.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c49a76c1038c2dd116fa443eba26bbb8e6c37e924e2513574856de3b6516be99"},
|
|
84
|
+
{file = "aiohttp-3.11.10-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7f3dc0e330575f5b134918976a645e79adf333c0a1439dcf6899a80776c9ab39"},
|
|
85
|
+
{file = "aiohttp-3.11.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:efb15a17a12497685304b2d976cb4939e55137df7b09fa53f1b6a023f01fcb4e"},
|
|
86
|
+
{file = "aiohttp-3.11.10-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:db1d0b28fcb7f1d35600150c3e4b490775251dea70f894bf15c678fdd84eda6a"},
|
|
87
|
+
{file = "aiohttp-3.11.10-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:15fccaf62a4889527539ecb86834084ecf6e9ea70588efde86e8bc775e0e7542"},
|
|
88
|
+
{file = "aiohttp-3.11.10-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:593c114a2221444f30749cc5e5f4012488f56bd14de2af44fe23e1e9894a9c60"},
|
|
89
|
+
{file = "aiohttp-3.11.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:7852bbcb4d0d2f0c4d583f40c3bc750ee033265d80598d0f9cb6f372baa6b836"},
|
|
90
|
+
{file = "aiohttp-3.11.10-cp313-cp313-win32.whl", hash = "sha256:65e55ca7debae8faaffee0ebb4b47a51b4075f01e9b641c31e554fd376595c6c"},
|
|
91
|
+
{file = "aiohttp-3.11.10-cp313-cp313-win_amd64.whl", hash = "sha256:beb39a6d60a709ae3fb3516a1581777e7e8b76933bb88c8f4420d875bb0267c6"},
|
|
92
|
+
{file = "aiohttp-3.11.10-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:0580f2e12de2138f34debcd5d88894786453a76e98febaf3e8fe5db62d01c9bf"},
|
|
93
|
+
{file = "aiohttp-3.11.10-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a55d2ad345684e7c3dd2c20d2f9572e9e1d5446d57200ff630e6ede7612e307f"},
|
|
94
|
+
{file = "aiohttp-3.11.10-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:04814571cb72d65a6899db6099e377ed00710bf2e3eafd2985166f2918beaf59"},
|
|
95
|
+
{file = "aiohttp-3.11.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e44a9a3c053b90c6f09b1bb4edd880959f5328cf63052503f892c41ea786d99f"},
|
|
96
|
+
{file = "aiohttp-3.11.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:502a1464ccbc800b4b1995b302efaf426e8763fadf185e933c2931df7db9a199"},
|
|
97
|
+
{file = "aiohttp-3.11.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:613e5169f8ae77b1933e42e418a95931fb4867b2991fc311430b15901ed67079"},
|
|
98
|
+
{file = "aiohttp-3.11.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4cca22a61b7fe45da8fc73c3443150c3608750bbe27641fc7558ec5117b27fdf"},
|
|
99
|
+
{file = "aiohttp-3.11.10-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:86a5dfcc39309470bd7b68c591d84056d195428d5d2e0b5ccadfbaf25b026ebc"},
|
|
100
|
+
{file = "aiohttp-3.11.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:77ae58586930ee6b2b6f696c82cf8e78c8016ec4795c53e36718365f6959dc82"},
|
|
101
|
+
{file = "aiohttp-3.11.10-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:78153314f26d5abef3239b4a9af20c229c6f3ecb97d4c1c01b22c4f87669820c"},
|
|
102
|
+
{file = "aiohttp-3.11.10-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:98283b94cc0e11c73acaf1c9698dea80c830ca476492c0fe2622bd931f34b487"},
|
|
103
|
+
{file = "aiohttp-3.11.10-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:53bf2097e05c2accc166c142a2090e4c6fd86581bde3fd9b2d3f9e93dda66ac1"},
|
|
104
|
+
{file = "aiohttp-3.11.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:c5532f0441fc09c119e1dca18fbc0687e64fbeb45aa4d6a87211ceaee50a74c4"},
|
|
105
|
+
{file = "aiohttp-3.11.10-cp39-cp39-win32.whl", hash = "sha256:47ad15a65fb41c570cd0ad9a9ff8012489e68176e7207ec7b82a0940dddfd8be"},
|
|
106
|
+
{file = "aiohttp-3.11.10-cp39-cp39-win_amd64.whl", hash = "sha256:c6b9e6d7e41656d78e37ce754813fa44b455c3d0d0dced2a047def7dc5570b74"},
|
|
107
|
+
{file = "aiohttp-3.11.10.tar.gz", hash = "sha256:b1fc6b45010a8d0ff9e88f9f2418c6fd408c99c211257334aff41597ebece42e"},
|
|
108
108
|
]
|
|
109
109
|
|
|
110
110
|
[package.dependencies]
|
|
@@ -187,13 +187,13 @@ pytest-asyncio = {version = ">=0.17.0", markers = "python_version >= \"3.7\""}
|
|
|
187
187
|
|
|
188
188
|
[[package]]
|
|
189
189
|
name = "astroid"
|
|
190
|
-
version = "3.3.
|
|
190
|
+
version = "3.3.6"
|
|
191
191
|
description = "An abstract syntax tree for Python with inference support."
|
|
192
192
|
optional = false
|
|
193
193
|
python-versions = ">=3.9.0"
|
|
194
194
|
files = [
|
|
195
|
-
{file = "astroid-3.3.
|
|
196
|
-
{file = "astroid-3.3.
|
|
195
|
+
{file = "astroid-3.3.6-py3-none-any.whl", hash = "sha256:db676dc4f3ae6bfe31cda227dc60e03438378d7a896aec57422c95634e8d722f"},
|
|
196
|
+
{file = "astroid-3.3.6.tar.gz", hash = "sha256:6aaea045f938c735ead292204afdb977a36e989522b7833ef6fea94de743f442"},
|
|
197
197
|
]
|
|
198
198
|
|
|
199
199
|
[[package]]
|
|
@@ -578,73 +578,73 @@ files = [
|
|
|
578
578
|
|
|
579
579
|
[[package]]
|
|
580
580
|
name = "coverage"
|
|
581
|
-
version = "7.6.
|
|
581
|
+
version = "7.6.9"
|
|
582
582
|
description = "Code coverage measurement for Python"
|
|
583
583
|
optional = false
|
|
584
584
|
python-versions = ">=3.9"
|
|
585
585
|
files = [
|
|
586
|
-
{file = "coverage-7.6.
|
|
587
|
-
{file = "coverage-7.6.
|
|
588
|
-
{file = "coverage-7.6.
|
|
589
|
-
{file = "coverage-7.6.
|
|
590
|
-
{file = "coverage-7.6.
|
|
591
|
-
{file = "coverage-7.6.
|
|
592
|
-
{file = "coverage-7.6.
|
|
593
|
-
{file = "coverage-7.6.
|
|
594
|
-
{file = "coverage-7.6.
|
|
595
|
-
{file = "coverage-7.6.
|
|
596
|
-
{file = "coverage-7.6.
|
|
597
|
-
{file = "coverage-7.6.
|
|
598
|
-
{file = "coverage-7.6.
|
|
599
|
-
{file = "coverage-7.6.
|
|
600
|
-
{file = "coverage-7.6.
|
|
601
|
-
{file = "coverage-7.6.
|
|
602
|
-
{file = "coverage-7.6.
|
|
603
|
-
{file = "coverage-7.6.
|
|
604
|
-
{file = "coverage-7.6.
|
|
605
|
-
{file = "coverage-7.6.
|
|
606
|
-
{file = "coverage-7.6.
|
|
607
|
-
{file = "coverage-7.6.
|
|
608
|
-
{file = "coverage-7.6.
|
|
609
|
-
{file = "coverage-7.6.
|
|
610
|
-
{file = "coverage-7.6.
|
|
611
|
-
{file = "coverage-7.6.
|
|
612
|
-
{file = "coverage-7.6.
|
|
613
|
-
{file = "coverage-7.6.
|
|
614
|
-
{file = "coverage-7.6.
|
|
615
|
-
{file = "coverage-7.6.
|
|
616
|
-
{file = "coverage-7.6.
|
|
617
|
-
{file = "coverage-7.6.
|
|
618
|
-
{file = "coverage-7.6.
|
|
619
|
-
{file = "coverage-7.6.
|
|
620
|
-
{file = "coverage-7.6.
|
|
621
|
-
{file = "coverage-7.6.
|
|
622
|
-
{file = "coverage-7.6.
|
|
623
|
-
{file = "coverage-7.6.
|
|
624
|
-
{file = "coverage-7.6.
|
|
625
|
-
{file = "coverage-7.6.
|
|
626
|
-
{file = "coverage-7.6.
|
|
627
|
-
{file = "coverage-7.6.
|
|
628
|
-
{file = "coverage-7.6.
|
|
629
|
-
{file = "coverage-7.6.
|
|
630
|
-
{file = "coverage-7.6.
|
|
631
|
-
{file = "coverage-7.6.
|
|
632
|
-
{file = "coverage-7.6.
|
|
633
|
-
{file = "coverage-7.6.
|
|
634
|
-
{file = "coverage-7.6.
|
|
635
|
-
{file = "coverage-7.6.
|
|
636
|
-
{file = "coverage-7.6.
|
|
637
|
-
{file = "coverage-7.6.
|
|
638
|
-
{file = "coverage-7.6.
|
|
639
|
-
{file = "coverage-7.6.
|
|
640
|
-
{file = "coverage-7.6.
|
|
641
|
-
{file = "coverage-7.6.
|
|
642
|
-
{file = "coverage-7.6.
|
|
643
|
-
{file = "coverage-7.6.
|
|
644
|
-
{file = "coverage-7.6.
|
|
645
|
-
{file = "coverage-7.6.
|
|
646
|
-
{file = "coverage-7.6.
|
|
647
|
-
{file = "coverage-7.6.
|
|
586
|
+
{file = "coverage-7.6.9-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:85d9636f72e8991a1706b2b55b06c27545448baf9f6dbf51c4004609aacd7dcb"},
|
|
587
|
+
{file = "coverage-7.6.9-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:608a7fd78c67bee8936378299a6cb9f5149bb80238c7a566fc3e6717a4e68710"},
|
|
588
|
+
{file = "coverage-7.6.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:96d636c77af18b5cb664ddf12dab9b15a0cfe9c0bde715da38698c8cea748bfa"},
|
|
589
|
+
{file = "coverage-7.6.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d75cded8a3cff93da9edc31446872d2997e327921d8eed86641efafd350e1df1"},
|
|
590
|
+
{file = "coverage-7.6.9-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f7b15f589593110ae767ce997775d645b47e5cbbf54fd322f8ebea6277466cec"},
|
|
591
|
+
{file = "coverage-7.6.9-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:44349150f6811b44b25574839b39ae35291f6496eb795b7366fef3bd3cf112d3"},
|
|
592
|
+
{file = "coverage-7.6.9-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:d891c136b5b310d0e702e186d70cd16d1119ea8927347045124cb286b29297e5"},
|
|
593
|
+
{file = "coverage-7.6.9-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:db1dab894cc139f67822a92910466531de5ea6034ddfd2b11c0d4c6257168073"},
|
|
594
|
+
{file = "coverage-7.6.9-cp310-cp310-win32.whl", hash = "sha256:41ff7b0da5af71a51b53f501a3bac65fb0ec311ebed1632e58fc6107f03b9198"},
|
|
595
|
+
{file = "coverage-7.6.9-cp310-cp310-win_amd64.whl", hash = "sha256:35371f8438028fdccfaf3570b31d98e8d9eda8bb1d6ab9473f5a390969e98717"},
|
|
596
|
+
{file = "coverage-7.6.9-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:932fc826442132dde42ee52cf66d941f581c685a6313feebed358411238f60f9"},
|
|
597
|
+
{file = "coverage-7.6.9-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:085161be5f3b30fd9b3e7b9a8c301f935c8313dcf928a07b116324abea2c1c2c"},
|
|
598
|
+
{file = "coverage-7.6.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ccc660a77e1c2bf24ddbce969af9447a9474790160cfb23de6be4fa88e3951c7"},
|
|
599
|
+
{file = "coverage-7.6.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c69e42c892c018cd3c8d90da61d845f50a8243062b19d228189b0224150018a9"},
|
|
600
|
+
{file = "coverage-7.6.9-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0824a28ec542a0be22f60c6ac36d679e0e262e5353203bea81d44ee81fe9c6d4"},
|
|
601
|
+
{file = "coverage-7.6.9-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:4401ae5fc52ad8d26d2a5d8a7428b0f0c72431683f8e63e42e70606374c311a1"},
|
|
602
|
+
{file = "coverage-7.6.9-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:98caba4476a6c8d59ec1eb00c7dd862ba9beca34085642d46ed503cc2d440d4b"},
|
|
603
|
+
{file = "coverage-7.6.9-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:ee5defd1733fd6ec08b168bd4f5387d5b322f45ca9e0e6c817ea6c4cd36313e3"},
|
|
604
|
+
{file = "coverage-7.6.9-cp311-cp311-win32.whl", hash = "sha256:f2d1ec60d6d256bdf298cb86b78dd715980828f50c46701abc3b0a2b3f8a0dc0"},
|
|
605
|
+
{file = "coverage-7.6.9-cp311-cp311-win_amd64.whl", hash = "sha256:0d59fd927b1f04de57a2ba0137166d31c1a6dd9e764ad4af552912d70428c92b"},
|
|
606
|
+
{file = "coverage-7.6.9-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:99e266ae0b5d15f1ca8d278a668df6f51cc4b854513daab5cae695ed7b721cf8"},
|
|
607
|
+
{file = "coverage-7.6.9-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9901d36492009a0a9b94b20e52ebfc8453bf49bb2b27bca2c9706f8b4f5a554a"},
|
|
608
|
+
{file = "coverage-7.6.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:abd3e72dd5b97e3af4246cdada7738ef0e608168de952b837b8dd7e90341f015"},
|
|
609
|
+
{file = "coverage-7.6.9-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ff74026a461eb0660366fb01c650c1d00f833a086b336bdad7ab00cc952072b3"},
|
|
610
|
+
{file = "coverage-7.6.9-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65dad5a248823a4996724a88eb51d4b31587aa7aa428562dbe459c684e5787ae"},
|
|
611
|
+
{file = "coverage-7.6.9-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:22be16571504c9ccea919fcedb459d5ab20d41172056206eb2994e2ff06118a4"},
|
|
612
|
+
{file = "coverage-7.6.9-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:0f957943bc718b87144ecaee70762bc2bc3f1a7a53c7b861103546d3a403f0a6"},
|
|
613
|
+
{file = "coverage-7.6.9-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0ae1387db4aecb1f485fb70a6c0148c6cdaebb6038f1d40089b1fc84a5db556f"},
|
|
614
|
+
{file = "coverage-7.6.9-cp312-cp312-win32.whl", hash = "sha256:1a330812d9cc7ac2182586f6d41b4d0fadf9be9049f350e0efb275c8ee8eb692"},
|
|
615
|
+
{file = "coverage-7.6.9-cp312-cp312-win_amd64.whl", hash = "sha256:b12c6b18269ca471eedd41c1b6a1065b2f7827508edb9a7ed5555e9a56dcfc97"},
|
|
616
|
+
{file = "coverage-7.6.9-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:899b8cd4781c400454f2f64f7776a5d87bbd7b3e7f7bda0cb18f857bb1334664"},
|
|
617
|
+
{file = "coverage-7.6.9-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:61f70dc68bd36810972e55bbbe83674ea073dd1dcc121040a08cdf3416c5349c"},
|
|
618
|
+
{file = "coverage-7.6.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8a289d23d4c46f1a82d5db4abeb40b9b5be91731ee19a379d15790e53031c014"},
|
|
619
|
+
{file = "coverage-7.6.9-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7e216d8044a356fc0337c7a2a0536d6de07888d7bcda76febcb8adc50bdbbd00"},
|
|
620
|
+
{file = "coverage-7.6.9-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3c026eb44f744acaa2bda7493dad903aa5bf5fc4f2554293a798d5606710055d"},
|
|
621
|
+
{file = "coverage-7.6.9-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:e77363e8425325384f9d49272c54045bbed2f478e9dd698dbc65dbc37860eb0a"},
|
|
622
|
+
{file = "coverage-7.6.9-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:777abfab476cf83b5177b84d7486497e034eb9eaea0d746ce0c1268c71652077"},
|
|
623
|
+
{file = "coverage-7.6.9-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:447af20e25fdbe16f26e84eb714ba21d98868705cb138252d28bc400381f6ffb"},
|
|
624
|
+
{file = "coverage-7.6.9-cp313-cp313-win32.whl", hash = "sha256:d872ec5aeb086cbea771c573600d47944eea2dcba8be5f3ee649bfe3cb8dc9ba"},
|
|
625
|
+
{file = "coverage-7.6.9-cp313-cp313-win_amd64.whl", hash = "sha256:fd1213c86e48dfdc5a0cc676551db467495a95a662d2396ecd58e719191446e1"},
|
|
626
|
+
{file = "coverage-7.6.9-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:ba9e7484d286cd5a43744e5f47b0b3fb457865baf07bafc6bee91896364e1419"},
|
|
627
|
+
{file = "coverage-7.6.9-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:e5ea1cf0872ee455c03e5674b5bca5e3e68e159379c1af0903e89f5eba9ccc3a"},
|
|
628
|
+
{file = "coverage-7.6.9-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2d10e07aa2b91835d6abec555ec8b2733347956991901eea6ffac295f83a30e4"},
|
|
629
|
+
{file = "coverage-7.6.9-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:13a9e2d3ee855db3dd6ea1ba5203316a1b1fd8eaeffc37c5b54987e61e4194ae"},
|
|
630
|
+
{file = "coverage-7.6.9-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c38bf15a40ccf5619fa2fe8f26106c7e8e080d7760aeccb3722664c8656b030"},
|
|
631
|
+
{file = "coverage-7.6.9-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:d5275455b3e4627c8e7154feaf7ee0743c2e7af82f6e3b561967b1cca755a0be"},
|
|
632
|
+
{file = "coverage-7.6.9-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:8f8770dfc6e2c6a2d4569f411015c8d751c980d17a14b0530da2d7f27ffdd88e"},
|
|
633
|
+
{file = "coverage-7.6.9-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:8d2dfa71665a29b153a9681edb1c8d9c1ea50dfc2375fb4dac99ea7e21a0bcd9"},
|
|
634
|
+
{file = "coverage-7.6.9-cp313-cp313t-win32.whl", hash = "sha256:5e6b86b5847a016d0fbd31ffe1001b63355ed309651851295315031ea7eb5a9b"},
|
|
635
|
+
{file = "coverage-7.6.9-cp313-cp313t-win_amd64.whl", hash = "sha256:97ddc94d46088304772d21b060041c97fc16bdda13c6c7f9d8fcd8d5ae0d8611"},
|
|
636
|
+
{file = "coverage-7.6.9-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:adb697c0bd35100dc690de83154627fbab1f4f3c0386df266dded865fc50a902"},
|
|
637
|
+
{file = "coverage-7.6.9-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:be57b6d56e49c2739cdf776839a92330e933dd5e5d929966fbbd380c77f060be"},
|
|
638
|
+
{file = "coverage-7.6.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f1592791f8204ae9166de22ba7e6705fa4ebd02936c09436a1bb85aabca3e599"},
|
|
639
|
+
{file = "coverage-7.6.9-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4e12ae8cc979cf83d258acb5e1f1cf2f3f83524d1564a49d20b8bec14b637f08"},
|
|
640
|
+
{file = "coverage-7.6.9-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bb5555cff66c4d3d6213a296b360f9e1a8e323e74e0426b6c10ed7f4d021e464"},
|
|
641
|
+
{file = "coverage-7.6.9-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:b9389a429e0e5142e69d5bf4a435dd688c14478a19bb901735cdf75e57b13845"},
|
|
642
|
+
{file = "coverage-7.6.9-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:592ac539812e9b46046620341498caf09ca21023c41c893e1eb9dbda00a70cbf"},
|
|
643
|
+
{file = "coverage-7.6.9-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:a27801adef24cc30871da98a105f77995e13a25a505a0161911f6aafbd66e678"},
|
|
644
|
+
{file = "coverage-7.6.9-cp39-cp39-win32.whl", hash = "sha256:8e3c3e38930cfb729cb8137d7f055e5a473ddaf1217966aa6238c88bd9fd50e6"},
|
|
645
|
+
{file = "coverage-7.6.9-cp39-cp39-win_amd64.whl", hash = "sha256:e28bf44afa2b187cc9f41749138a64435bf340adfcacb5b2290c070ce99839d4"},
|
|
646
|
+
{file = "coverage-7.6.9-pp39.pp310-none-any.whl", hash = "sha256:f3ca78518bc6bc92828cd11867b121891d75cae4ea9e908d72030609b996db1b"},
|
|
647
|
+
{file = "coverage-7.6.9.tar.gz", hash = "sha256:4a8d8977b0c6ef5aeadcb644da9e69ae0dcfe66ec7f368c89c72e058bd71164d"},
|
|
648
648
|
]
|
|
649
649
|
|
|
650
650
|
[package.extras]
|
|
@@ -817,13 +817,13 @@ poetry = ["poetry"]
|
|
|
817
817
|
|
|
818
818
|
[[package]]
|
|
819
819
|
name = "eventlet"
|
|
820
|
-
version = "0.38.
|
|
820
|
+
version = "0.38.1"
|
|
821
821
|
description = "Highly concurrent networking library"
|
|
822
822
|
optional = false
|
|
823
823
|
python-versions = ">=3.7"
|
|
824
824
|
files = [
|
|
825
|
-
{file = "eventlet-0.38.
|
|
826
|
-
{file = "eventlet-0.38.
|
|
825
|
+
{file = "eventlet-0.38.1-py3-none-any.whl", hash = "sha256:428eeff656bacf6d8c9a3d92fdbfe5a607c9e3e575ea70641de175aa9f3ec67a"},
|
|
826
|
+
{file = "eventlet-0.38.1.tar.gz", hash = "sha256:ae23e3eb455facf0802df30c55da4ffbbf72e952757efa2197a1b47901255b1f"},
|
|
827
827
|
]
|
|
828
828
|
|
|
829
829
|
[package.dependencies]
|
|
@@ -3093,13 +3093,13 @@ urllib3 = ">=1.26.0"
|
|
|
3093
3093
|
|
|
3094
3094
|
[[package]]
|
|
3095
3095
|
name = "typer"
|
|
3096
|
-
version = "0.15.
|
|
3096
|
+
version = "0.15.1"
|
|
3097
3097
|
description = "Typer, build great CLIs. Easy to code. Based on Python type hints."
|
|
3098
3098
|
optional = false
|
|
3099
3099
|
python-versions = ">=3.7"
|
|
3100
3100
|
files = [
|
|
3101
|
-
{file = "typer-0.15.
|
|
3102
|
-
{file = "typer-0.15.
|
|
3101
|
+
{file = "typer-0.15.1-py3-none-any.whl", hash = "sha256:7994fb7b8155b64d3402518560648446072864beefd44aa2dc36972a5972e847"},
|
|
3102
|
+
{file = "typer-0.15.1.tar.gz", hash = "sha256:a0588c0a7fa68a1978a069818657778f86abe6ff5ea6abf472f940a08bfe4f0a"},
|
|
3103
3103
|
]
|
|
3104
3104
|
|
|
3105
3105
|
[package.dependencies]
|
|
@@ -3309,5 +3309,5 @@ type = ["pytest-mypy"]
|
|
|
3309
3309
|
|
|
3310
3310
|
[metadata]
|
|
3311
3311
|
lock-version = "2.0"
|
|
3312
|
-
python-versions = ">=3.12,<3.
|
|
3313
|
-
content-hash = "
|
|
3312
|
+
python-versions = ">=3.12,<3.14"
|
|
3313
|
+
content-hash = "6d509b52a264f5b0a35a2dd692d63c2c12cc8b866ba64f35779d1d2a6f64db2b"
|
package/pyproject.toml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "meteocatpy"
|
|
3
|
-
version = "0.0.
|
|
3
|
+
version = "0.0.11"
|
|
4
4
|
description = "Script para obtener datos meteorológicos de la API de Meteocat"
|
|
5
5
|
authors = ["figorr <jdcuartero@yahoo.es>"]
|
|
6
6
|
license = "Apache-2.0"
|
|
@@ -10,7 +10,7 @@ keywords = ['meteocatpy', 'meteocat']
|
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
[tool.poetry.dependencies]
|
|
13
|
-
python = ">=3.12,<3.
|
|
13
|
+
python = ">=3.12,<3.14"
|
|
14
14
|
requests = "^2.32.3"
|
|
15
15
|
python-dotenv = "^1.0.1"
|
|
16
16
|
simplejson = "^3.19.3"
|