xsoar-client 0.0.1__py3-none-any.whl → 1.0.1__py3-none-any.whl
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.
- xsoar_client/__about__.py +1 -1
- xsoar_client/artifact_provider.py +2 -0
- {xsoar_client-0.0.1.dist-info → xsoar_client-1.0.1.dist-info}/METADATA +1 -1
- xsoar_client-1.0.1.dist-info/RECORD +8 -0
- xsoar_client-0.0.1.dist-info/RECORD +0 -8
- {xsoar_client-0.0.1.dist-info → xsoar_client-1.0.1.dist-info}/WHEEL +0 -0
- {xsoar_client-0.0.1.dist-info → xsoar_client-1.0.1.dist-info}/licenses/LICENSE.txt +0 -0
xsoar_client/__about__.py
CHANGED
|
@@ -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)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: xsoar-client
|
|
3
|
-
Version:
|
|
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
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
xsoar_client/__about__.py,sha256=yJHUtXXvuYYywTx7dLwV7Vtpi7GB6PAbprYsi3AzKBQ,132
|
|
2
|
+
xsoar_client/__init__.py,sha256=RjMY_4AMoQYO9urL0tOVXgAtc4nFUO-z0po9DDBuR5M,105
|
|
3
|
+
xsoar_client/artifact_provider.py,sha256=nLbEotUaf9t7ezPti_3apNVsT8M_0ckZ_HwC76aP96M,2546
|
|
4
|
+
xsoar_client/xsoar_client.py,sha256=f8HTnxNTg5ULO0CWzF7pfkdQ70B_r6KHEs0O2BPVmNU,12536
|
|
5
|
+
xsoar_client-1.0.1.dist-info/METADATA,sha256=iHpY5avMD4DfUv_QfcbM4ixcd6lXLrRXHFu7OL-QU_E,1722
|
|
6
|
+
xsoar_client-1.0.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
7
|
+
xsoar_client-1.0.1.dist-info/licenses/LICENSE.txt,sha256=l6xnqWKshqwwTXt6ayO6MX8Uvygq0YnkUuFTNnR3ba4,1097
|
|
8
|
+
xsoar_client-1.0.1.dist-info/RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
xsoar_client/__about__.py,sha256=DiDAOHkRpfB2jOE8zzqG_luTUb9SkYBLiRfaizWvC5U,132
|
|
2
|
-
xsoar_client/__init__.py,sha256=RjMY_4AMoQYO9urL0tOVXgAtc4nFUO-z0po9DDBuR5M,105
|
|
3
|
-
xsoar_client/artifact_provider.py,sha256=68TSKBGVwFCzNMvj1t-cC6hBRSJ3f_NxZZOyvk5uByg,2498
|
|
4
|
-
xsoar_client/xsoar_client.py,sha256=f8HTnxNTg5ULO0CWzF7pfkdQ70B_r6KHEs0O2BPVmNU,12536
|
|
5
|
-
xsoar_client-0.0.1.dist-info/METADATA,sha256=1JFgDTZJt5ELOobotqLYYfRmZBl0pvONS8fqCOdz3QQ,1722
|
|
6
|
-
xsoar_client-0.0.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
7
|
-
xsoar_client-0.0.1.dist-info/licenses/LICENSE.txt,sha256=l6xnqWKshqwwTXt6ayO6MX8Uvygq0YnkUuFTNnR3ba4,1097
|
|
8
|
-
xsoar_client-0.0.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|