pyEscoAPI 0.0.34__tar.gz → 0.0.35__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.
- {pyescoapi-0.0.34 → pyescoapi-0.0.35}/PKG-INFO +2 -2
- {pyescoapi-0.0.34 → pyescoapi-0.0.35}/pyEscoAPI/esco_api.py +1 -1
- {pyescoapi-0.0.34 → pyescoapi-0.0.35}/pyEscoAPI.egg-info/PKG-INFO +2 -2
- pyescoapi-0.0.35/pyEscoAPI.egg-info/requires.txt +1 -0
- {pyescoapi-0.0.34 → pyescoapi-0.0.35}/pyproject.toml +2 -2
- pyescoapi-0.0.34/pyEscoAPI.egg-info/requires.txt +0 -1
- {pyescoapi-0.0.34 → pyescoapi-0.0.35}/README.md +0 -0
- {pyescoapi-0.0.34 → pyescoapi-0.0.35}/pyEscoAPI/__init__.py +0 -0
- {pyescoapi-0.0.34 → pyescoapi-0.0.35}/pyEscoAPI/dataclasses.py +0 -0
- {pyescoapi-0.0.34 → pyescoapi-0.0.35}/pyEscoAPI/exception.py +0 -0
- {pyescoapi-0.0.34 → pyescoapi-0.0.35}/pyEscoAPI.egg-info/SOURCES.txt +0 -0
- {pyescoapi-0.0.34 → pyescoapi-0.0.35}/pyEscoAPI.egg-info/dependency_links.txt +0 -0
- {pyescoapi-0.0.34 → pyescoapi-0.0.35}/pyEscoAPI.egg-info/top_level.txt +0 -0
- {pyescoapi-0.0.34 → pyescoapi-0.0.35}/setup.cfg +0 -0
- {pyescoapi-0.0.34 → pyescoapi-0.0.35}/tests/test_client.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pyEscoAPI
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.35
|
|
4
4
|
Summary: Python client for Esco API (Esco bolsa)
|
|
5
5
|
Author-email: Codetria <hola@codetria.com>
|
|
6
6
|
License: MIT License
|
|
@@ -10,6 +10,6 @@ Classifier: License :: OSI Approved :: MIT License
|
|
|
10
10
|
Classifier: Operating System :: OS Independent
|
|
11
11
|
Requires-Python: >=3.11
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
|
-
Requires-Dist: requests
|
|
13
|
+
Requires-Dist: requests>=2.31.0
|
|
14
14
|
|
|
15
15
|
# Python client for Esco API (Esco bolsa)
|
|
@@ -113,7 +113,7 @@ class EscoAPI:
|
|
|
113
113
|
self.__token = ""
|
|
114
114
|
self.__esco_login()
|
|
115
115
|
|
|
116
|
-
def __new__(cls, base_url: str, username: str, password: str, client_id: str, version: APIVersion):
|
|
116
|
+
def __new__(cls, base_url: str, username: str, password: str, client_id: str, version: APIVersion, **kwargs):
|
|
117
117
|
if cls.__instance is None:
|
|
118
118
|
cls._initialized = False
|
|
119
119
|
cls.__instance = super(EscoAPI, cls).__new__(cls)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pyEscoAPI
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.35
|
|
4
4
|
Summary: Python client for Esco API (Esco bolsa)
|
|
5
5
|
Author-email: Codetria <hola@codetria.com>
|
|
6
6
|
License: MIT License
|
|
@@ -10,6 +10,6 @@ Classifier: License :: OSI Approved :: MIT License
|
|
|
10
10
|
Classifier: Operating System :: OS Independent
|
|
11
11
|
Requires-Python: >=3.11
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
|
-
Requires-Dist: requests
|
|
13
|
+
Requires-Dist: requests>=2.31.0
|
|
14
14
|
|
|
15
15
|
# Python client for Esco API (Esco bolsa)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
requests>=2.31.0
|
|
@@ -4,13 +4,13 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = 'pyEscoAPI'
|
|
7
|
-
version = "0.0.
|
|
7
|
+
version = "0.0.35"
|
|
8
8
|
license = {text = "MIT License"}
|
|
9
9
|
authors = [
|
|
10
10
|
{ name="Codetria", email="hola@codetria.com" },
|
|
11
11
|
]
|
|
12
12
|
dependencies = [
|
|
13
|
-
"requests
|
|
13
|
+
"requests>=2.31.0"
|
|
14
14
|
]
|
|
15
15
|
keywords = ["Esco", "API", "bolsa", "client", "market", "provider"]
|
|
16
16
|
description = 'Python client for Esco API (Esco bolsa)'
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
requests==2.31.0
|
|
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
|