vysion 2.0.2__tar.gz → 2.0.3__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.2 → vysion-2.0.3}/PKG-INFO +2 -2
- {vysion-2.0.2 → vysion-2.0.3}/README.md +1 -1
- {vysion-2.0.2 → vysion-2.0.3}/pyproject.toml +1 -1
- {vysion-2.0.2 → vysion-2.0.3}/vysion/client/client.py +0 -1
- {vysion-2.0.2 → vysion-2.0.3}/vysion/dto/dto.py +1 -1
- {vysion-2.0.2 → vysion-2.0.3}/vysion/version.py +1 -1
- {vysion-2.0.2 → vysion-2.0.3}/LICENSE +0 -0
- {vysion-2.0.2 → vysion-2.0.3}/vysion/__init__.py +0 -0
- {vysion-2.0.2 → vysion-2.0.3}/vysion/client/__init__.py +0 -0
- {vysion-2.0.2 → vysion-2.0.3}/vysion/client/error.py +0 -0
- {vysion-2.0.2 → vysion-2.0.3}/vysion/dto/__init__.py +0 -0
- {vysion-2.0.2 → vysion-2.0.3}/vysion/dto/tag.py +0 -0
- {vysion-2.0.2 → vysion-2.0.3}/vysion/dto/util.py +0 -0
- {vysion-2.0.2 → vysion-2.0.3}/vysion/model/__init__.py +0 -0
- {vysion-2.0.2 → vysion-2.0.3}/vysion/model/enum/__init__.py +0 -0
- {vysion-2.0.2 → vysion-2.0.3}/vysion/model/enum/languages.py +0 -0
- {vysion-2.0.2 → vysion-2.0.3}/vysion/model/enum/networks.py +0 -0
- {vysion-2.0.2 → vysion-2.0.3}/vysion/model/enum/ransom_groups.py +0 -0
- {vysion-2.0.2 → vysion-2.0.3}/vysion/model/enum/services.py +0 -0
- {vysion-2.0.2 → vysion-2.0.3}/vysion/taxonomy/__init__.py +0 -0
- {vysion-2.0.2 → vysion-2.0.3}/vysion/taxonomy/flavours.py +0 -0
- {vysion-2.0.2 → vysion-2.0.3}/vysion/taxonomy/taxonomy.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: vysion
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.3
|
|
4
4
|
Summary: The official Python client library for Vysion
|
|
5
5
|
Home-page: https://vysion.ai
|
|
6
6
|
License: Apache-2.0
|
|
@@ -29,7 +29,7 @@ Welcome to the PyPi webpage for Vysion, our implementation as a Python library t
|
|
|
29
29
|
|
|
30
30
|
You can request a demo for the web app or an API-key to use in this library at [vysion.ai](https://vysion.ai).
|
|
31
31
|
|
|
32
|
-
Latest version: [2.0.
|
|
32
|
+
Latest version: [2.0.3](https://pypi.org/project/vysion/)
|
|
33
33
|
|
|
34
34
|
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.
|
|
35
35
|
|
|
@@ -4,7 +4,7 @@ Welcome to the PyPi webpage for Vysion, our implementation as a Python library t
|
|
|
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.3](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
|
|
|
@@ -400,7 +400,7 @@ T = TypeVar("T")
|
|
|
400
400
|
class Result(BaseModel, Generic[T]):
|
|
401
401
|
total: int = 0
|
|
402
402
|
hits: Union[List[DocumentHit],List[Stat],List[ImChannelHit],List[ImMessageHit],
|
|
403
|
-
List[ImProfileHit]] = Field(default_factory=lambda: [])
|
|
403
|
+
List[ImProfileHit],List[RansomFeedHit],List[RansomwareHit]] = Field(default_factory=lambda: [])
|
|
404
404
|
|
|
405
405
|
def __init__(self, **kwargs):
|
|
406
406
|
super().__init__(**kwargs)
|
|
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
|