shield-python 0.1.3__tar.gz → 0.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.
- {shield_python-0.1.3 → shield_python-0.1.4}/PKG-INFO +1 -1
- {shield_python-0.1.3 → shield_python-0.1.4}/pyproject.toml +1 -1
- {shield_python-0.1.3 → shield_python-0.1.4}/setup.py +1 -1
- {shield_python-0.1.3 → shield_python-0.1.4}/shield/__init__.py +1 -1
- {shield_python-0.1.3 → shield_python-0.1.4}/shield/client.py +2 -2
- {shield_python-0.1.3 → shield_python-0.1.4}/shield_python.egg-info/PKG-INFO +1 -1
- {shield_python-0.1.3 → shield_python-0.1.4}/README.md +0 -0
- {shield_python-0.1.3 → shield_python-0.1.4}/setup.cfg +0 -0
- {shield_python-0.1.3 → shield_python-0.1.4}/shield/exceptions.py +0 -0
- {shield_python-0.1.3 → shield_python-0.1.4}/shield/resources/__init__.py +0 -0
- {shield_python-0.1.3 → shield_python-0.1.4}/shield/resources/events.py +0 -0
- {shield_python-0.1.3 → shield_python-0.1.4}/shield/resources/sessions.py +0 -0
- {shield_python-0.1.3 → shield_python-0.1.4}/shield/resources/verify.py +0 -0
- {shield_python-0.1.3 → shield_python-0.1.4}/shield_python.egg-info/SOURCES.txt +0 -0
- {shield_python-0.1.3 → shield_python-0.1.4}/shield_python.egg-info/dependency_links.txt +0 -0
- {shield_python-0.1.3 → shield_python-0.1.4}/shield_python.egg-info/requires.txt +0 -0
- {shield_python-0.1.3 → shield_python-0.1.4}/shield_python.egg-info/top_level.txt +0 -0
|
@@ -18,7 +18,7 @@ class Client:
|
|
|
18
18
|
|
|
19
19
|
Args:
|
|
20
20
|
api_key: Your Shield API key.
|
|
21
|
-
base_url: Base URL for the Shield API. Defaults to https://api.getshield.dev/v1
|
|
21
|
+
base_url: Base URL for the Shield API. Defaults to https://api.getshield.dev/api/v1.
|
|
22
22
|
hmac_secret: Optional HMAC secret for request signing.
|
|
23
23
|
timeout: Request timeout in seconds. Defaults to 30.
|
|
24
24
|
"""
|
|
@@ -26,7 +26,7 @@ class Client:
|
|
|
26
26
|
def __init__(
|
|
27
27
|
self,
|
|
28
28
|
api_key: str,
|
|
29
|
-
base_url: str = "https://api.getshield.dev/v1
|
|
29
|
+
base_url: str = "https://api.getshield.dev/api/v1",
|
|
30
30
|
hmac_secret: Optional[str] = None,
|
|
31
31
|
timeout: int = 30,
|
|
32
32
|
):
|
|
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
|