vysion 2.0.18__tar.gz → 2.0.20__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.
- {vysion-2.0.18 → vysion-2.0.20}/PKG-INFO +2 -2
- {vysion-2.0.18 → vysion-2.0.20}/README.md +1 -1
- {vysion-2.0.18 → vysion-2.0.20}/pyproject.toml +1 -1
- {vysion-2.0.18 → vysion-2.0.20}/vysion/client/client.py +3 -5
- {vysion-2.0.18 → vysion-2.0.20}/vysion/version.py +1 -1
- {vysion-2.0.18 → vysion-2.0.20}/LICENSE +0 -0
- {vysion-2.0.18 → vysion-2.0.20}/vysion/__init__.py +0 -0
- {vysion-2.0.18 → vysion-2.0.20}/vysion/client/__init__.py +0 -0
- {vysion-2.0.18 → vysion-2.0.20}/vysion/client/error.py +0 -0
- {vysion-2.0.18 → vysion-2.0.20}/vysion/dto/__init__.py +0 -0
- {vysion-2.0.18 → vysion-2.0.20}/vysion/dto/dto.py +0 -0
- {vysion-2.0.18 → vysion-2.0.20}/vysion/dto/tag.py +0 -0
- {vysion-2.0.18 → vysion-2.0.20}/vysion/dto/util.py +0 -0
- {vysion-2.0.18 → vysion-2.0.20}/vysion/model/__init__.py +0 -0
- {vysion-2.0.18 → vysion-2.0.20}/vysion/model/enum/__init__.py +0 -0
- {vysion-2.0.18 → vysion-2.0.20}/vysion/model/enum/languages.py +0 -0
- {vysion-2.0.18 → vysion-2.0.20}/vysion/model/enum/networks.py +0 -0
- {vysion-2.0.18 → vysion-2.0.20}/vysion/model/enum/ransom_groups.py +0 -0
- {vysion-2.0.18 → vysion-2.0.20}/vysion/model/enum/services.py +0 -0
- {vysion-2.0.18 → vysion-2.0.20}/vysion/taxonomy/__init__.py +0 -0
- {vysion-2.0.18 → vysion-2.0.20}/vysion/taxonomy/flavours.py +0 -0
- {vysion-2.0.18 → vysion-2.0.20}/vysion/taxonomy/taxonomy.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: vysion
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.20
|
|
4
4
|
Summary: The official Python client library for Vysion
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
Author: Javier Junquera-Sánchez
|
|
@@ -30,7 +30,7 @@ Welcome to the open source repository for vysion-py, our implementation as a Pyt
|
|
|
30
30
|
|
|
31
31
|
You can request a demo for the web app or an API-key to use in this library at [vysion.ai](https://vysion.ai).
|
|
32
32
|
|
|
33
|
-
Latest version: [2.0.
|
|
33
|
+
Latest version: [2.0.20](https://pypi.org/project/vysion/)
|
|
34
34
|
|
|
35
35
|
You can visit [the documentation](https://developers.vysion.ai/?python) for more information on the searches and requests performed with the library or directly on the API.
|
|
36
36
|
|
|
@@ -4,7 +4,7 @@ Welcome to the open source repository for vysion-py, our implementation as a Pyt
|
|
|
4
4
|
|
|
5
5
|
You can request a demo for the web app or an API-key to use in this library at [vysion.ai](https://vysion.ai).
|
|
6
6
|
|
|
7
|
-
Latest version: [2.0.
|
|
7
|
+
Latest version: [2.0.20](https://pypi.org/project/vysion/)
|
|
8
8
|
|
|
9
9
|
You can visit [the documentation](https://developers.vysion.ai/?python) for more information on the searches and requests performed with the library or directly on the API.
|
|
10
10
|
|
|
@@ -323,7 +323,7 @@ class Client(BaseClient):
|
|
|
323
323
|
@vysion_error_manager
|
|
324
324
|
def search_ransomware_victim(
|
|
325
325
|
self,
|
|
326
|
-
q: str,
|
|
326
|
+
q: str = None,
|
|
327
327
|
lte: datetime = None,
|
|
328
328
|
gte: datetime = None,
|
|
329
329
|
page: int = 1,
|
|
@@ -331,8 +331,7 @@ class Client(BaseClient):
|
|
|
331
331
|
network: Network = None,
|
|
332
332
|
country: str = None,
|
|
333
333
|
language: Language = None,
|
|
334
|
-
|
|
335
|
-
industry: str = None,
|
|
334
|
+
sector: str = None,
|
|
336
335
|
) -> VysionResponse[RansomwareHit]:
|
|
337
336
|
url = self._build_api_url__(
|
|
338
337
|
"victim/search",
|
|
@@ -344,8 +343,7 @@ class Client(BaseClient):
|
|
|
344
343
|
network=network,
|
|
345
344
|
country=country,
|
|
346
345
|
language=language,
|
|
347
|
-
|
|
348
|
-
industry=industry,
|
|
346
|
+
sector=sector,
|
|
349
347
|
)
|
|
350
348
|
|
|
351
349
|
result = VysionResponse[RansomwareHit].model_validate(self._make_request(url))
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|