mmisp-lib 0.1.0__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.
Files changed (161) hide show
  1. mmisp/api_schemas/__init__.py +0 -0
  2. mmisp/api_schemas/attributes/__init__.py +0 -0
  3. mmisp/api_schemas/attributes/add_attribute_body.py +34 -0
  4. mmisp/api_schemas/attributes/add_attribute_response.py +33 -0
  5. mmisp/api_schemas/attributes/add_remove_tag_attribute_response.py +13 -0
  6. mmisp/api_schemas/attributes/delete_attribute_response.py +8 -0
  7. mmisp/api_schemas/attributes/delete_selected_attribute_body.py +9 -0
  8. mmisp/api_schemas/attributes/delete_selected_attribute_response.py +13 -0
  9. mmisp/api_schemas/attributes/edit_attribute_body.py +24 -0
  10. mmisp/api_schemas/attributes/edit_attributes_response.py +42 -0
  11. mmisp/api_schemas/attributes/get_all_attributes_response.py +38 -0
  12. mmisp/api_schemas/attributes/get_attribute_response.py +41 -0
  13. mmisp/api_schemas/attributes/get_attribute_statistics_response.py +137 -0
  14. mmisp/api_schemas/attributes/get_describe_types_response.py +29 -0
  15. mmisp/api_schemas/attributes/restore_attribute_reponse.py +25 -0
  16. mmisp/api_schemas/attributes/search_attributes_body.py +74 -0
  17. mmisp/api_schemas/attributes/search_attributes_response.py +52 -0
  18. mmisp/api_schemas/auth_keys/__init__.py +0 -0
  19. mmisp/api_schemas/auth_keys/add_auth_key_body.py +10 -0
  20. mmisp/api_schemas/auth_keys/add_auth_key_response.py +20 -0
  21. mmisp/api_schemas/auth_keys/edit_auth_key_body.py +8 -0
  22. mmisp/api_schemas/auth_keys/edit_auth_key_response.py +24 -0
  23. mmisp/api_schemas/auth_keys/search_auth_keys_body.py +17 -0
  24. mmisp/api_schemas/auth_keys/search_get_all_auth_keys_users_response.py +28 -0
  25. mmisp/api_schemas/auth_keys/view_auth_key_response.py +24 -0
  26. mmisp/api_schemas/authentication/__init__.py +0 -0
  27. mmisp/api_schemas/authentication/exchange_token_login_body.py +5 -0
  28. mmisp/api_schemas/authentication/password_login_body.py +6 -0
  29. mmisp/api_schemas/authentication/start_login_body.py +5 -0
  30. mmisp/api_schemas/authentication/start_login_response.py +21 -0
  31. mmisp/api_schemas/authentication/token_response.py +5 -0
  32. mmisp/api_schemas/events/FreeTextImportWorkerBody.py +17 -0
  33. mmisp/api_schemas/events/__init__.py +0 -0
  34. mmisp/api_schemas/events/add_attribute_via_free_text_import_event_body.py +12 -0
  35. mmisp/api_schemas/events/add_attribute_via_free_text_import_event_response.py +14 -0
  36. mmisp/api_schemas/events/add_edit_get_event_response.py +234 -0
  37. mmisp/api_schemas/events/add_event_body.py +30 -0
  38. mmisp/api_schemas/events/add_remove_tag_events_response.py +11 -0
  39. mmisp/api_schemas/events/delete_event_response.py +14 -0
  40. mmisp/api_schemas/events/edit_event_body.py +28 -0
  41. mmisp/api_schemas/events/get_all_events_response.py +99 -0
  42. mmisp/api_schemas/events/get_event_response.py +8 -0
  43. mmisp/api_schemas/events/index_events_body.py +30 -0
  44. mmisp/api_schemas/events/index_events_response.py +40 -0
  45. mmisp/api_schemas/events/publish_event_response.py +13 -0
  46. mmisp/api_schemas/events/search_events_body.py +43 -0
  47. mmisp/api_schemas/events/search_events_response.py +10 -0
  48. mmisp/api_schemas/events/unpublish_event_response.py +13 -0
  49. mmisp/api_schemas/feeds/__init__.py +0 -0
  50. mmisp/api_schemas/feeds/cache_feed_response.py +12 -0
  51. mmisp/api_schemas/feeds/create_feed_body.py +30 -0
  52. mmisp/api_schemas/feeds/enable_disable_feed_response.py +10 -0
  53. mmisp/api_schemas/feeds/fetch_feeds_response.py +8 -0
  54. mmisp/api_schemas/feeds/get_feed_response.py +47 -0
  55. mmisp/api_schemas/feeds/toggle_feed_body.py +8 -0
  56. mmisp/api_schemas/feeds/update_feed_body.py +30 -0
  57. mmisp/api_schemas/galaxies/__init__.py +0 -0
  58. mmisp/api_schemas/galaxies/attach_galaxy_cluster_body.py +12 -0
  59. mmisp/api_schemas/galaxies/attach_galaxy_cluster_response.py +10 -0
  60. mmisp/api_schemas/galaxies/delete_force_update_import_galaxy_response.py +12 -0
  61. mmisp/api_schemas/galaxies/export_galaxies_body.py +16 -0
  62. mmisp/api_schemas/galaxies/export_galaxies_response.py +44 -0
  63. mmisp/api_schemas/galaxies/galaxy_schema.py +18 -0
  64. mmisp/api_schemas/galaxies/get_all_search_galaxies_response.py +22 -0
  65. mmisp/api_schemas/galaxies/get_galaxy_response.py +37 -0
  66. mmisp/api_schemas/galaxies/import_galaxies_body.py +15 -0
  67. mmisp/api_schemas/galaxies/search_galaxies_body.py +22 -0
  68. mmisp/api_schemas/noticelists/__init__.py +0 -0
  69. mmisp/api_schemas/noticelists/get_all_noticelist_response.py +10 -0
  70. mmisp/api_schemas/noticelists/get_noticelist_response.py +38 -0
  71. mmisp/api_schemas/objects/__init__.py +0 -0
  72. mmisp/api_schemas/objects/create_object_body.py +19 -0
  73. mmisp/api_schemas/objects/get_object_response.py +50 -0
  74. mmisp/api_schemas/objects/search_objects_body.py +49 -0
  75. mmisp/api_schemas/organisations/__init__.py +0 -0
  76. mmisp/api_schemas/organisations/organisation.py +24 -0
  77. mmisp/api_schemas/roles/__init__.py +0 -0
  78. mmisp/api_schemas/roles/role.py +71 -0
  79. mmisp/api_schemas/sharing_groups/__init__.py +0 -0
  80. mmisp/api_schemas/sharing_groups/add_org_to_sharing_group_body.py +6 -0
  81. mmisp/api_schemas/sharing_groups/add_org_to_sharing_group_legacy_body.py +5 -0
  82. mmisp/api_schemas/sharing_groups/add_server_to_sharing_group_body.py +6 -0
  83. mmisp/api_schemas/sharing_groups/add_server_to_sharing_group_legacy_body.py +5 -0
  84. mmisp/api_schemas/sharing_groups/create_sharing_group_body.py +12 -0
  85. mmisp/api_schemas/sharing_groups/create_sharing_group_legacy_body.py +23 -0
  86. mmisp/api_schemas/sharing_groups/create_sharing_group_legacy_response.py +18 -0
  87. mmisp/api_schemas/sharing_groups/delete_sharing_group_legacy_response.py +5 -0
  88. mmisp/api_schemas/sharing_groups/get_all_sharing_groups_response.py +53 -0
  89. mmisp/api_schemas/sharing_groups/get_sharing_group_info_response.py +44 -0
  90. mmisp/api_schemas/sharing_groups/sharing_group.py +19 -0
  91. mmisp/api_schemas/sharing_groups/sharing_group_org.py +8 -0
  92. mmisp/api_schemas/sharing_groups/sharing_group_server.py +8 -0
  93. mmisp/api_schemas/sharing_groups/update_sharing_group_body.py +10 -0
  94. mmisp/api_schemas/sharing_groups/update_sharing_group_legacy_body.py +28 -0
  95. mmisp/api_schemas/sharing_groups/view_update_sharing_group_legacy_response.py +40 -0
  96. mmisp/api_schemas/sightings/__init__.py +0 -0
  97. mmisp/api_schemas/sightings/create_sighting_body.py +49 -0
  98. mmisp/api_schemas/sightings/get_sighting_response.py +27 -0
  99. mmisp/api_schemas/standard_status_response.py +13 -0
  100. mmisp/api_schemas/tags/__init__.py +0 -0
  101. mmisp/api_schemas/tags/create_tag_body.py +15 -0
  102. mmisp/api_schemas/tags/delete_tag_response.py +10 -0
  103. mmisp/api_schemas/tags/get_tag_response.py +31 -0
  104. mmisp/api_schemas/tags/search_tags_response.py +26 -0
  105. mmisp/api_schemas/tags/update_tag_body.py +15 -0
  106. mmisp/api_schemas/taxonomies/__init__.py +0 -0
  107. mmisp/api_schemas/taxonomies/export_taxonomies_response.py +30 -0
  108. mmisp/api_schemas/taxonomies/get_taxonomy_by_id_response.py +30 -0
  109. mmisp/api_schemas/taxonomies/get_taxonomy_response.py +21 -0
  110. mmisp/api_schemas/taxonomies/get_taxonomy_tags_response.py +32 -0
  111. mmisp/api_schemas/user_settings/__init__.py +0 -0
  112. mmisp/api_schemas/user_settings/get_uid_user_setting_response.py +21 -0
  113. mmisp/api_schemas/user_settings/get_user_settings_response.py +13 -0
  114. mmisp/api_schemas/user_settings/search_user_setting_body.py +7 -0
  115. mmisp/api_schemas/user_settings/search_user_setting_response.py +11 -0
  116. mmisp/api_schemas/user_settings/set_user_setting_body.py +5 -0
  117. mmisp/api_schemas/user_settings/set_user_setting_response.py +13 -0
  118. mmisp/api_schemas/user_settings/view_user_setting_response.py +13 -0
  119. mmisp/api_schemas/users/__init__.py +0 -0
  120. mmisp/api_schemas/users/user.py +42 -0
  121. mmisp/api_schemas/users/users_view_me_response.py +12 -0
  122. mmisp/api_schemas/warninglists/__init__.py +0 -0
  123. mmisp/api_schemas/warninglists/check_value_warninglists_body.py +8 -0
  124. mmisp/api_schemas/warninglists/check_value_warninglists_response.py +14 -0
  125. mmisp/api_schemas/warninglists/create_warninglist_body.py +220 -0
  126. mmisp/api_schemas/warninglists/delete_warninglist_response.py +13 -0
  127. mmisp/api_schemas/warninglists/get_selected_all_warninglists_response.py +14 -0
  128. mmisp/api_schemas/warninglists/get_selected_warninglists_body.py +9 -0
  129. mmisp/api_schemas/warninglists/toggle_enable_warninglists_body.py +10 -0
  130. mmisp/api_schemas/warninglists/toggle_enable_warninglists_response.py +10 -0
  131. mmisp/api_schemas/warninglists/warninglist_response.py +42 -0
  132. mmisp/db/__init__.py +0 -0
  133. mmisp/db/config.py +17 -0
  134. mmisp/db/database.py +42 -0
  135. mmisp/db/models/__init__.py +0 -0
  136. mmisp/db/models/attribute.py +92 -0
  137. mmisp/db/models/auth_key.py +24 -0
  138. mmisp/db/models/event.py +62 -0
  139. mmisp/db/models/feed.py +32 -0
  140. mmisp/db/models/galaxy.py +22 -0
  141. mmisp/db/models/galaxy_cluster.py +52 -0
  142. mmisp/db/models/identity_provider.py +22 -0
  143. mmisp/db/models/noticelist.py +22 -0
  144. mmisp/db/models/object.py +39 -0
  145. mmisp/db/models/organisation.py +26 -0
  146. mmisp/db/models/role.py +42 -0
  147. mmisp/db/models/server.py +33 -0
  148. mmisp/db/models/sharing_group.py +43 -0
  149. mmisp/db/models/sighting.py +21 -0
  150. mmisp/db/models/tag.py +19 -0
  151. mmisp/db/models/taxonomy.py +41 -0
  152. mmisp/db/models/user.py +44 -0
  153. mmisp/db/models/user_setting.py +29 -0
  154. mmisp/db/models/warninglist.py +33 -0
  155. mmisp/db/print_changes.py +59 -0
  156. mmisp/lib/__init__.py +0 -0
  157. mmisp/lib/attributes.py +1386 -0
  158. mmisp_lib-0.1.0.dist-info/METADATA +77 -0
  159. mmisp_lib-0.1.0.dist-info/RECORD +161 -0
  160. mmisp_lib-0.1.0.dist-info/WHEEL +5 -0
  161. mmisp_lib-0.1.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,77 @@
1
+ Metadata-Version: 2.1
2
+ Name: mmisp-lib
3
+ Version: 0.1.0
4
+ Requires-Python: >=3.11.0
5
+ Description-Content-Type: text/markdown
6
+ Requires-Dist: fastapi ==0.104.1
7
+ Requires-Dist: SQLAlchemy[asyncio] ==1.4.46
8
+ Requires-Dist: pydantic ==1.10.13
9
+ Requires-Dist: uvicorn ==0.24.0.post1
10
+ Requires-Dist: python-dotenv ==1.0.0
11
+ Requires-Dist: alembic ==1.8.1
12
+ Requires-Dist: aiomysql ==0.2.0
13
+ Requires-Dist: aiosqlite ==0.20.0
14
+ Requires-Dist: PyJWT ==2.8.0
15
+ Requires-Dist: httpx ==0.26.0
16
+ Requires-Dist: passlib ==1.7.4
17
+ Requires-Dist: argon2-cffi ==23.1.0
18
+ Requires-Dist: bcrypt ==4.1.2
19
+ Requires-Dist: nanoid ==2.0.0
20
+ Requires-Dist: cryptography ==42.0.5
21
+ Provides-Extra: dev
22
+ Requires-Dist: ruff ==0.3.7 ; extra == 'dev'
23
+ Requires-Dist: mypy ==1.8.0 ; extra == 'dev'
24
+ Requires-Dist: pre-commit ==3.6.0 ; extra == 'dev'
25
+ Requires-Dist: pytest ==8.0.0 ; extra == 'dev'
26
+ Requires-Dist: pytest-asyncio ==0.23.5.post1 ; extra == 'dev'
27
+ Requires-Dist: pytest-cov ==4.1.0 ; extra == 'dev'
28
+ Requires-Dist: respx ==0.20.2 ; extra == 'dev'
29
+ Requires-Dist: mysql-connector-python ==8.3.0 ; extra == 'dev'
30
+
31
+ # Modern MISP - API
32
+
33
+ [![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff) [![Conventional Commits](https://img.shields.io/badge/Conventional_Commits-1.0.0-orange.svg)](https://conventionalcommits.org)
34
+
35
+ ## Requirements
36
+
37
+ - [Docker](https://www.docker.com) `latest-stable`
38
+
39
+ ## Getting Started
40
+
41
+ Clone the project and install Python version `3.11.0`. It is recommended to install Python using [pyenv](https://github.com/pyenv/pyenv#installation). Then install all dependencies by typing `make setup` into your terminal and start your local database container using `make up`.
42
+
43
+ Create a file called `.env` and copy the contents of `.env.example` into it. Finally, start the development server using `make dev`.
44
+
45
+ You should now be able to access the api on `localhost:4000`.
46
+
47
+ Run tests using `make test` (local database container required running) or `make test/lite`.
48
+
49
+ ## Setting up your IDE
50
+
51
+ Be sure to use the newly created virtual env as your interpreter (`./venv/bin/python`). Also install the [Ruff](https://docs.astral.sh/ruff/integrations/) extension for your IDE and set `Ruff` as your default code formatter. It is recommended to activate formatting your code on every save.
52
+
53
+ ## Best Practices
54
+
55
+ ### General Guidelines
56
+
57
+ The following are some guidelines for writing code, in no particular order:
58
+
59
+ - Try to write clean code
60
+ - Use the "early return" pattern, do you really need that `else` block?
61
+ - Add correct types wherever possible, reduce `Any` occurrences as much as possible
62
+ - Reduce database calls
63
+ - Be consistent within your code, and within the rest of the codebase
64
+ - Use whitespace generously, to group and separate lines of code
65
+ - Be explicit, magic is great until it is not
66
+
67
+ ### Endpoint Ordering
68
+
69
+ Try to order endpoints using CRUD so that the following order is achieved:
70
+
71
+ - Create a {resource}
72
+ - Read / Get a {resource}
73
+ - Update a {resource}
74
+ - Delete a {resource}
75
+ - Get all {resource}s
76
+ - More niche endpoints
77
+ - Deprecated endpoints
@@ -0,0 +1,161 @@
1
+ mmisp/api_schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ mmisp/api_schemas/standard_status_response.py,sha256=TlejwY7EypLkOxpGl_ofk8y-r6oeFDbkHSxs2e5l8LA,230
3
+ mmisp/api_schemas/attributes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ mmisp/api_schemas/attributes/add_attribute_body.py,sha256=Ut8v4fGjg2J3h3YFaUO6K3rno8TqLghnjZzqQJMssDA,1092
5
+ mmisp/api_schemas/attributes/add_attribute_response.py,sha256=JE203DeulFk9hciFuyf8fz0mz3HPj5hrWTTp3iiJ2mg,764
6
+ mmisp/api_schemas/attributes/add_remove_tag_attribute_response.py,sha256=9-Jers103BqgQ5DxcDeWWP7GX5VKPg-sAoSnVybJ0ts,256
7
+ mmisp/api_schemas/attributes/delete_attribute_response.py,sha256=Oh6WgAKBL5mIH0wVIk-bYS_5-imQ65f4pL8fxSHulZQ,135
8
+ mmisp/api_schemas/attributes/delete_selected_attribute_body.py,sha256=m90VnWVUzkY3fXnazxXZhLzHlgeY6nM5hMkDSFa7_Ro,226
9
+ mmisp/api_schemas/attributes/delete_selected_attribute_response.py,sha256=XpfUBYCPqc38cv7gr0UhVaSA9xC2hO1uvqL_9hHcPTU,216
10
+ mmisp/api_schemas/attributes/edit_attribute_body.py,sha256=jFPcVIv-Qa_WF1ZtVvGfRdxZu6xVF5gYoXy1KtKEmvI,675
11
+ mmisp/api_schemas/attributes/edit_attributes_response.py,sha256=yu4yWsx0xTYqWbBFbdJE9BotTD1QmzopIJ5VkkRrDnk,838
12
+ mmisp/api_schemas/attributes/get_all_attributes_response.py,sha256=4K07wq2OAmVzA0dxMRJrpf0Z66fGT3ezuxpxdZRmRow,1163
13
+ mmisp/api_schemas/attributes/get_attribute_response.py,sha256=avb54WyFi2sO99hDm7l_YL8DIShQGJ68lr-Aqt-sTl4,901
14
+ mmisp/api_schemas/attributes/get_attribute_statistics_response.py,sha256=rPw7RrS0Ipn0IAtLLE-HyOan5qzMLuFhajLZecP-ceQ,5547
15
+ mmisp/api_schemas/attributes/get_describe_types_response.py,sha256=Us5-_4xSoylTnRz9KAX__bmuAXtPmoMoWAMVs2kIirA,756
16
+ mmisp/api_schemas/attributes/restore_attribute_reponse.py,sha256=gIoQZOoeG329IDt3hdOXIx_K8kRXx9rWvL9ZpImuZdg,469
17
+ mmisp/api_schemas/attributes/search_attributes_body.py,sha256=G0prY9mqyJsxNTLweYAKDbOZLvKG3H-YUF3hsHIJRP0,3216
18
+ mmisp/api_schemas/attributes/search_attributes_response.py,sha256=4ugEKEoJfruy9Mw_ieGNXN7g--FEuVX-RfNZYWSZEu0,1162
19
+ mmisp/api_schemas/auth_keys/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
+ mmisp/api_schemas/auth_keys/add_auth_key_body.py,sha256=y-vQofmIozHb3_jRSXeqjD6qQ0uFe3k_w_waNwldkFs,268
21
+ mmisp/api_schemas/auth_keys/add_auth_key_response.py,sha256=tNU7X1J1m-fmtv1N-x65raBo4zQSC9Id66n_AXzrHDw,431
22
+ mmisp/api_schemas/auth_keys/edit_auth_key_body.py,sha256=3mSdFbjhIEsojJVE43xLPggCzXJYt34uKbg2tuxVRmc,207
23
+ mmisp/api_schemas/auth_keys/edit_auth_key_response.py,sha256=tsj8onvl0CMUK7Q4hNhqVAS6M-k3XPkWWaExjIR2ja8,460
24
+ mmisp/api_schemas/auth_keys/search_auth_keys_body.py,sha256=s0qVcqS8s_sjHvT1gn1D28VBHVUqJf84nXVhI8Q3mXI,502
25
+ mmisp/api_schemas/auth_keys/search_get_all_auth_keys_users_response.py,sha256=3yIcplM2KlNizwRbaFDITcOAf2GSBt4bw3q1ngmZSqU,603
26
+ mmisp/api_schemas/auth_keys/view_auth_key_response.py,sha256=VSWDffe9Ct_PYTRP0i4uI0GnCwWpY1jV-_JXwG3fo3I,567
27
+ mmisp/api_schemas/authentication/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
28
+ mmisp/api_schemas/authentication/exchange_token_login_body.py,sha256=3zYX0q8wczzXqD7DVpb0olhLZludE9RnFUuWg2BC6ts,97
29
+ mmisp/api_schemas/authentication/password_login_body.py,sha256=0rx46OnjscsnbsPV26WcI81OQDzSmBnzD_SiTKHIxUc,102
30
+ mmisp/api_schemas/authentication/start_login_body.py,sha256=D_zLm6M4I0J-O2nYsSgK_pdDQuwfL-pcr3Nn_UJN1kQ,81
31
+ mmisp/api_schemas/authentication/start_login_response.py,sha256=bggmL8z32anFcZF4fxqZL-xqE48RsEcjwxQpN_cdQ6U,364
32
+ mmisp/api_schemas/authentication/token_response.py,sha256=Vzi8zMCzq46GlVvyTmCUnzrLjfgb0n3JAH1SxHTBExQ,80
33
+ mmisp/api_schemas/events/FreeTextImportWorkerBody.py,sha256=mSc1MrjXp5_NNU6DCZhqc6z9Ka8vRD59uAVwpdWkktw,310
34
+ mmisp/api_schemas/events/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
35
+ mmisp/api_schemas/events/add_attribute_via_free_text_import_event_body.py,sha256=aMRJ4pVQCh1xLqc_D6Wf9c5WIi2LJjxSNdoOBxAWd3k,273
36
+ mmisp/api_schemas/events/add_attribute_via_free_text_import_event_response.py,sha256=_uGdzwZeU5FpsjGayoX_ElvzvM4p3axeqreP6q-ZBuc,277
37
+ mmisp/api_schemas/events/add_edit_get_event_response.py,sha256=JqLdoLJf21poZc7XLVbcS4UrXW1hzgnWJmaVJfCE-II,5438
38
+ mmisp/api_schemas/events/add_event_body.py,sha256=cX7K0XVBJV2lwne4_BAAPncxakWhvMZQ8uthqYJ0KWY,808
39
+ mmisp/api_schemas/events/add_remove_tag_events_response.py,sha256=hgZDuoXVgso9Ium6J9dfnEy9P31mI-2TjBsWR1QHt5w,236
40
+ mmisp/api_schemas/events/delete_event_response.py,sha256=Um2Z5JffhYMJ0x4SqZnJY9Co9ryecV-1jkol7lacfTU,248
41
+ mmisp/api_schemas/events/edit_event_body.py,sha256=IMoO_znT9j405s-l0DVgRMHYyQds7MxFjyfEH3QHrQM,861
42
+ mmisp/api_schemas/events/get_all_events_response.py,sha256=ggxL4IBydFeLUGYAv9Sd03j9iLlS4GvahdL0xJOCROo,2143
43
+ mmisp/api_schemas/events/get_event_response.py,sha256=aJGf3Jkpfzu6rtlQ5EAINlfEC6xIzqsF6s_a_p19ClU,158
44
+ mmisp/api_schemas/events/index_events_body.py,sha256=AEtyKDrZeHMN_Glils4orpjUVWfDf-AVc-3YZZ27zMQ,864
45
+ mmisp/api_schemas/events/index_events_response.py,sha256=pHY4xEMUd67WXJKm2p54W6f3DXe104e7mJXdpCYzODY,881
46
+ mmisp/api_schemas/events/publish_event_response.py,sha256=JkgqiWoV6uc8dVL6LF7JUVc4nJaMHrHSHu6H425-jfw,247
47
+ mmisp/api_schemas/events/search_events_body.py,sha256=mXxkz-FRUXjnEm5IqM1xKhf6cElxjbG-AZM5Ujn4wc8,1347
48
+ mmisp/api_schemas/events/search_events_response.py,sha256=snQKE4IOoTbtCgljbdTIh3nSTnduJ7R8O6yOco_FPug,225
49
+ mmisp/api_schemas/events/unpublish_event_response.py,sha256=dctHvZxFvMmd72_MhYC37GzuEdPgC2BtEOXZODxUqks,249
50
+ mmisp/api_schemas/feeds/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
51
+ mmisp/api_schemas/feeds/cache_feed_response.py,sha256=eoRAxwN0oje7Lw5SF-zGGhVS4GHAo7w873NSoMZEaeE,190
52
+ mmisp/api_schemas/feeds/create_feed_body.py,sha256=DAagQVjYc7aO_gEY-a-Loy_ntDyvgf0NFa6u8Q2uBL0,924
53
+ mmisp/api_schemas/feeds/enable_disable_feed_response.py,sha256=ZFLjPHaf8PqEz8gTYUB4MWJ57Gs_CjAH7RjJ-lBObEA,164
54
+ mmisp/api_schemas/feeds/fetch_feeds_response.py,sha256=RNHuf2N6p-Og3DFOwkEmD-Ul1o7O_arEXa0M_sEAlSY,128
55
+ mmisp/api_schemas/feeds/get_feed_response.py,sha256=sp1tW0oyktLwmtFurf0P3k3q5PvW0EUmk1vpu6OZkqs,1234
56
+ mmisp/api_schemas/feeds/toggle_feed_body.py,sha256=1aUaX6cDLeBC-2tjlDfhNoNlE8UDktdiJiz6IP6LrtA,126
57
+ mmisp/api_schemas/feeds/update_feed_body.py,sha256=tND0sCK22Htema8aQyFYJ-7sEtfAdLJNKY76_ry3-wA,893
58
+ mmisp/api_schemas/galaxies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
59
+ mmisp/api_schemas/galaxies/attach_galaxy_cluster_body.py,sha256=iJYQ57D6bTdqVDVCMA8undnEHTG5z9js8nwGGS8J2m4,229
60
+ mmisp/api_schemas/galaxies/attach_galaxy_cluster_response.py,sha256=lpmM8oVV1Gomav151TIpWs5th42Ruu0VuUP11-W6-WY,179
61
+ mmisp/api_schemas/galaxies/delete_force_update_import_galaxy_response.py,sha256=rIgaNpm-_WvJ9RGieZdITZEnFL6jKrlGHm4UvgibrdI,238
62
+ mmisp/api_schemas/galaxies/export_galaxies_body.py,sha256=2tC8sDVh4GwTt2OZCc63ZW5y1bgx45CqOozDF185ASQ,323
63
+ mmisp/api_schemas/galaxies/export_galaxies_response.py,sha256=KS9WN8fUwBfDhdJ1do3jxfK1whh9UkccpCjJjjAhaUw,1139
64
+ mmisp/api_schemas/galaxies/galaxy_schema.py,sha256=Jy792J8qb-_BRPHbltT9MMyL7U-uZ-QJYoyrRc29EVw,289
65
+ mmisp/api_schemas/galaxies/get_all_search_galaxies_response.py,sha256=BvYZEBQBxWVIxjGL-LoWiX0XQ8c6zA6H-2TALyYnXZE,421
66
+ mmisp/api_schemas/galaxies/get_galaxy_response.py,sha256=Gc3_QpZ2Tbb6xJiiXrn_GLsxN6qhBnGPTto8VnUaRB4,866
67
+ mmisp/api_schemas/galaxies/import_galaxies_body.py,sha256=eGZe6mVkpAgx_IWZWs3Dop2WuhZ3QSHzdePDgE5bN7k,298
68
+ mmisp/api_schemas/galaxies/search_galaxies_body.py,sha256=yxJiZbawMmGZd2taR_FQmyBdtkjQNVPb2CbZ3P25Vrw,514
69
+ mmisp/api_schemas/noticelists/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
70
+ mmisp/api_schemas/noticelists/get_all_noticelist_response.py,sha256=UsvlASRUEBUjHS24ebi-TtSx-21Wdd6quL7dHRo4YUU,237
71
+ mmisp/api_schemas/noticelists/get_noticelist_response.py,sha256=TzxiNDVMARVCqb0LeG9WtEuPu0gDqK3i_JqhRXZCbqY,747
72
+ mmisp/api_schemas/objects/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
73
+ mmisp/api_schemas/objects/create_object_body.py,sha256=ZZUVeps7Xz_Q63QivU8VwftOj06oUfnLezTBFhG7BlA,578
74
+ mmisp/api_schemas/objects/get_object_response.py,sha256=KpRwatG-zCQzGgpPdMUyxFUIpBaXcsiwccMumCwQ_9k,1505
75
+ mmisp/api_schemas/objects/search_objects_body.py,sha256=y9S3LvjTbeY9JRGuWngGFmx-UGfaCPyP7rBN4rh9W2M,1539
76
+ mmisp/api_schemas/organisations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
77
+ mmisp/api_schemas/organisations/organisation.py,sha256=DB1-egofj_qUUi1Gncq9UP2gp9WSyCWvp3oVySoNLSk,583
78
+ mmisp/api_schemas/roles/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
79
+ mmisp/api_schemas/roles/role.py,sha256=rffb_AoUeS83VAgc0xh9ixZgF6Ki7T8CCLlUHsOgaVU,2980
80
+ mmisp/api_schemas/sharing_groups/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
81
+ mmisp/api_schemas/sharing_groups/add_org_to_sharing_group_body.py,sha256=yQe-6_kifCd0NiC5754aTHILcGFQFDzfAN6gjY2MC3g,131
82
+ mmisp/api_schemas/sharing_groups/add_org_to_sharing_group_legacy_body.py,sha256=KkHdx-tl_so-2Se5heaWz8hpokeJb7f9fN-l5IquuB0,113
83
+ mmisp/api_schemas/sharing_groups/add_server_to_sharing_group_body.py,sha256=Gi6FXaY7kBMLEArE8feEI3OWGWeDVhiTK0JJMvMAMhA,130
84
+ mmisp/api_schemas/sharing_groups/add_server_to_sharing_group_legacy_body.py,sha256=6Qi5SRrqtp012SSd2o6zujVAVzAe519UddxuGlYtikw,118
85
+ mmisp/api_schemas/sharing_groups/create_sharing_group_body.py,sha256=QOZ7e2t-CyrI3NyBGCWuTZ6I7d5gauqcM0vQnMRPUbA,428
86
+ mmisp/api_schemas/sharing_groups/create_sharing_group_legacy_body.py,sha256=-2jR_SVQdyia05t3FwOb5NModiHPfnSxKL7M41Etefo,862
87
+ mmisp/api_schemas/sharing_groups/create_sharing_group_legacy_response.py,sha256=csryRXmtJJY302yqAzj6y6onr9g9IRAkLUCebmvg9a0,524
88
+ mmisp/api_schemas/sharing_groups/delete_sharing_group_legacy_response.py,sha256=8nzXknFMX_UionNEFEitNtwz49krGeamJgpd4KIugp8,140
89
+ mmisp/api_schemas/sharing_groups/get_all_sharing_groups_response.py,sha256=meXd8a7rG1TPWy6Q4NN8YCA4M6-O7ydhofpzcl811q0,1443
90
+ mmisp/api_schemas/sharing_groups/get_sharing_group_info_response.py,sha256=G2JPT7jwZ53I0WBtFoui8T-x87p0WOhHR5_LB9tgG8s,1120
91
+ mmisp/api_schemas/sharing_groups/sharing_group.py,sha256=h3AjHYRDgpusJlcDbpDcsj3HGNulk9xK-_Ee9pCReRs,340
92
+ mmisp/api_schemas/sharing_groups/sharing_group_org.py,sha256=YEO-sMGGSN0j9uiNZtX1gZ2B8YoXz1KiS0GnBcGXcvE,138
93
+ mmisp/api_schemas/sharing_groups/sharing_group_server.py,sha256=mQgOl6iB34oBqvkju500vekNsViEsyb6hRf-pLyS3Hw,146
94
+ mmisp/api_schemas/sharing_groups/update_sharing_group_body.py,sha256=CyBsI_DMA5WcEelFf28_1Ka5puLPraloi6nsHzawMzo,357
95
+ mmisp/api_schemas/sharing_groups/update_sharing_group_legacy_body.py,sha256=ywiM53X3cFUWof-eSsieLN2BgnnkoGldrbgW9DgfKt8,1062
96
+ mmisp/api_schemas/sharing_groups/view_update_sharing_group_legacy_response.py,sha256=tTHBcFann-x5oleb4FzQeiWnalsQGdwEcfqiiOw_jhM,1084
97
+ mmisp/api_schemas/sightings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
98
+ mmisp/api_schemas/sightings/create_sighting_body.py,sha256=rWN-j98u4bByukOIhfFh7cSslaaSNWvL0nzecwyg284,1487
99
+ mmisp/api_schemas/sightings/get_sighting_response.py,sha256=byJAramAsHkcWyCxnZu1mbbRwsZIKNFtt-7iclfq_5c,589
100
+ mmisp/api_schemas/tags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
101
+ mmisp/api_schemas/tags/create_tag_body.py,sha256=KNAy4NsjCaCuxBz2s_sapfUYZHE5DWNhV4jdycc4tdQ,392
102
+ mmisp/api_schemas/tags/delete_tag_response.py,sha256=hiq9Y60l9DMxSM_VrRhoZ1VefG64BXc1v0jwrK9nRBk,156
103
+ mmisp/api_schemas/tags/get_tag_response.py,sha256=OawFrQTHJtQmuDM91Trqzsog3BAVAalgHJFORu_jmgU,645
104
+ mmisp/api_schemas/tags/search_tags_response.py,sha256=6FqDPV2QbBZpSGdFHGuiDdrJauG13626SR1giRw3Kxc,690
105
+ mmisp/api_schemas/tags/update_tag_body.py,sha256=24CtCiHjkGGmHAkQ4D6q1Ebp37DkQfnK9Cwi-qwY7Bs,369
106
+ mmisp/api_schemas/taxonomies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
107
+ mmisp/api_schemas/taxonomies/export_taxonomies_response.py,sha256=r-h-rls2u5IBXTYZPQfs2MXfYldvHNCyYPTZeYdiTHI,566
108
+ mmisp/api_schemas/taxonomies/get_taxonomy_by_id_response.py,sha256=k3_HKHikEc68bbloRm05f6LyY9oJb4W7yKplhej8n2Y,632
109
+ mmisp/api_schemas/taxonomies/get_taxonomy_response.py,sha256=5UOg0TJycnbJTB0X5tLUk2osT2AgzH2NFTuqakB86Mc,367
110
+ mmisp/api_schemas/taxonomies/get_taxonomy_tags_response.py,sha256=zx5Lk5ri7ChQFY7OdczdJRZGDRfPpUA4WPjjws0uWE4,676
111
+ mmisp/api_schemas/user_settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
112
+ mmisp/api_schemas/user_settings/get_uid_user_setting_response.py,sha256=k8sfm_cUhHDPWdokVwh-LF4-ZuXqWFexxPn6PnQ03LI,301
113
+ mmisp/api_schemas/user_settings/get_user_settings_response.py,sha256=QAiaUE_fSn5exFCnsVRPo8gDFS9DcETHg6DOfCKvC-c,232
114
+ mmisp/api_schemas/user_settings/search_user_setting_body.py,sha256=a0t8Lx5LYXBwN952sWLKQw2LMUhW58jyTx0yqKNr0BU,161
115
+ mmisp/api_schemas/user_settings/search_user_setting_response.py,sha256=BpkoBgUdWWddDSvGqxPlilKjznlQ7VXjrTa55O9RjEU,209
116
+ mmisp/api_schemas/user_settings/set_user_setting_body.py,sha256=W7PCu_88AfNwoxoEkZho63Hj-o6-PXHYrhBIIzp5AdI,93
117
+ mmisp/api_schemas/user_settings/set_user_setting_response.py,sha256=4Tr1n4QtQ3kaS9_TVy6fNJHuQt5MO9Xi968-T_yqQYM,267
118
+ mmisp/api_schemas/user_settings/view_user_setting_response.py,sha256=4bmT6we09UU20Zjs4txYkcDb02AuiL_6f0jSyOVFUQ4,270
119
+ mmisp/api_schemas/users/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
120
+ mmisp/api_schemas/users/user.py,sha256=OEwga5w-0nb3hfZj0ZaDBMOSnADmQan8fuRuRvqus4w,910
121
+ mmisp/api_schemas/users/users_view_me_response.py,sha256=chaoaE9w6fA8nFfssSChRY361OLwjtQEYudIIJtKWN8,267
122
+ mmisp/api_schemas/warninglists/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
123
+ mmisp/api_schemas/warninglists/check_value_warninglists_body.py,sha256=8yP7PGg4gD8dsdluBCVhK7r6wtdWxzGxGsZ6xdrqSPQ,136
124
+ mmisp/api_schemas/warninglists/check_value_warninglists_response.py,sha256=Hf_sTNaQOwl5ibiBInL5elIs4JxxGxM-22TEO6xil3g,225
125
+ mmisp/api_schemas/warninglists/create_warninglist_body.py,sha256=BcCheMwIOgqTHiUPgJJF-DEnL7z7qJqOinJsgHYj9rU,7189
126
+ mmisp/api_schemas/warninglists/delete_warninglist_response.py,sha256=fOp3tnXjyOzBSHDYPwy493mdBOqjcIMJiM5KwobK4XA,210
127
+ mmisp/api_schemas/warninglists/get_selected_all_warninglists_response.py,sha256=EOdHBfjut2TlgzzFvqNqqzcxYi3o5JKScmLBmYFM5qg,341
128
+ mmisp/api_schemas/warninglists/get_selected_warninglists_body.py,sha256=xztdxMiJCtJZMGzn52bcmy1TBRZPcIq0QW4A4_KOA3c,183
129
+ mmisp/api_schemas/warninglists/toggle_enable_warninglists_body.py,sha256=c5ih7CF9GBisXZL5W-diJNuwnNW-egYARSB7w_E3o6E,191
130
+ mmisp/api_schemas/warninglists/toggle_enable_warninglists_response.py,sha256=MTt88YYvRIZFPKUtr8xKxqrjspeQuiGiO-CIhAhAYHU,204
131
+ mmisp/api_schemas/warninglists/warninglist_response.py,sha256=Sqh5bKzW3ILRNcGZpmyEpJP6lKoJpwA_r1XlQA55S0Q,952
132
+ mmisp/db/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
133
+ mmisp/db/config.py,sha256=lysBy_eZSF66Eqg4zrIcUWKzwpfthijotNYrQKo7tQo,276
134
+ mmisp/db/database.py,sha256=2Mxu3noDY-orjFk2XH_WpdX9KRPNw7xwawSbpgwNn0g,1099
135
+ mmisp/db/print_changes.py,sha256=QiTVELTHd0kJe13KsgUJXGfAXvoK6STBIJhmMSxV5F0,1181
136
+ mmisp/db/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
137
+ mmisp/db/models/attribute.py,sha256=xyg6ofvSlY0mgeYG0rIa3hE0CzAGtyxJcOCEBNbAdaA,3685
138
+ mmisp/db/models/auth_key.py,sha256=0pDrJYsNSRKy3eky-kt6QBqsBE9XbL3bSTTLw2jSIwE,861
139
+ mmisp/db/models/event.py,sha256=cWsIUhD44pLDYBqQoCd0YKi2Dxs4Ky1xGXNb4F8wb3Y,2707
140
+ mmisp/db/models/feed.py,sha256=-tHBgEyjNyLWdUz-iOxQnDvG55maoJax76Ibt16tG74,1498
141
+ mmisp/db/models/galaxy.py,sha256=G0ML2iXeWA5cHPC1ku-4aP3XLdApYgSzwtVfD9Pua7k,858
142
+ mmisp/db/models/galaxy_cluster.py,sha256=q8FXn7e2GrJJGWva-OZRYt1UstEomon9gQy4CPaTUCk,2456
143
+ mmisp/db/models/identity_provider.py,sha256=j-sVkmrN8HJcGTPkvc2X4V0qJ_MAJcDj9dkvvy_Eark,846
144
+ mmisp/db/models/noticelist.py,sha256=qFZz__IoU_i2fMS_vycgKoCDuoLb5U290DxGNaNSx5c,888
145
+ mmisp/db/models/object.py,sha256=JB2fTXozwei0kVpk4TlGE1qwdbRG4i0iemuUoRn_5jA,1819
146
+ mmisp/db/models/organisation.py,sha256=wbANx3FFbakaUNVeaphjwA0mabR7Dstici6kHL8mxgI,940
147
+ mmisp/db/models/role.py,sha256=Bt6BOmGz3vARFx5S7TAjTCD-l7naAdytC59YB5D9sjo,2188
148
+ mmisp/db/models/server.py,sha256=7hS8eWfgtzKRVSHfU2ljXFgL4I5lOVXmdv0hwREj3wc,1495
149
+ mmisp/db/models/sharing_group.py,sha256=65fioUzQwgXdAQQxNKkyq2D_JcYwxpXH_SHw_PrfDiw,1727
150
+ mmisp/db/models/sighting.py,sha256=VcIrxTO-UyRAW26X9GU1MtbvBTU7msSg3MetAXyixJI,829
151
+ mmisp/db/models/tag.py,sha256=yjgGQavk_epQunYjzAAPsVLoYHtBqE2ZYdyE-wpDJo4,752
152
+ mmisp/db/models/taxonomy.py,sha256=LUbHJpCqDbX-ovHk90OrIYmEGagdK1LPs3eBSMaz1wE,1434
153
+ mmisp/db/models/user.py,sha256=jnJMoTUrQiqufTOL2OYvbt5xGb8LqwVCCOzZNYltccY,2068
154
+ mmisp/db/models/user_setting.py,sha256=7121LDhL-R9wbA3ihtQYxqdCW8WvxzDdad_Wxdzs_N8,997
155
+ mmisp/db/models/warninglist.py,sha256=s7A6svcawHjm3-XL2wU1VWcW-zwtu-VEUBCjv1z-648,1185
156
+ mmisp/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
157
+ mmisp/lib/attributes.py,sha256=jMl9Mm4tSSctxaI7ypO7cIloPAqmEZT85liY1O76S00,53293
158
+ mmisp_lib-0.1.0.dist-info/METADATA,sha256=k8rUZJadeA0-Efi4-tCl26U8fRD3gGs50yX547wulSI,3107
159
+ mmisp_lib-0.1.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
160
+ mmisp_lib-0.1.0.dist-info/top_level.txt,sha256=cjyKFh14OgD-t_4m56A9t8tN0nI_73ZPJ0BU6oXqe4o,6
161
+ mmisp_lib-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: bdist_wheel (0.43.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ mmisp