xsoar-client 1.0.0__tar.gz → 1.0.1__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.
Potentially problematic release.
This version of xsoar-client might be problematic. Click here for more details.
- {xsoar_client-1.0.0 → xsoar_client-1.0.1}/PKG-INFO +1 -1
- {xsoar_client-1.0.0 → xsoar_client-1.0.1}/src/xsoar_client/__about__.py +1 -1
- {xsoar_client-1.0.0 → xsoar_client-1.0.1}/src/xsoar_client/artifact_provider.py +2 -0
- {xsoar_client-1.0.0 → xsoar_client-1.0.1}/.github/workflows/release.yml +0 -0
- {xsoar_client-1.0.0 → xsoar_client-1.0.1}/.gitignore +0 -0
- {xsoar_client-1.0.0 → xsoar_client-1.0.1}/LICENSE.txt +0 -0
- {xsoar_client-1.0.0 → xsoar_client-1.0.1}/README.md +0 -0
- {xsoar_client-1.0.0 → xsoar_client-1.0.1}/pyproject.toml +0 -0
- {xsoar_client-1.0.0 → xsoar_client-1.0.1}/requirements.txt +0 -0
- {xsoar_client-1.0.0 → xsoar_client-1.0.1}/requirements_dev.txt +0 -0
- {xsoar_client-1.0.0 → xsoar_client-1.0.1}/src/xsoar_client/__init__.py +0 -0
- {xsoar_client-1.0.0 → xsoar_client-1.0.1}/src/xsoar_client/xsoar_client.py +0 -0
- {xsoar_client-1.0.0 → xsoar_client-1.0.1}/tests/__init__.py +0 -0
- {xsoar_client-1.0.0 → xsoar_client-1.0.1}/tests/xsoar_client_test.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: xsoar-client
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.1
|
|
4
4
|
Project-URL: Documentation, https://github.com/tlium/xsoar-client#readme
|
|
5
5
|
Project-URL: Issues, https://github.com/tlium/xsoar-client/issues
|
|
6
6
|
Project-URL: Source, https://github.com/tlium/xsoar-client
|
|
@@ -8,6 +8,8 @@ SUPPORTED_STORES = ["S3"]
|
|
|
8
8
|
|
|
9
9
|
class ArtifactProvider:
|
|
10
10
|
def __init__(self, *, location: str = "S3", s3_bucket_name: str | None = None, verify_ssl: str | bool = True) -> None:
|
|
11
|
+
if location is None:
|
|
12
|
+
return
|
|
11
13
|
if location not in SUPPORTED_STORES:
|
|
12
14
|
msg = f"Artifact store {location} is not yet implemented."
|
|
13
15
|
raise NotImplementedError(msg)
|
|
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
|