core-https 1.1.3__tar.gz → 1.1.4__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.
- {core_https-1.1.3 → core_https-1.1.4}/PKG-INFO +1 -1
- {core_https-1.1.3 → core_https-1.1.4}/core_https/exceptions.py +15 -4
- {core_https-1.1.3 → core_https-1.1.4}/core_https.egg-info/PKG-INFO +1 -1
- {core_https-1.1.3 → core_https-1.1.4}/pyproject.toml +1 -1
- {core_https-1.1.3 → core_https-1.1.4}/LICENSE +0 -0
- {core_https-1.1.3 → core_https-1.1.4}/README.md +0 -0
- {core_https-1.1.3 → core_https-1.1.4}/core_https/__init__.py +0 -0
- {core_https-1.1.3 → core_https-1.1.4}/core_https/requesters/__init__.py +0 -0
- {core_https-1.1.3 → core_https-1.1.4}/core_https/requesters/base.py +0 -0
- {core_https-1.1.3 → core_https-1.1.4}/core_https/requesters/url_lib3.py +0 -0
- {core_https-1.1.3 → core_https-1.1.4}/core_https/utils.py +0 -0
- {core_https-1.1.3 → core_https-1.1.4}/core_https.egg-info/SOURCES.txt +0 -0
- {core_https-1.1.3 → core_https-1.1.4}/core_https.egg-info/dependency_links.txt +0 -0
- {core_https-1.1.3 → core_https-1.1.4}/core_https.egg-info/requires.txt +0 -0
- {core_https-1.1.3 → core_https-1.1.4}/core_https.egg-info/top_level.txt +0 -0
- {core_https-1.1.3 → core_https-1.1.4}/setup.cfg +0 -0
- {core_https-1.1.3 → core_https-1.1.4}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: core-https
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.4
|
|
4
4
|
Summary: This project/library contains common elements related to HTTP & API services...
|
|
5
5
|
Author-email: Alejandro Cora González <alek.cora.glez@gmail.com>
|
|
6
6
|
Maintainer: Alejandro Cora González
|
|
@@ -18,9 +18,20 @@ class InternalServerError(Exception):
|
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
|
|
21
|
-
class AuthorizationException(InternalServerError):
|
|
22
|
-
""" Exception caused for authentication (401, 403) issues """
|
|
23
|
-
|
|
24
|
-
|
|
25
21
|
class ServiceException(InternalServerError):
|
|
26
22
|
""" Exception caused for handled errors within the service """
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
class AuthenticationException(ServiceException):
|
|
26
|
+
""" Exception caused for authentication [401] issues """
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
class AuthorizationException(ServiceException):
|
|
30
|
+
""" Exception caused for authentication [403] issues """
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
class RateLimitException(ServiceException):
|
|
34
|
+
"""
|
|
35
|
+
Exception caused [429] when a client has sent too many requests
|
|
36
|
+
to a server within a given time frame.
|
|
37
|
+
"""
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: core-https
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.4
|
|
4
4
|
Summary: This project/library contains common elements related to HTTP & API services...
|
|
5
5
|
Author-email: Alejandro Cora González <alek.cora.glez@gmail.com>
|
|
6
6
|
Maintainer: Alejandro Cora González
|
|
@@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta"
|
|
|
9
9
|
[project]
|
|
10
10
|
name = "core-https"
|
|
11
11
|
description = "This project/library contains common elements related to HTTP & API services..."
|
|
12
|
-
version = "1.1.
|
|
12
|
+
version = "1.1.4"
|
|
13
13
|
|
|
14
14
|
authors = [
|
|
15
15
|
{name = "Alejandro Cora González", email = "alek.cora.glez@gmail.com"}
|
|
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
|