vysion 2.1.4__tar.gz → 2.1.5__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.1.4 → vysion-2.1.5}/PKG-INFO +3 -3
- {vysion-2.1.4 → vysion-2.1.5}/README.md +2 -2
- {vysion-2.1.4 → vysion-2.1.5}/pyproject.toml +1 -1
- {vysion-2.1.4 → vysion-2.1.5}/vysion/dto/dto.py +1 -2
- {vysion-2.1.4 → vysion-2.1.5}/vysion/version.py +1 -1
- {vysion-2.1.4 → vysion-2.1.5}/LICENSE +0 -0
- {vysion-2.1.4 → vysion-2.1.5}/vysion/__init__.py +0 -0
- {vysion-2.1.4 → vysion-2.1.5}/vysion/client/__init__.py +0 -0
- {vysion-2.1.4 → vysion-2.1.5}/vysion/client/client.py +0 -0
- {vysion-2.1.4 → vysion-2.1.5}/vysion/client/error.py +0 -0
- {vysion-2.1.4 → vysion-2.1.5}/vysion/dto/__init__.py +0 -0
- {vysion-2.1.4 → vysion-2.1.5}/vysion/dto/tag.py +0 -0
- {vysion-2.1.4 → vysion-2.1.5}/vysion/dto/util.py +0 -0
- {vysion-2.1.4 → vysion-2.1.5}/vysion/model/__init__.py +0 -0
- {vysion-2.1.4 → vysion-2.1.5}/vysion/model/enum/__init__.py +0 -0
- {vysion-2.1.4 → vysion-2.1.5}/vysion/model/enum/languages.py +0 -0
- {vysion-2.1.4 → vysion-2.1.5}/vysion/model/enum/networks.py +0 -0
- {vysion-2.1.4 → vysion-2.1.5}/vysion/model/enum/ransom_groups.py +0 -0
- {vysion-2.1.4 → vysion-2.1.5}/vysion/model/enum/services.py +0 -0
- {vysion-2.1.4 → vysion-2.1.5}/vysion/taxonomy/__init__.py +0 -0
- {vysion-2.1.4 → vysion-2.1.5}/vysion/taxonomy/flavours.py +0 -0
- {vysion-2.1.4 → vysion-2.1.5}/vysion/taxonomy/taxonomy.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: vysion
|
|
3
|
-
Version: 2.1.
|
|
3
|
+
Version: 2.1.5
|
|
4
4
|
Summary: The official Python client library for Vysion
|
|
5
5
|
Home-page: https://vysion.ai
|
|
6
6
|
License: Apache-2.0
|
|
@@ -25,11 +25,11 @@ Description-Content-Type: text/markdown
|
|
|
25
25
|
|
|
26
26
|
# Vysion-PY
|
|
27
27
|
|
|
28
|
-
Welcome to the
|
|
28
|
+
Welcome to the PyPi webpage for Vysion, our implementation as a Python library to use the Vysion tool. Vysion is a dark web intelligence tool that provides information collected from web pages from Tor, I2P, cybercrime forums on the clearnet, etc. Vysion API also provides a feed of information on ransomware attacks published by the various ransomware groups currently active.
|
|
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.1.
|
|
32
|
+
Latest version: [2.1.5](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
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# Vysion-PY
|
|
2
2
|
|
|
3
|
-
Welcome to the
|
|
3
|
+
Welcome to the PyPi webpage for Vysion, our implementation as a Python library to use the Vysion tool. Vysion is a dark web intelligence tool that provides information collected from web pages from Tor, I2P, cybercrime forums on the clearnet, etc. Vysion API also provides a feed of information on ransomware attacks published by the various ransomware groups currently active.
|
|
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.1.
|
|
7
|
+
Latest version: [2.1.5](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
|
|
|
@@ -393,7 +393,7 @@ class ImProfileHit(BaseModel):
|
|
|
393
393
|
# For Telegram platform, remove Discord-specific fields
|
|
394
394
|
if platform is None or (isinstance(platform, str) and platform.lower() == "telegram"):
|
|
395
395
|
# Delete attributes instead of setting to None
|
|
396
|
-
for attr in ["discordLink", "
|
|
396
|
+
for attr in ["discordLink", "discriminator"]:
|
|
397
397
|
if hasattr(values, attr):
|
|
398
398
|
delattr(values, attr)
|
|
399
399
|
|
|
@@ -493,7 +493,6 @@ class OnionFeedHit(BaseModel):
|
|
|
493
493
|
path: str
|
|
494
494
|
detectionDate: datetime
|
|
495
495
|
tag: List[Tag] = Field(default_factory=lambda: [])
|
|
496
|
-
network: Network = Field(default_factory=lambda: Network.tor)
|
|
497
496
|
|
|
498
497
|
|
|
499
498
|
class CryptoFeedHit(BaseModel):
|
|
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
|