osscodeiq 0.0.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 (183) hide show
  1. osscodeiq/__init__.py +0 -0
  2. osscodeiq/analyzer.py +467 -0
  3. osscodeiq/cache/__init__.py +0 -0
  4. osscodeiq/cache/hasher.py +23 -0
  5. osscodeiq/cache/store.py +300 -0
  6. osscodeiq/classifiers/__init__.py +0 -0
  7. osscodeiq/classifiers/layer_classifier.py +69 -0
  8. osscodeiq/cli.py +721 -0
  9. osscodeiq/config.py +113 -0
  10. osscodeiq/detectors/__init__.py +0 -0
  11. osscodeiq/detectors/auth/__init__.py +0 -0
  12. osscodeiq/detectors/auth/certificate_auth.py +139 -0
  13. osscodeiq/detectors/auth/ldap_auth.py +89 -0
  14. osscodeiq/detectors/auth/session_header_auth.py +120 -0
  15. osscodeiq/detectors/base.py +41 -0
  16. osscodeiq/detectors/config/__init__.py +0 -0
  17. osscodeiq/detectors/config/batch_structure.py +128 -0
  18. osscodeiq/detectors/config/cloudformation.py +183 -0
  19. osscodeiq/detectors/config/docker_compose.py +179 -0
  20. osscodeiq/detectors/config/github_actions.py +150 -0
  21. osscodeiq/detectors/config/gitlab_ci.py +216 -0
  22. osscodeiq/detectors/config/helm_chart.py +187 -0
  23. osscodeiq/detectors/config/ini_structure.py +101 -0
  24. osscodeiq/detectors/config/json_structure.py +72 -0
  25. osscodeiq/detectors/config/kubernetes.py +305 -0
  26. osscodeiq/detectors/config/kubernetes_rbac.py +212 -0
  27. osscodeiq/detectors/config/openapi.py +194 -0
  28. osscodeiq/detectors/config/package_json.py +99 -0
  29. osscodeiq/detectors/config/properties_detector.py +108 -0
  30. osscodeiq/detectors/config/pyproject_toml.py +169 -0
  31. osscodeiq/detectors/config/sql_structure.py +155 -0
  32. osscodeiq/detectors/config/toml_structure.py +93 -0
  33. osscodeiq/detectors/config/tsconfig_json.py +105 -0
  34. osscodeiq/detectors/config/yaml_structure.py +82 -0
  35. osscodeiq/detectors/cpp/__init__.py +0 -0
  36. osscodeiq/detectors/cpp/cpp_structures.py +192 -0
  37. osscodeiq/detectors/csharp/__init__.py +0 -0
  38. osscodeiq/detectors/csharp/csharp_efcore.py +184 -0
  39. osscodeiq/detectors/csharp/csharp_minimal_apis.py +156 -0
  40. osscodeiq/detectors/csharp/csharp_structures.py +317 -0
  41. osscodeiq/detectors/docs/__init__.py +0 -0
  42. osscodeiq/detectors/docs/markdown_structure.py +117 -0
  43. osscodeiq/detectors/frontend/__init__.py +0 -0
  44. osscodeiq/detectors/frontend/angular_components.py +177 -0
  45. osscodeiq/detectors/frontend/frontend_routes.py +259 -0
  46. osscodeiq/detectors/frontend/react_components.py +148 -0
  47. osscodeiq/detectors/frontend/svelte_components.py +84 -0
  48. osscodeiq/detectors/frontend/vue_components.py +150 -0
  49. osscodeiq/detectors/generic/__init__.py +1 -0
  50. osscodeiq/detectors/generic/imports_detector.py +413 -0
  51. osscodeiq/detectors/go/__init__.py +0 -0
  52. osscodeiq/detectors/go/go_orm.py +202 -0
  53. osscodeiq/detectors/go/go_structures.py +162 -0
  54. osscodeiq/detectors/go/go_web.py +157 -0
  55. osscodeiq/detectors/iac/__init__.py +0 -0
  56. osscodeiq/detectors/iac/bicep.py +135 -0
  57. osscodeiq/detectors/iac/dockerfile.py +182 -0
  58. osscodeiq/detectors/iac/terraform.py +188 -0
  59. osscodeiq/detectors/java/__init__.py +0 -0
  60. osscodeiq/detectors/java/azure_functions.py +424 -0
  61. osscodeiq/detectors/java/azure_messaging.py +350 -0
  62. osscodeiq/detectors/java/class_hierarchy.py +349 -0
  63. osscodeiq/detectors/java/config_def.py +82 -0
  64. osscodeiq/detectors/java/cosmos_db.py +105 -0
  65. osscodeiq/detectors/java/graphql_resolver.py +188 -0
  66. osscodeiq/detectors/java/grpc_service.py +142 -0
  67. osscodeiq/detectors/java/ibm_mq.py +178 -0
  68. osscodeiq/detectors/java/jaxrs.py +160 -0
  69. osscodeiq/detectors/java/jdbc.py +196 -0
  70. osscodeiq/detectors/java/jms.py +116 -0
  71. osscodeiq/detectors/java/jpa_entity.py +143 -0
  72. osscodeiq/detectors/java/kafka.py +113 -0
  73. osscodeiq/detectors/java/kafka_protocol.py +70 -0
  74. osscodeiq/detectors/java/micronaut.py +248 -0
  75. osscodeiq/detectors/java/module_deps.py +191 -0
  76. osscodeiq/detectors/java/public_api.py +206 -0
  77. osscodeiq/detectors/java/quarkus.py +176 -0
  78. osscodeiq/detectors/java/rabbitmq.py +150 -0
  79. osscodeiq/detectors/java/raw_sql.py +136 -0
  80. osscodeiq/detectors/java/repository.py +131 -0
  81. osscodeiq/detectors/java/rmi.py +129 -0
  82. osscodeiq/detectors/java/spring_events.py +117 -0
  83. osscodeiq/detectors/java/spring_rest.py +168 -0
  84. osscodeiq/detectors/java/spring_security.py +212 -0
  85. osscodeiq/detectors/java/tibco_ems.py +193 -0
  86. osscodeiq/detectors/java/websocket.py +188 -0
  87. osscodeiq/detectors/kotlin/__init__.py +0 -0
  88. osscodeiq/detectors/kotlin/kotlin_structures.py +124 -0
  89. osscodeiq/detectors/kotlin/ktor_routes.py +163 -0
  90. osscodeiq/detectors/proto/__init__.py +0 -0
  91. osscodeiq/detectors/proto/proto_structure.py +153 -0
  92. osscodeiq/detectors/python/__init__.py +0 -0
  93. osscodeiq/detectors/python/celery_tasks.py +88 -0
  94. osscodeiq/detectors/python/django_auth.py +132 -0
  95. osscodeiq/detectors/python/django_models.py +157 -0
  96. osscodeiq/detectors/python/django_views.py +74 -0
  97. osscodeiq/detectors/python/fastapi_auth.py +143 -0
  98. osscodeiq/detectors/python/fastapi_routes.py +68 -0
  99. osscodeiq/detectors/python/flask_routes.py +67 -0
  100. osscodeiq/detectors/python/kafka_python.py +175 -0
  101. osscodeiq/detectors/python/pydantic_models.py +115 -0
  102. osscodeiq/detectors/python/python_structures.py +234 -0
  103. osscodeiq/detectors/python/sqlalchemy_models.py +82 -0
  104. osscodeiq/detectors/registry.py +100 -0
  105. osscodeiq/detectors/rust/__init__.py +0 -0
  106. osscodeiq/detectors/rust/actix_web.py +234 -0
  107. osscodeiq/detectors/rust/rust_structures.py +174 -0
  108. osscodeiq/detectors/scala/__init__.py +0 -0
  109. osscodeiq/detectors/scala/scala_structures.py +128 -0
  110. osscodeiq/detectors/shell/__init__.py +0 -0
  111. osscodeiq/detectors/shell/bash_detector.py +127 -0
  112. osscodeiq/detectors/shell/powershell_detector.py +118 -0
  113. osscodeiq/detectors/typescript/__init__.py +0 -0
  114. osscodeiq/detectors/typescript/express_routes.py +55 -0
  115. osscodeiq/detectors/typescript/fastify_routes.py +156 -0
  116. osscodeiq/detectors/typescript/graphql_resolvers.py +100 -0
  117. osscodeiq/detectors/typescript/kafka_js.py +164 -0
  118. osscodeiq/detectors/typescript/mongoose_orm.py +151 -0
  119. osscodeiq/detectors/typescript/nestjs_controllers.py +99 -0
  120. osscodeiq/detectors/typescript/nestjs_guards.py +138 -0
  121. osscodeiq/detectors/typescript/passport_jwt.py +133 -0
  122. osscodeiq/detectors/typescript/prisma_orm.py +96 -0
  123. osscodeiq/detectors/typescript/remix_routes.py +160 -0
  124. osscodeiq/detectors/typescript/sequelize_orm.py +136 -0
  125. osscodeiq/detectors/typescript/typeorm_entities.py +86 -0
  126. osscodeiq/detectors/typescript/typescript_structures.py +185 -0
  127. osscodeiq/detectors/utils.py +49 -0
  128. osscodeiq/discovery/__init__.py +11 -0
  129. osscodeiq/discovery/change_detector.py +97 -0
  130. osscodeiq/discovery/file_discovery.py +342 -0
  131. osscodeiq/flow/__init__.py +0 -0
  132. osscodeiq/flow/engine.py +78 -0
  133. osscodeiq/flow/models.py +72 -0
  134. osscodeiq/flow/renderer.py +127 -0
  135. osscodeiq/flow/templates/interactive.html +252 -0
  136. osscodeiq/flow/vendor/cytoscape-dagre.min.js +8 -0
  137. osscodeiq/flow/vendor/cytoscape.min.js +32 -0
  138. osscodeiq/flow/vendor/dagre.min.js +3809 -0
  139. osscodeiq/flow/views.py +357 -0
  140. osscodeiq/graph/__init__.py +0 -0
  141. osscodeiq/graph/backend.py +52 -0
  142. osscodeiq/graph/backends/__init__.py +23 -0
  143. osscodeiq/graph/backends/kuzu.py +576 -0
  144. osscodeiq/graph/backends/networkx.py +135 -0
  145. osscodeiq/graph/backends/sqlite_backend.py +406 -0
  146. osscodeiq/graph/builder.py +297 -0
  147. osscodeiq/graph/query.py +228 -0
  148. osscodeiq/graph/store.py +183 -0
  149. osscodeiq/graph/views.py +231 -0
  150. osscodeiq/models/__init__.py +17 -0
  151. osscodeiq/models/graph.py +116 -0
  152. osscodeiq/output/__init__.py +0 -0
  153. osscodeiq/output/dot.py +171 -0
  154. osscodeiq/output/mermaid.py +160 -0
  155. osscodeiq/output/safety.py +58 -0
  156. osscodeiq/output/serializers.py +42 -0
  157. osscodeiq/parsing/__init__.py +5 -0
  158. osscodeiq/parsing/languages/__init__.py +0 -0
  159. osscodeiq/parsing/languages/base.py +23 -0
  160. osscodeiq/parsing/languages/java.py +68 -0
  161. osscodeiq/parsing/languages/python.py +57 -0
  162. osscodeiq/parsing/languages/typescript.py +95 -0
  163. osscodeiq/parsing/parser_manager.py +125 -0
  164. osscodeiq/parsing/structured/__init__.py +0 -0
  165. osscodeiq/parsing/structured/gradle_parser.py +78 -0
  166. osscodeiq/parsing/structured/json_parser.py +24 -0
  167. osscodeiq/parsing/structured/properties_parser.py +56 -0
  168. osscodeiq/parsing/structured/sql_parser.py +54 -0
  169. osscodeiq/parsing/structured/xml_parser.py +148 -0
  170. osscodeiq/parsing/structured/yaml_parser.py +38 -0
  171. osscodeiq/server/__init__.py +7 -0
  172. osscodeiq/server/app.py +53 -0
  173. osscodeiq/server/mcp_server.py +174 -0
  174. osscodeiq/server/middleware.py +16 -0
  175. osscodeiq/server/routes.py +184 -0
  176. osscodeiq/server/service.py +445 -0
  177. osscodeiq/server/templates/welcome.html +56 -0
  178. osscodeiq-0.0.0.dist-info/METADATA +30 -0
  179. osscodeiq-0.0.0.dist-info/RECORD +183 -0
  180. osscodeiq-0.0.0.dist-info/WHEEL +5 -0
  181. osscodeiq-0.0.0.dist-info/entry_points.txt +2 -0
  182. osscodeiq-0.0.0.dist-info/licenses/LICENSE +21 -0
  183. osscodeiq-0.0.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,183 @@
1
+ osscodeiq/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ osscodeiq/analyzer.py,sha256=2NWYcYXiqh_IVSiEGpm-VYfhxE-jDCBNdnv1TxLaRIw,17768
3
+ osscodeiq/cli.py,sha256=TYQEv86rHYHbRPFabBiYdg5Anec--RAZ_TrxwevXSfs,29326
4
+ osscodeiq/config.py,sha256=QtGgqUfPix0RHhkHEyV78VejrdbC6km5H5O8DApkrcU,3622
5
+ osscodeiq/cache/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
+ osscodeiq/cache/hasher.py,sha256=weiK1JegxTRVBKsQnYEOTVQ05sjjHtlvDDuQj2kssEM,606
7
+ osscodeiq/cache/store.py,sha256=vmCzwJ_VhGCAciS1DzwKfkbZ2hHTVogRR9N96GghjNI,10272
8
+ osscodeiq/classifiers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
+ osscodeiq/classifiers/layer_classifier.py,sha256=55X3yA5UEEG9gMH-audaihy0kogE1enKQmKB7k7mpqE,2658
10
+ osscodeiq/detectors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ osscodeiq/detectors/base.py,sha256=Eg5rKqpbXqyTC2QA2bM-APDZNs47LmO9z3gur-mpfQ0,1096
12
+ osscodeiq/detectors/registry.py,sha256=YrCLzjHpG-3RGUIpq3EuziBYoIYlqaCOo6UE4OQbDDc,3791
13
+ osscodeiq/detectors/utils.py,sha256=prNN5CMzrbgseusWmHi_EtGF0IZc5_FXGIVQ2O01dpk,1604
14
+ osscodeiq/detectors/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
+ osscodeiq/detectors/auth/certificate_auth.py,sha256=PgpfNTLgSuUVO_IW1p5Dl4F9PDH4QlXCVTn36HiwLfc,5322
16
+ osscodeiq/detectors/auth/ldap_auth.py,sha256=IK7pi3naugvTGEQmsEiy7PBQuK3GT_01JywZOu_2aUs,3106
17
+ osscodeiq/detectors/auth/session_header_auth.py,sha256=sfB3G-m3Aw1f1LkFf5LBLyewFwS9QXjSlIq-OKoLJcQ,4330
18
+ osscodeiq/detectors/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
+ osscodeiq/detectors/config/batch_structure.py,sha256=pXhAk4E8SQUU3OCUuyKaDEQbMpnGPHWH3zu0Osz2-Ks,4214
20
+ osscodeiq/detectors/config/cloudformation.py,sha256=UJkzdWawwGQaT7K1Q0sVAqqkAlNNSHNMT4Dc97E_Hmw,6559
21
+ osscodeiq/detectors/config/docker_compose.py,sha256=rLmsBelALtxL9mDpO-iTmUZfUApleGBGlqcSMEY7x1k,6822
22
+ osscodeiq/detectors/config/github_actions.py,sha256=8HeCm1DhfzK7z14oT0_iOaz1zVfCEWJS2U3XAOe3A9A,5352
23
+ osscodeiq/detectors/config/gitlab_ci.py,sha256=QkePMyQajP4w2Pd5x91qhnaCn_D7Zg4te_DdHhPSDGA,6833
24
+ osscodeiq/detectors/config/helm_chart.py,sha256=e51KLVU-UxqyAUyPbw4o9aI6XNo6JAK5VSGcoNqXaEM,6385
25
+ osscodeiq/detectors/config/ini_structure.py,sha256=PV6imzbqwQ7q1_6BnUbm1jmwRXvC_Y93WoEpdYPscg0,3243
26
+ osscodeiq/detectors/config/json_structure.py,sha256=02fyQM9F6LB-D7DiAfMaKwx81Idxa2E2TEeo6_YGqSE,2126
27
+ osscodeiq/detectors/config/kubernetes.py,sha256=JVjGRCf29nqYSdKKpuNHvyDuHhBwEIDQBPnQcKKWpr0,11561
28
+ osscodeiq/detectors/config/kubernetes_rbac.py,sha256=0QsxGawKbbLSc7w6JRTY0kKZyrbjLWPY8VKQRPhjkWk,7512
29
+ osscodeiq/detectors/config/openapi.py,sha256=_tYsAqjO7mdCUTjb_PkF4eapKiotKwWWyDF7UxqepnM,7279
30
+ osscodeiq/detectors/config/package_json.py,sha256=kXpmAGFLXGJnsmcTbSSqofbnDxPD22yHqH7avMzN6BE,3500
31
+ osscodeiq/detectors/config/properties_detector.py,sha256=IXpMOg8E2CRLtDhUzIkTJjHBwh9ZOXFeIrUhmHnVU5I,3345
32
+ osscodeiq/detectors/config/pyproject_toml.py,sha256=BqMr0pwyUVReYLAFLwF9Sxjl6SrRfTCq1zouU3D3c9g,5860
33
+ osscodeiq/detectors/config/sql_structure.py,sha256=NpDiOKlE5MPe1vcRow73XOl7HQ6VqUb8g5CrSK2sTqc,5041
34
+ osscodeiq/detectors/config/toml_structure.py,sha256=h6_-KUUckzicxCitv-FN0cnI7AkZEiIEQl12o36M2-A,2573
35
+ osscodeiq/detectors/config/tsconfig_json.py,sha256=E4tSy50J36kcfQnUW-CJiKWugIQYdsTC-oTE_8bHxRg,3598
36
+ osscodeiq/detectors/config/yaml_structure.py,sha256=pySo3NopPkooW-g4B0J-ZH5eVMMZXFyekOKqEfMX_dU,2547
37
+ osscodeiq/detectors/cpp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
+ osscodeiq/detectors/cpp/cpp_structures.py,sha256=aLEtuLNr6b1nAEvU7IZBi9EAIZpfuYGVL6GKLbu4nhY,6334
39
+ osscodeiq/detectors/csharp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
40
+ osscodeiq/detectors/csharp/csharp_efcore.py,sha256=Bg3aHgZyFqtTnzsuMepKLEtrk_xrYhkRR4xazRMrQc4,7707
41
+ osscodeiq/detectors/csharp/csharp_minimal_apis.py,sha256=OQZB22w-8MKTFy0JX6yaU6cSImtH7_XFZOiD4g1VLRo,6208
42
+ osscodeiq/detectors/csharp/csharp_structures.py,sha256=pAiadZci_t6zZ1T46cpgR0qMghOB74wbY3aN5v4tzaU,11647
43
+ osscodeiq/detectors/docs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
44
+ osscodeiq/detectors/docs/markdown_structure.py,sha256=jIfx725XALQlmIhRuZ8eMVaBBdFN2YrfmVCd5IVIsK4,3564
45
+ osscodeiq/detectors/frontend/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
46
+ osscodeiq/detectors/frontend/angular_components.py,sha256=bUx3GAYlOZVAXnJFuYjWQqDw_JnCtIbbzYYVMuVVp-A,6770
47
+ osscodeiq/detectors/frontend/frontend_routes.py,sha256=1UoKC7fftYl1TIOp0wdtgKechoaSAmCWcPDW-Xec_f0,9439
48
+ osscodeiq/detectors/frontend/react_components.py,sha256=zgSlqgdaugeKir67N4X6lJejjr3g3qVpnlgMdNt6834,5608
49
+ osscodeiq/detectors/frontend/svelte_components.py,sha256=DldTkgF8S4jbQy5TYiXGyUkhpYF9kCEdYKSiqEM_w6Q,3219
50
+ osscodeiq/detectors/frontend/vue_components.py,sha256=7zNjy6lXpMWmW-7bsnZVducE8fv-rxfKTBlmcn1SvjI,5641
51
+ osscodeiq/detectors/generic/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
52
+ osscodeiq/detectors/generic/imports_detector.py,sha256=nexAoeWXTGZklxfKpuEoZu17owApNjRAwjuylfhHw_g,14237
53
+ osscodeiq/detectors/go/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
54
+ osscodeiq/detectors/go/go_orm.py,sha256=6zXp6cb3JhsnsTym5Er1IQNiuQYZ4q9sdcqy_eFzm0o,7018
55
+ osscodeiq/detectors/go/go_structures.py,sha256=JJuFDSYXc0X0PpcUw9_2bfU8i3qvdbiYvZjzCmDEdaU,6289
56
+ osscodeiq/detectors/go/go_web.py,sha256=3G1XhmZDOa4ToUwuzzWIhBb21_FkSq0boTzEF6WLe5c,5814
57
+ osscodeiq/detectors/iac/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
58
+ osscodeiq/detectors/iac/bicep.py,sha256=klA6iwCpvrcEv45TqcHEJk1eP7QsErRE_bujOOPI1Y0,4274
59
+ osscodeiq/detectors/iac/dockerfile.py,sha256=1qxLF9CTC_3-Va255qFswSIeAxu8q5zGuSOQl2IvryE,6613
60
+ osscodeiq/detectors/iac/terraform.py,sha256=jDSZECRa1-Lp9OqvWSc0KLZuukeTV6BrOHYklTfLNv4,6885
61
+ osscodeiq/detectors/java/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
62
+ osscodeiq/detectors/java/azure_functions.py,sha256=msB5Gtt7oS3NexoAY1RkAUhlnfVteh_aTnaLs3JJg8k,17193
63
+ osscodeiq/detectors/java/azure_messaging.py,sha256=uv285kp4hoRzAYACiWfEDiktyGD3jWTmm_108dkRNHw,13820
64
+ osscodeiq/detectors/java/class_hierarchy.py,sha256=x3GvjI_tCjyvRhBGSwE5Fdd5FI-CjSM-59gWSr8zxs8,12170
65
+ osscodeiq/detectors/java/config_def.py,sha256=7KPWWeVMmzsKOOFYKL456qrE1IRTgN_mTU1m-W6E2Bk,2296
66
+ osscodeiq/detectors/java/cosmos_db.py,sha256=AqsTnhw1NFMXUw_Wu_7GcLlx9ssmvfN9CGvqybFtu8A,4073
67
+ osscodeiq/detectors/java/graphql_resolver.py,sha256=jpcv_XqPgfuv3X09RKtawPAS0XfJ-DbMbKZpe9RcJvg,7683
68
+ osscodeiq/detectors/java/grpc_service.py,sha256=-eN0BOUozOQK78jy7tOhyw3BUoFCs-Hrp0-ANdJCCu0,4937
69
+ osscodeiq/detectors/java/ibm_mq.py,sha256=rU1NW2wjyD7rBSjWucD-cH4ngq4lE91aq9u0CRVjJO4,6548
70
+ osscodeiq/detectors/java/jaxrs.py,sha256=QWJw9vCewXC0UuVsQTO2vWLtrV-q-lBR0_8Lxa_-62s,5712
71
+ osscodeiq/detectors/java/jdbc.py,sha256=XkvJEMsseeBOrLRc6rbK3u9rieh7aetj_tREh13jjKg,6528
72
+ osscodeiq/detectors/java/jms.py,sha256=Hex-EAKj693R9Sxk8LsIGs-VatW5HcyWQOtm3Opr3Mk,3465
73
+ osscodeiq/detectors/java/jpa_entity.py,sha256=FqOIzJCoHkRqbrABzhJ-AS-_wfYhGFssiGgs2P-2f_8,5145
74
+ osscodeiq/detectors/java/kafka.py,sha256=sfhLx8uP2RS1D5l231KYf1uTyp3MoU45eWeIj9ACJYc,3549
75
+ osscodeiq/detectors/java/kafka_protocol.py,sha256=XeP0gW-pDloo5Q84ty91rXY2noJZLWyXgNABIY1Si2k,2061
76
+ osscodeiq/detectors/java/micronaut.py,sha256=cY4kO4nZac5E3RGXdrhdoZMgQSHgGd6CDf0x31lM66Y,9842
77
+ osscodeiq/detectors/java/module_deps.py,sha256=CtOi_qs8o6TsYWRamWDBer9gtA-rQ0iZnonQfjpVy0I,7281
78
+ osscodeiq/detectors/java/public_api.py,sha256=uhY6Z4ZbKBgH1Fh9BhXJVVgtL-bds9n_f7M9Pm2wLZg,7227
79
+ osscodeiq/detectors/java/quarkus.py,sha256=Js7Bx-whWMYmwGh3alHp5LN3LBIlRVrGKIcAcIyy--w,6644
80
+ osscodeiq/detectors/java/rabbitmq.py,sha256=yQvNXHseUPlD5n0BhMp6JEB0DRfUlPKx2zZ4LBTPmwg,4916
81
+ osscodeiq/detectors/java/raw_sql.py,sha256=2ufh4QYCwY0pWrrXWpx2m2V0TvlP5ivRDYSV8EjCI_s,4823
82
+ osscodeiq/detectors/java/repository.py,sha256=nZVrHPOQ1Gwg3Lgb99k9sNCfBRKaNjzKvE7MCyheprc,4463
83
+ osscodeiq/detectors/java/rmi.py,sha256=g53GOw0iABZoeqxb5DEOKZf3bgfOZckzJ9zv79qZ33I,4656
84
+ osscodeiq/detectors/java/spring_events.py,sha256=YiEFotxkiKbdLpnaC2bZuyPfeUdNPn6OyAyJLTzPa-M,4043
85
+ osscodeiq/detectors/java/spring_rest.py,sha256=8hiAZtpTbQrdYh-l-V-PwFWWhTVYbBIjeHTxlRLbXlQ,5841
86
+ osscodeiq/detectors/java/spring_security.py,sha256=nH6fh1eyboVackfhc_Mg5CNg1pKykb7HMJC4kAhlOCU,7908
87
+ osscodeiq/detectors/java/tibco_ems.py,sha256=W16ftBuEy9cAB7UFx69fEpO5xPpbB7zaMJctgQf8s2c,7293
88
+ osscodeiq/detectors/java/websocket.py,sha256=QTFgMbcbtWc8kzJRherNnRcTNsBravr8uZsZn6UfERs,6669
89
+ osscodeiq/detectors/kotlin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
90
+ osscodeiq/detectors/kotlin/kotlin_structures.py,sha256=ZSVQVLmYlSFTBUibBzb5AAjq9_gphXUZr6MwB1HcqPU,4436
91
+ osscodeiq/detectors/kotlin/ktor_routes.py,sha256=mHlrByV9syNJbdWeMuQaNfUm9PMo8ShPod53h4KLLTs,6019
92
+ osscodeiq/detectors/proto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
93
+ osscodeiq/detectors/proto/proto_structure.py,sha256=Y8qjAWlZjqfI8M4esaYza8q8RXB-LJhEViCcPM1kGEI,5290
94
+ osscodeiq/detectors/python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
95
+ osscodeiq/detectors/python/celery_tasks.py,sha256=EX0CC_1BgQx6V0f4sic_iNP1EXrjz6yas0fGDww7e6E,3121
96
+ osscodeiq/detectors/python/django_auth.py,sha256=2CPPXL-XP9H3WD9FS4F1yLRUuo0mSkuYOHZN9esk7gk,4900
97
+ osscodeiq/detectors/python/django_models.py,sha256=KmaDdQM9yCQlNRIrPjvfr4rIFei5Kp8aMITmQiflRv4,6018
98
+ osscodeiq/detectors/python/django_views.py,sha256=mJTzH74F_Za6VFUrVpZ9VpEezwzgOXXn1hEJ7B4J9A8,2782
99
+ osscodeiq/detectors/python/fastapi_auth.py,sha256=cXXIFQmaaMfFgVISEFCDNymS2sb-AZw9xW9kQjO5xc0,5181
100
+ osscodeiq/detectors/python/fastapi_routes.py,sha256=ERBkBQLqqBHhBJHj7yvOyCX6RrsiaS7EeKAXF8ebMK0,2318
101
+ osscodeiq/detectors/python/flask_routes.py,sha256=9BMYRDOGGo55WSYk2nuxSSFenA8sChve6NnVByEcG0E,2347
102
+ osscodeiq/detectors/python/kafka_python.py,sha256=kMeyyROSGTVGz3w0B5mKCW3AAWUMm3C3MKIFv2b19X4,5987
103
+ osscodeiq/detectors/python/pydantic_models.py,sha256=XezABjpQO1mb3NdGs_RfoZgozUiZTT6pNygODMJaAx8,4491
104
+ osscodeiq/detectors/python/python_structures.py,sha256=GPiy_ApoYp-eB5EUzEwxOypENYtBE7OKFQ4CTbrtoTw,8679
105
+ osscodeiq/detectors/python/sqlalchemy_models.py,sha256=uxilUiCzu8OnIpoatgskAKT9vG6TKOvut0x33Md3ytw,3156
106
+ osscodeiq/detectors/rust/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
107
+ osscodeiq/detectors/rust/actix_web.py,sha256=C0YwbGaYYlHRN29fCTcv2IHxd0IfIO-4cyqpCquwXM0,8684
108
+ osscodeiq/detectors/rust/rust_structures.py,sha256=hCDIPyzWI1P1bmL_ldT8CnI7IXVQsBXY2Ko9VXGc_XQ,6413
109
+ osscodeiq/detectors/scala/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
110
+ osscodeiq/detectors/scala/scala_structures.py,sha256=s-oWvgs_Vc_vtJ11D1kysFMo9v1EOpgfBudzTU32_h8,4439
111
+ osscodeiq/detectors/shell/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
112
+ osscodeiq/detectors/shell/bash_detector.py,sha256=tskyZ5sju8tjSvWAdXK4mHOckqNEOk5g8tp4JWwTCU0,4184
113
+ osscodeiq/detectors/shell/powershell_detector.py,sha256=Fhvo7XYyq21O5B_nFwTOOa4TT-eqmwVkoDEJdlLwCu8,4074
114
+ osscodeiq/detectors/typescript/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
115
+ osscodeiq/detectors/typescript/express_routes.py,sha256=uUTqTR8xL-1EjzZtR6MuOfLT794328MYYai68eUMTPg,1971
116
+ osscodeiq/detectors/typescript/fastify_routes.py,sha256=od5OaY8_ZiVXnayXF1c1FEIKAeLpXG33UreVq8LDMoU,5683
117
+ osscodeiq/detectors/typescript/graphql_resolvers.py,sha256=n41Y8o7tRjhW9RRx0TNTgQPSvn37Sv7nU8F3FMGQbU4,3933
118
+ osscodeiq/detectors/typescript/kafka_js.py,sha256=pUvHk6EfvCyr-rHMXti5DzfHlgNKs-AkqmVmbqF2Cqg,5969
119
+ osscodeiq/detectors/typescript/mongoose_orm.py,sha256=zadOonVY983oBSlJcDAIwpm0ZsAlk-AkyaaENvt-f7c,6226
120
+ osscodeiq/detectors/typescript/nestjs_controllers.py,sha256=t94PSQaKKCZ5HifY30oE-afv4xP0JVlpljlPSrXjHw0,3965
121
+ osscodeiq/detectors/typescript/nestjs_guards.py,sha256=ZSpM71kdoaCoPEHw5SoiKQqnEqlOv8xxiBlHxTHzzMA,5253
122
+ osscodeiq/detectors/typescript/passport_jwt.py,sha256=bkg2Sdm3Hw7cNw43xx_duw-71C_Nr315JEbnGKQCpgE,5299
123
+ osscodeiq/detectors/typescript/prisma_orm.py,sha256=5BWpJmaZVtTh22YbXzk3phWqzkU0RpYjwjifX5XSFgg,3894
124
+ osscodeiq/detectors/typescript/remix_routes.py,sha256=yP90Rm_ofBh6TkUeLHfSW4jkZnsHdNuUVAFnjeZJf4c,5822
125
+ osscodeiq/detectors/typescript/sequelize_orm.py,sha256=JNw_kkvc56lf8CdeJRJoTi4MOiF4HSK_3CcZX-PxMIU,5560
126
+ osscodeiq/detectors/typescript/typeorm_entities.py,sha256=GNgKkh8HWiCjFDlS9YBv6bVqXCrDjsA20mYd_iSAObI,3122
127
+ osscodeiq/detectors/typescript/typescript_structures.py,sha256=Dplt8InzkbsLzOVeRQrP-Ae2JeYXIShNHHahR3BlNv0,6480
128
+ osscodeiq/discovery/__init__.py,sha256=_6DVBYohDZjxTh0XyLTVEJRCVLFZgzhRHbuQRodUfYo,182
129
+ osscodeiq/discovery/change_detector.py,sha256=wGlmrT7chXW-Iuzv2qCPE5x4K7DHNIpCwFT0DnB17bE,2919
130
+ osscodeiq/discovery/file_discovery.py,sha256=UCos8sj4oKQW-V5hh82msXNmBF7r9hxv1UNt2MGXUNQ,9937
131
+ osscodeiq/flow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
132
+ osscodeiq/flow/engine.py,sha256=B5nRA8IOkE4zIH363nMmrCX-25lMYDhiU4_7tY6UDPk,2623
133
+ osscodeiq/flow/models.py,sha256=Ww9VqLNctqO6GTvZEl1GIDuq895OlGwmIwRzhww2sa8,2587
134
+ osscodeiq/flow/renderer.py,sha256=4HR8BLpTspkjJAqZXaFRycQfzxEKhefS9_r-9umjuCM,4410
135
+ osscodeiq/flow/views.py,sha256=Oa13NmySE_I1vYnE2YlE2YkBxpFzmH-nJrRFFfMg0Cg,18972
136
+ osscodeiq/flow/templates/interactive.html,sha256=rbst25MejFlo4Ww33TXDhLRn01Mg2N6La6p0Y0DiCJk,13211
137
+ osscodeiq/flow/vendor/cytoscape-dagre.min.js,sha256=0NVtyTSPfXZAezsnzZZrfKgvPhuSJNTiG7sHlc4b1Mo,4550
138
+ osscodeiq/flow/vendor/cytoscape.min.js,sha256=G7U0DlSVEeERsx5WhIcslJrTPUDqXboK2OfZDGLHs7k,373734
139
+ osscodeiq/flow/vendor/dagre.min.js,sha256=YuuXh8z9vfQUjU2Z0x2_nuR3Dq_ugeY311m1KqwizVE,283803
140
+ osscodeiq/graph/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
141
+ osscodeiq/graph/backend.py,sha256=xpxWheyDXRn1ooRiMQcwOf11z0kuNfLvaq-016hEyJo,1749
142
+ osscodeiq/graph/builder.py,sha256=xEbgPN3Til4bQ4hQxjrxlnrAOoZtjk422Q9SpBUlPKc,11079
143
+ osscodeiq/graph/query.py,sha256=Q6FMd4W3r-fDxofDY3o5o8BXkAKgmW3O1t45ZL9UWvg,9026
144
+ osscodeiq/graph/store.py,sha256=zrrWI7mo7-nZ1jN7v4DA7hid5VTfi94vZrzGEiSKqwc,6037
145
+ osscodeiq/graph/views.py,sha256=aIDz0b9kpX6LDssuoF-vNDaQjdbyxryVP1WwcrDwtAE,8643
146
+ osscodeiq/graph/backends/__init__.py,sha256=GElSOikiZiJPgUJsn4lkBiaOURIBodQWifREJT_Z8F4,898
147
+ osscodeiq/graph/backends/kuzu.py,sha256=Q82Rb3Y1L8PR53K45rKsPkDdU7MTyTkToa_rkH-eFk4,21036
148
+ osscodeiq/graph/backends/networkx.py,sha256=oWIqWpwYacrWQGLraIuxJdt7s-edidc72t6kSUt6pcg,4478
149
+ osscodeiq/graph/backends/sqlite_backend.py,sha256=AwJNvB4gRRY7oci8gQmzllgDRLw3rKIoNtFFAYKYS44,14707
150
+ osscodeiq/models/__init__.py,sha256=XoWJyXZErq5p4KZA5nblBt9ahvONKgDZqnVfVdkbnTI,252
151
+ osscodeiq/models/graph.py,sha256=vZ7zH2x61s5B6lfi26YHkTgCuZB6Ev-ESfJqkJuH5tc,3000
152
+ osscodeiq/output/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
153
+ osscodeiq/output/dot.py,sha256=JPyHody1_UsiPTVGrjG8TQO2g8V8Ztr7gtC7QZnm85w,7509
154
+ osscodeiq/output/mermaid.py,sha256=LPmRV1qquDTzyxP4BN49Glq6SHg2o_EKSp0uPcTsAhw,5611
155
+ osscodeiq/output/safety.py,sha256=DbPbvyg3a9lSv8NXrwuhlrjdpuY255SOSNwI3sxMmAY,1585
156
+ osscodeiq/output/serializers.py,sha256=KM-38ai2J4ycUTeczWD3HlwYJlilfh7RqvJnlZCF8-o,1101
157
+ osscodeiq/parsing/__init__.py,sha256=Gb85GZ5QuDMCMWdfAUk0qSWAWhyUNPpHs8AlgzZgT4w,95
158
+ osscodeiq/parsing/parser_manager.py,sha256=CZzhWJjYyAY2GkwIafYs-Hx3erpeCA5A9sJ8pZ9ep-E,4342
159
+ osscodeiq/parsing/languages/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
160
+ osscodeiq/parsing/languages/base.py,sha256=hIRFr6uXl-uuvAWRBYm4WKpOHevsulLZ_XzKfQ3SlPk,601
161
+ osscodeiq/parsing/languages/java.py,sha256=aeqCsCX8PyQ1ExIbeNnX-0DW5nRRHSdRf7GKK_GV75A,2139
162
+ osscodeiq/parsing/languages/python.py,sha256=VW2wJjOEAqOgsyRz8SydpIef6Ebu5nvK2Y_X4AhLOvg,1469
163
+ osscodeiq/parsing/languages/typescript.py,sha256=C8a76D6NHl0bH0_TCYxiGFlHRSFn6oneeHtg55oY-Dw,2645
164
+ osscodeiq/parsing/structured/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
165
+ osscodeiq/parsing/structured/gradle_parser.py,sha256=PUMIvvLD1fbzUPQUDKqu0v_jDfYx_d24AbAYFeBvQSg,2364
166
+ osscodeiq/parsing/structured/json_parser.py,sha256=BTffUVb3-77KBMJIxJmH4Chjmhly1d4sRdjsnUrRURM,698
167
+ osscodeiq/parsing/structured/properties_parser.py,sha256=6PglhuZ57DZo-hA1ULZdwtpgxf3bt4EIzjJzA4ytWSs,1731
168
+ osscodeiq/parsing/structured/sql_parser.py,sha256=_6O0OCccjb4t1PsZY64Va7mqUgIKTQyvsMd8vTZXEWw,1740
169
+ osscodeiq/parsing/structured/xml_parser.py,sha256=PktbxlamNRR7JDKoqBRzts21GmNqkQJJiIy-L6hMTks,5027
170
+ osscodeiq/parsing/structured/yaml_parser.py,sha256=ZRGAYfomCZi3_BHK4NP-qggHdZCOwjAobLDwa5vIv5A,1108
171
+ osscodeiq/server/__init__.py,sha256=G_evA1-qeQ5BGwqpTHXiHv6NqMFpVB1xD1P4jdHXu8E,175
172
+ osscodeiq/server/app.py,sha256=XZDOldyLmqeLRQg-FD_bm1zFepb3UYSjXBIcMA6Ti-M,1598
173
+ osscodeiq/server/mcp_server.py,sha256=b0UUtuElYhmdIsB_VRMdpuRgkxCR9LYHKIHsqbU3AAQ,6158
174
+ osscodeiq/server/middleware.py,sha256=C4s1YkWA8lN6gWQkq-g530xJKoD7nXSEcf2Y25DvLho,593
175
+ osscodeiq/server/routes.py,sha256=QCNvv7LZHA5XpmPISsLxYEA9-7GpJONp9dxc-m0uIxA,7361
176
+ osscodeiq/server/service.py,sha256=pJxaTKZdE6m7Ava1CvyRTkWo9-LNROHEXgg50YPy_hI,16032
177
+ osscodeiq/server/templates/welcome.html,sha256=T-Uf5fOkYgCO-OSkbOf5EL5dAlM8RmpSUkdPbVSvi20,3419
178
+ osscodeiq-0.0.0.dist-info/licenses/LICENSE,sha256=5pHgvkwpf0VBRlg7jRJaR3udhX4eiqPhNu5C2jqIfNo,1072
179
+ osscodeiq-0.0.0.dist-info/METADATA,sha256=Ojpdgf7qr-lO6dysenLJ_6a6hvqVNwSK7PcMeeuYsto,958
180
+ osscodeiq-0.0.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
181
+ osscodeiq-0.0.0.dist-info/entry_points.txt,sha256=_mnYWaa31pEzurLaiYiTX10qPwA1kRW6WhJ5DtRbnPs,48
182
+ osscodeiq-0.0.0.dist-info/top_level.txt,sha256=C-xXIiDXdq5SUZHCP7YRV8bp6uYJGACRR_hdZuCheec,10
183
+ osscodeiq-0.0.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ osscodeiq = osscodeiq.cli:app
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 RandomCodeSpace
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1 @@
1
+ osscodeiq