memgraph-ingester-tool 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 (71) hide show
  1. memgraph_ingester_tool/__init__.py +7 -0
  2. memgraph_ingester_tool/__main__.py +5 -0
  3. memgraph_ingester_tool/cli.py +704 -0
  4. memgraph_ingester_tool/config.py +128 -0
  5. memgraph_ingester_tool/db.py +65 -0
  6. memgraph_ingester_tool/queries/__init__.py +111 -0
  7. memgraph_ingester_tool/queries/code/code_callees.cypher +20 -0
  8. memgraph_ingester_tool/queries/code/code_callees_count.cypher +10 -0
  9. memgraph_ingester_tool/queries/code/code_callers.cypher +20 -0
  10. memgraph_ingester_tool/queries/code/code_callers_count.cypher +10 -0
  11. memgraph_ingester_tool/queries/code/code_file_context.cypher +68 -0
  12. memgraph_ingester_tool/queries/code/code_flow_context_edges.cypher +18 -0
  13. memgraph_ingester_tool/queries/code/code_hierarchy_ancestors.cypher +5 -0
  14. memgraph_ingester_tool/queries/code/code_hierarchy_class.cypher +7 -0
  15. memgraph_ingester_tool/queries/code/code_hierarchy_implementors.cypher +5 -0
  16. memgraph_ingester_tool/queries/code/code_hot_paths_fan_in.cypher +11 -0
  17. memgraph_ingester_tool/queries/code/code_hot_paths_fan_out.cypher +11 -0
  18. memgraph_ingester_tool/queries/code/code_hot_paths_largest_types.cypher +10 -0
  19. memgraph_ingester_tool/queries/code/code_hot_paths_longest_methods.cypher +12 -0
  20. memgraph_ingester_tool/queries/code/code_impact_callers.cypher +60 -0
  21. memgraph_ingester_tool/queries/code/code_impact_targets.cypher +16 -0
  22. memgraph_ingester_tool/queries/code/code_impact_text_reference.cypher +43 -0
  23. memgraph_ingester_tool/queries/code/code_lookup_field.cypher +12 -0
  24. memgraph_ingester_tool/queries/code/code_lookup_field_count.cypher +6 -0
  25. memgraph_ingester_tool/queries/code/code_lookup_file.cypher +12 -0
  26. memgraph_ingester_tool/queries/code/code_lookup_file_count.cypher +4 -0
  27. memgraph_ingester_tool/queries/code/code_lookup_methods.cypher +10 -0
  28. memgraph_ingester_tool/queries/code/code_lookup_methods_count.cypher +6 -0
  29. memgraph_ingester_tool/queries/code/code_lookup_type.cypher +11 -0
  30. memgraph_ingester_tool/queries/code/code_lookup_type_count.cypher +6 -0
  31. memgraph_ingester_tool/queries/code/code_lookup_type_members_fields.cypher +5 -0
  32. memgraph_ingester_tool/queries/code/code_lookup_type_members_methods.cypher +5 -0
  33. memgraph_ingester_tool/queries/code/code_operation_hot_paths.cypher +40 -0
  34. memgraph_ingester_tool/queries/code/code_orientation_cross_owner_calls.cypher +9 -0
  35. memgraph_ingester_tool/queries/code/code_orientation_languages.cypher +4 -0
  36. memgraph_ingester_tool/queries/code/code_orientation_largest_types.cypher +8 -0
  37. memgraph_ingester_tool/queries/code/code_orientation_packages.cypher +6 -0
  38. memgraph_ingester_tool/queries/code/code_quality_stats.cypher +75 -0
  39. memgraph_ingester_tool/queries/code/code_resource_risk_scan.cypher +10 -0
  40. memgraph_ingester_tool/queries/code/code_search.cypher +37 -0
  41. memgraph_ingester_tool/queries/code/code_test_files.cypher +13 -0
  42. memgraph_ingester_tool/queries/code/code_test_methods.cypher +30 -0
  43. memgraph_ingester_tool/queries/code/code_test_production_callees.cypher +25 -0
  44. memgraph_ingester_tool/queries/code/lexical_chunk_rows.cypher +40 -0
  45. memgraph_ingester_tool/queries/code/server_status_inventory.cypher +9 -0
  46. memgraph_ingester_tool/queries/code/server_status_languages.cypher +3 -0
  47. memgraph_ingester_tool/queries/code/server_status_memories.cypher +5 -0
  48. memgraph_ingester_tool/queries/memory/memory_delete_orphan_refs.cypher +7 -0
  49. memgraph_ingester_tool/queries/memory/memory_delete_read.cypher +10 -0
  50. memgraph_ingester_tool/queries/memory/memory_delete_write.cypher +7 -0
  51. memgraph_ingester_tool/queries/memory/memory_get.cypher +12 -0
  52. memgraph_ingester_tool/queries/memory/memory_link_code_ref.cypher +8 -0
  53. memgraph_ingester_tool/queries/memory/memory_orientation_active_tasks.cypher +4 -0
  54. memgraph_ingester_tool/queries/memory/memory_orientation_open_findings.cypher +4 -0
  55. memgraph_ingester_tool/queries/memory/memory_orientation_open_questions.cypher +4 -0
  56. memgraph_ingester_tool/queries/memory/memory_orientation_open_risks.cypher +4 -0
  57. memgraph_ingester_tool/queries/memory/memory_orientation_rules.cypher +3 -0
  58. memgraph_ingester_tool/queries/memory/memory_refresh_chunk.cypher +12 -0
  59. memgraph_ingester_tool/queries/memory/memory_refresh_embeddings_embed.cypher +9 -0
  60. memgraph_ingester_tool/queries/memory/memory_refresh_embeddings_mark.cypher +7 -0
  61. memgraph_ingester_tool/queries/memory/memory_refresh_embeddings_pending.cypher +11 -0
  62. memgraph_ingester_tool/queries/memory/memory_search.cypher +11 -0
  63. memgraph_ingester_tool/queries/memory/memory_update_status.cypher +3 -0
  64. memgraph_ingester_tool/queries/memory/memory_upsert.cypher +7 -0
  65. memgraph_ingester_tool/schema.py +106 -0
  66. memgraph_ingester_tool/tools.py +3098 -0
  67. memgraph_ingester_tool-0.1.0.dist-info/METADATA +191 -0
  68. memgraph_ingester_tool-0.1.0.dist-info/RECORD +71 -0
  69. memgraph_ingester_tool-0.1.0.dist-info/WHEEL +4 -0
  70. memgraph_ingester_tool-0.1.0.dist-info/entry_points.txt +2 -0
  71. memgraph_ingester_tool-0.1.0.dist-info/licenses/LICENSE +21 -0
@@ -0,0 +1,7 @@
1
+ """memgraph-ingester-tool — standalone query tools for Memgraph knowledge graphs."""
2
+
3
+ from memgraph_ingester_tool.config import ToolConfig
4
+ from memgraph_ingester_tool.db import ToolClient, ToolError
5
+ from memgraph_ingester_tool.tools import MemgraphTools
6
+
7
+ __all__ = ["MemgraphTools", "ToolClient", "ToolConfig", "ToolError"]
@@ -0,0 +1,5 @@
1
+ """Allow ``python -m memgraph_ingester_tool`` to invoke the CLI."""
2
+
3
+ from memgraph_ingester_tool.cli import main
4
+
5
+ main()