vysion 2.0.6__tar.gz → 2.0.8__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vysion
3
- Version: 2.0.6
3
+ Version: 2.0.8
4
4
  Summary: The official Python client library for Vysion
5
5
  Home-page: https://vysion.ai
6
6
  License: Apache-2.0
@@ -20,7 +20,7 @@ Requires-Dist: pymisp (>=2.4.194,<3.0.0)
20
20
  Requires-Dist: requests (>=2.28.1,<3.0.0)
21
21
  Requires-Dist: softenum (==1.0.1)
22
22
  Project-URL: Documentation, https://developers.vysion.ai
23
- Project-URL: Repository, https://gitlab.com/byronlabs/vysion/vysion-py
23
+ Project-URL: Repository, https://github.com/ByronLabs/vysion-py
24
24
  Description-Content-Type: text/markdown
25
25
 
26
26
  # Vysion-PY
@@ -29,16 +29,14 @@ 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.6](https://pypi.org/project/vysion/)
32
+ Latest version: [2.0.8](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
 
36
36
  ### Taxonomy
37
37
 
38
- - https://github.com/MISP/misp-taxonomies/blob/main/tools/machinetag.py
39
- - https://www.misp-project.org/taxonomies.html#_mapping_of_taxonomies
40
- - https://github.com/MISP/misp-taxonomies
41
- - https://github.com/MISP/misp-taxonomies/blob/main/tools/docs/images/taxonomy-explanation.png
38
+ - https://github.com/MISP/misp-taxonomies/tree/main/dark-web
39
+ - https://www.circl.lu/doc/misp-taxonomies/#_dark_web
42
40
 
43
41
 
44
42
  # Ackowledgement
@@ -4,16 +4,14 @@ 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.6](https://pypi.org/project/vysion/)
7
+ Latest version: [2.0.8](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
 
11
11
  ### Taxonomy
12
12
 
13
- - https://github.com/MISP/misp-taxonomies/blob/main/tools/machinetag.py
14
- - https://www.misp-project.org/taxonomies.html#_mapping_of_taxonomies
15
- - https://github.com/MISP/misp-taxonomies
16
- - https://github.com/MISP/misp-taxonomies/blob/main/tools/docs/images/taxonomy-explanation.png
13
+ - https://github.com/MISP/misp-taxonomies/tree/main/dark-web
14
+ - https://www.circl.lu/doc/misp-taxonomies/#_dark_web
17
15
 
18
16
 
19
17
  # Ackowledgement
@@ -1,9 +1,9 @@
1
1
  [tool.poetry]
2
2
  name = "vysion"
3
- version = "2.0.6"
3
+ version = "2.0.8"
4
4
  description = "The official Python client library for Vysion"
5
5
  homepage = "https://vysion.ai"
6
- repository = "https://gitlab.com/byronlabs/vysion/vysion-py"
6
+ repository = "https://github.com/ByronLabs/vysion-py"
7
7
  documentation = "https://developers.vysion.ai"
8
8
  authors = [
9
9
  "Javier Junquera-Sánchez <javier.junquera@byronlabs.io>"
@@ -24,7 +24,7 @@ except:
24
24
 
25
25
  import vysion.dto as dto
26
26
  from vysion.dto import URL, DocumentHit, Page, RansomFeedHit
27
-
27
+ from typing import Union
28
28
 
29
29
  class MISPProcessor:
30
30
  def __init__(self):
@@ -111,7 +111,7 @@ class MISPProcessor:
111
111
 
112
112
  self.misp_event.add_object(misp_object)
113
113
 
114
- def process(self, result: dto.Result[DocumentHit|RansomFeedHit], **kwargs) -> MISPEvent:
114
+ def process(self, result: dto.Result[Union[DocumentHit,RansomFeedHit]], **kwargs) -> MISPEvent:
115
115
 
116
116
  processor = {
117
117
  DocumentHit: self.parse_hit,
@@ -15,4 +15,4 @@ See the License for the specific language governing permissions and
15
15
  limitations under the License.
16
16
  """
17
17
 
18
- __version__ = "2.0.6"
18
+ __version__ = "2.0.8"
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