hgraph 0.0.1__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.
- hgraph-0.0.1/.github/ISSUE_TEMPLATE/bug_report.md +28 -0
- hgraph-0.0.1/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
- hgraph-0.0.1/.github/dependabot.yml +11 -0
- hgraph-0.0.1/.gitignore +33 -0
- hgraph-0.0.1/LICENSE +21 -0
- hgraph-0.0.1/PKG-INFO +42 -0
- hgraph-0.0.1/README.md +2 -0
- hgraph-0.0.1/docs/concepts/forward_propogation_graph.md +189 -0
- hgraph-0.0.1/docs/python/component_signature.md +56 -0
- hgraph-0.0.1/docs/python/node_signature.md +94 -0
- hgraph-0.0.1/pyproject.toml +94 -0
- hgraph-0.0.1/requirements.txt +5 -0
- hgraph-0.0.1/src/hgraph/__about__.py +1 -0
- hgraph-0.0.1/src/hgraph/__init__.py +6 -0
- hgraph-0.0.1/src/hgraph/_builder/__init__.py +7 -0
- hgraph-0.0.1/src/hgraph/_builder/_builder.py +29 -0
- hgraph-0.0.1/src/hgraph/_builder/_graph_builder.py +82 -0
- hgraph-0.0.1/src/hgraph/_builder/_input_builder.py +21 -0
- hgraph-0.0.1/src/hgraph/_builder/_node_builder.py +38 -0
- hgraph-0.0.1/src/hgraph/_builder/_output_builder.py +21 -0
- hgraph-0.0.1/src/hgraph/_builder/_scalar_builder.py +19 -0
- hgraph-0.0.1/src/hgraph/_builder/_ts_builder.py +210 -0
- hgraph-0.0.1/src/hgraph/_impl/__init__.py +4 -0
- hgraph-0.0.1/src/hgraph/_impl/_builder/__init__.py +5 -0
- hgraph-0.0.1/src/hgraph/_impl/_builder/_graph_builder.py +56 -0
- hgraph-0.0.1/src/hgraph/_impl/_builder/_map_builder.py +44 -0
- hgraph-0.0.1/src/hgraph/_impl/_builder/_node_builder.py +87 -0
- hgraph-0.0.1/src/hgraph/_impl/_builder/_switch_builder.py +46 -0
- hgraph-0.0.1/src/hgraph/_impl/_builder/_ts_builder.py +296 -0
- hgraph-0.0.1/src/hgraph/_impl/_impl_configuration.py +9 -0
- hgraph-0.0.1/src/hgraph/_impl/_runtime/__init__.py +6 -0
- hgraph-0.0.1/src/hgraph/_impl/_runtime/_common.py +34 -0
- hgraph-0.0.1/src/hgraph/_impl/_runtime/_evaluation_clock.py +140 -0
- hgraph-0.0.1/src/hgraph/_impl/_runtime/_evaluation_engine.py +122 -0
- hgraph-0.0.1/src/hgraph/_impl/_runtime/_graph.py +134 -0
- hgraph-0.0.1/src/hgraph/_impl/_runtime/_graph_executor.py +54 -0
- hgraph-0.0.1/src/hgraph/_impl/_runtime/_map_node.py +152 -0
- hgraph-0.0.1/src/hgraph/_impl/_runtime/_node.py +334 -0
- hgraph-0.0.1/src/hgraph/_impl/_runtime/_switch_node.py +116 -0
- hgraph-0.0.1/src/hgraph/_impl/_types/__init__.py +9 -0
- hgraph-0.0.1/src/hgraph/_impl/_types/_input.py +169 -0
- hgraph-0.0.1/src/hgraph/_impl/_types/_output.py +92 -0
- hgraph-0.0.1/src/hgraph/_impl/_types/_ref.py +207 -0
- hgraph-0.0.1/src/hgraph/_impl/_types/_scalar_value.py +49 -0
- hgraph-0.0.1/src/hgraph/_impl/_types/_signal.py +17 -0
- hgraph-0.0.1/src/hgraph/_impl/_types/_ts.py +73 -0
- hgraph-0.0.1/src/hgraph/_impl/_types/_tsb.py +175 -0
- hgraph-0.0.1/src/hgraph/_impl/_types/_tsd.py +260 -0
- hgraph-0.0.1/src/hgraph/_impl/_types/_tsl.py +168 -0
- hgraph-0.0.1/src/hgraph/_impl/_types/_tss.py +252 -0
- hgraph-0.0.1/src/hgraph/_impl/graph_construction.md +40 -0
- hgraph-0.0.1/src/hgraph/_runtime/__init__.py +11 -0
- hgraph-0.0.1/src/hgraph/_runtime/_constants.py +10 -0
- hgraph-0.0.1/src/hgraph/_runtime/_evaluation_clock.py +169 -0
- hgraph-0.0.1/src/hgraph/_runtime/_evaluation_engine.py +339 -0
- hgraph-0.0.1/src/hgraph/_runtime/_global_state.py +83 -0
- hgraph-0.0.1/src/hgraph/_runtime/_graph.py +86 -0
- hgraph-0.0.1/src/hgraph/_runtime/_graph_executor.py +90 -0
- hgraph-0.0.1/src/hgraph/_runtime/_graph_runner.py +51 -0
- hgraph-0.0.1/src/hgraph/_runtime/_lifecycle.py +149 -0
- hgraph-0.0.1/src/hgraph/_runtime/_map.py +450 -0
- hgraph-0.0.1/src/hgraph/_runtime/_node.py +227 -0
- hgraph-0.0.1/src/hgraph/_runtime/_switch.py +134 -0
- hgraph-0.0.1/src/hgraph/_types/__init__.py +20 -0
- hgraph-0.0.1/src/hgraph/_types/_ref_meta_data.py +89 -0
- hgraph-0.0.1/src/hgraph/_types/_ref_type.py +54 -0
- hgraph-0.0.1/src/hgraph/_types/_scalar_type_meta_data.py +643 -0
- hgraph-0.0.1/src/hgraph/_types/_scalar_types.py +94 -0
- hgraph-0.0.1/src/hgraph/_types/_scalar_value.py +56 -0
- hgraph-0.0.1/src/hgraph/_types/_schema_type.py +128 -0
- hgraph-0.0.1/src/hgraph/_types/_time_series_meta_data.py +58 -0
- hgraph-0.0.1/src/hgraph/_types/_time_series_types.py +406 -0
- hgraph-0.0.1/src/hgraph/_types/_ts_meta_data.py +83 -0
- hgraph-0.0.1/src/hgraph/_types/_ts_signal_meta_data.py +46 -0
- hgraph-0.0.1/src/hgraph/_types/_ts_type.py +38 -0
- hgraph-0.0.1/src/hgraph/_types/_ts_type_var_meta_data.py +62 -0
- hgraph-0.0.1/src/hgraph/_types/_tsb_meta_data.py +154 -0
- hgraph-0.0.1/src/hgraph/_types/_tsb_type.py +290 -0
- hgraph-0.0.1/src/hgraph/_types/_tsd_meta_data.py +98 -0
- hgraph-0.0.1/src/hgraph/_types/_tsd_type.py +202 -0
- hgraph-0.0.1/src/hgraph/_types/_tsl_meta_data.py +118 -0
- hgraph-0.0.1/src/hgraph/_types/_tsl_type.py +172 -0
- hgraph-0.0.1/src/hgraph/_types/_tss_meta_data.py +77 -0
- hgraph-0.0.1/src/hgraph/_types/_tss_type.py +106 -0
- hgraph-0.0.1/src/hgraph/_types/_type_meta_data.py +95 -0
- hgraph-0.0.1/src/hgraph/_types/_typing_utils.py +24 -0
- hgraph-0.0.1/src/hgraph/_wiring/__init__.py +10 -0
- hgraph-0.0.1/src/hgraph/_wiring/_decorators.py +245 -0
- hgraph-0.0.1/src/hgraph/_wiring/_graph_builder.py +89 -0
- hgraph-0.0.1/src/hgraph/_wiring/_map_wiring_node.py +64 -0
- hgraph-0.0.1/src/hgraph/_wiring/_source_code_details.py +14 -0
- hgraph-0.0.1/src/hgraph/_wiring/_stub_wiring_node.py +95 -0
- hgraph-0.0.1/src/hgraph/_wiring/_switch_wiring_node.py +45 -0
- hgraph-0.0.1/src/hgraph/_wiring/_wiring.py +743 -0
- hgraph-0.0.1/src/hgraph/_wiring/_wiring_context.py +61 -0
- hgraph-0.0.1/src/hgraph/_wiring/_wiring_errors.py +152 -0
- hgraph-0.0.1/src/hgraph/_wiring/_wiring_node_signature.py +215 -0
- hgraph-0.0.1/src/hgraph/_wiring/_wiring_utils.py +101 -0
- hgraph-0.0.1/src/hgraph/nodes/__init__.py +14 -0
- hgraph-0.0.1/src/hgraph/nodes/_const.py +22 -0
- hgraph-0.0.1/src/hgraph/nodes/_drop_dups.py +13 -0
- hgraph-0.0.1/src/hgraph/nodes/_format.py +16 -0
- hgraph-0.0.1/src/hgraph/nodes/_graph.py +9 -0
- hgraph-0.0.1/src/hgraph/nodes/_math.py +35 -0
- hgraph-0.0.1/src/hgraph/nodes/_operators.py +42 -0
- hgraph-0.0.1/src/hgraph/nodes/_pass_through.py +10 -0
- hgraph-0.0.1/src/hgraph/nodes/_print.py +19 -0
- hgraph-0.0.1/src/hgraph/nodes/_record.py +30 -0
- hgraph-0.0.1/src/hgraph/nodes/_replay.py +53 -0
- hgraph-0.0.1/src/hgraph/nodes/_set_operators.py +35 -0
- hgraph-0.0.1/src/hgraph/nodes/_stream_operators.py +30 -0
- hgraph-0.0.1/src/hgraph/nodes/_tsd_operators.py +40 -0
- hgraph-0.0.1/src/hgraph/nodes/_tsl_operators.py +20 -0
- hgraph-0.0.1/src/hgraph/nodes/_write.py +32 -0
- hgraph-0.0.1/src/hgraph/test/__init__.py +1 -0
- hgraph-0.0.1/src/hgraph/test/_node_unit_tester.py +93 -0
- hgraph-0.0.1/src/hgraph/test/testing.md +19 -0
- hgraph-0.0.1/tests/CMakeLists.txt +5 -0
- hgraph-0.0.1/tests/__init__.py +0 -0
- hgraph-0.0.1/tests/cpp/CMakeLists.txt +24 -0
- hgraph-0.0.1/tests/cpp/hg/graph/data_types/basic_type_construction.cpp +112 -0
- hgraph-0.0.1/tests/cpp/hg/graph/test_graph.cpp +41 -0
- hgraph-0.0.1/tests/cpp/hg/graph/test_graph.py +11 -0
- hgraph-0.0.1/tests/cpp/hg/graph/typing/test_scalar_value.cpp +44 -0
- hgraph-0.0.1/tests/cpp/hg/test_hg.cpp +6 -0
- hgraph-0.0.1/tests/python/__init__.py +0 -0
- hgraph-0.0.1/tests/python/unit/__init__.py +0 -0
- hgraph-0.0.1/tests/python/unit/hg/__init__.py +0 -0
- hgraph-0.0.1/tests/python/unit/hg/_impl/__init__.py +0 -0
- hgraph-0.0.1/tests/python/unit/hg/_impl/_builder/__init__.py +0 -0
- hgraph-0.0.1/tests/python/unit/hg/_impl/_builder/test_graph_builder.py +18 -0
- hgraph-0.0.1/tests/python/unit/hg/_impl/_runtime/__init__.py +0 -0
- hgraph-0.0.1/tests/python/unit/hg/_impl/_runtime/test_graph_runner.py +29 -0
- hgraph-0.0.1/tests/python/unit/hg/_resolver/__init__.py +0 -0
- hgraph-0.0.1/tests/python/unit/hg/_types/__init__.py +0 -0
- hgraph-0.0.1/tests/python/unit/hg/_types/test_complex_types.py +66 -0
- hgraph-0.0.1/tests/python/unit/hg/_types/test_type_meta_data.py +149 -0
- hgraph-0.0.1/tests/python/unit/hg/_types/test_type_meta_resolve.py +113 -0
- hgraph-0.0.1/tests/python/unit/hg/_wiring/__init__.py +0 -0
- hgraph-0.0.1/tests/python/unit/hg/_wiring/test_decorators.py +58 -0
- hgraph-0.0.1/tests/python/unit/hg/_wiring/test_map.py +249 -0
- hgraph-0.0.1/tests/python/unit/hg/_wiring/test_ref.py +115 -0
- hgraph-0.0.1/tests/python/unit/hg/_wiring/test_switch.py +15 -0
- hgraph-0.0.1/tests/python/unit/hg/_wiring/test_tsb_wiring.py +73 -0
- hgraph-0.0.1/tests/python/unit/hg/_wiring/test_tsd_wiring.py +20 -0
- hgraph-0.0.1/tests/python/unit/hg/_wiring/test_tsl_wiring.py +40 -0
- hgraph-0.0.1/tests/python/unit/hg/_wiring/test_tss.py +32 -0
- hgraph-0.0.1/tests/python/unit/hg/_wiring/test_wiring_node_signature.py +37 -0
- hgraph-0.0.1/tests/python/unit/hg/nodes/__init__.py +0 -0
- hgraph-0.0.1/tests/python/unit/hg/nodes/test_const.py +19 -0
- hgraph-0.0.1/tests/python/unit/hg/nodes/test_drop_dups.py +7 -0
- hgraph-0.0.1/tests/python/unit/hg/nodes/test_math.py +47 -0
- hgraph-0.0.1/tests/python/unit/hg/nodes/test_operators.py +30 -0
- hgraph-0.0.1/tests/python/unit/hg/nodes/test_push_queue.py +36 -0
- hgraph-0.0.1/tests/python/unit/hg/nodes/test_recorder.py +23 -0
- hgraph-0.0.1/tests/python/unit/hg/nodes/test_replay.py +14 -0
- hgraph-0.0.1/tests/python/unit/hg/nodes/test_stream_operators.py +7 -0
- hgraph-0.0.1/tests/python/unit/hg/nodes/test_tsd_operators.py +21 -0
- hgraph-0.0.1/tests/python/unit/hg/nodes/test_write.py +7 -0
- hgraph-0.0.1/tests/python/unit/hg/test/__init__.py +0 -0
- hgraph-0.0.1/tests/python/unit/hg/test/test_eval_node.py +8 -0
- hgraph-0.0.1/tests/python/unit/hg/test_wiring.py +63 -0
- hgraph-0.0.1/venv/.gitignore +2 -0
- hgraph-0.0.1/venv/bin/activate +83 -0
- hgraph-0.0.1/venv/bin/activate.csh +55 -0
- hgraph-0.0.1/venv/bin/activate.fish +100 -0
- hgraph-0.0.1/venv/bin/activate.nu +92 -0
- hgraph-0.0.1/venv/bin/activate.ps1 +60 -0
- hgraph-0.0.1/venv/bin/activate_this.py +31 -0
- hgraph-0.0.1/venv/bin/deactivate.nu +32 -0
- hgraph-0.0.1/venv/bin/distro +8 -0
- hgraph-0.0.1/venv/bin/pip +8 -0
- hgraph-0.0.1/venv/bin/pip3 +8 -0
- hgraph-0.0.1/venv/bin/pip3.11 +8 -0
- hgraph-0.0.1/venv/bin/py.test +8 -0
- hgraph-0.0.1/venv/bin/pytest +8 -0
- hgraph-0.0.1/venv/bin/python +1 -0
- hgraph-0.0.1/venv/bin/python3 +1 -0
- hgraph-0.0.1/venv/bin/python3.11 +1 -0
- hgraph-0.0.1/venv/bin/wheel +8 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_distutils_hack/__init__.py +227 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_distutils_hack/override.py +1 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/__init__.py +9 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/_argcomplete.py +116 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/_code/__init__.py +22 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/_code/code.py +1337 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/_code/source.py +217 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/_io/__init__.py +8 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/_io/saferepr.py +180 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/_io/terminalwriter.py +233 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/_io/wcwidth.py +55 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/_py/__init__.py +0 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/_py/error.py +109 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/_py/path.py +1475 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/_version.py +16 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/assertion/__init__.py +181 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/assertion/rewrite.py +1211 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/assertion/truncate.py +115 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/assertion/util.py +522 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/cacheprovider.py +602 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/capture.py +1082 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/compat.py +435 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/config/__init__.py +1816 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/config/argparsing.py +551 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/config/compat.py +70 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/config/exceptions.py +11 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/config/findpaths.py +218 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/debugging.py +391 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/deprecated.py +146 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/doctest.py +771 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/faulthandler.py +94 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/fixtures.py +1713 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/freeze_support.py +44 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/helpconfig.py +270 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/hookspec.py +979 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/junitxml.py +700 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/legacypath.py +479 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/logging.py +920 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/main.py +913 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/mark/__init__.py +269 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/mark/expression.py +228 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/mark/structures.py +618 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/monkeypatch.py +421 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/nodes.py +783 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/nose.py +50 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/outcomes.py +311 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/pastebin.py +110 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/pathlib.py +804 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/py.typed +0 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/pytester.py +1789 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/pytester_assertions.py +75 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/python.py +1843 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/python_api.py +996 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/python_path.py +24 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/recwarn.py +313 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/reports.py +622 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/runner.py +551 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/scope.py +91 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/setuponly.py +97 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/setupplan.py +40 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/skipping.py +297 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/stash.py +112 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/stepwise.py +130 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/terminal.py +1481 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/threadexception.py +88 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/timing.py +12 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/tmpdir.py +324 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/unittest.py +421 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/unraisableexception.py +93 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/warning_types.py +170 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_pytest/warnings.py +148 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_virtualenv.pth +1 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/_virtualenv.py +130 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/distro/__init__.py +54 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/distro/__main__.py +4 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/distro/distro.py +1399 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/distro/py.typed +0 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/distro-1.8.0.dist-info/INSTALLER +1 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/distro-1.8.0.dist-info/LICENSE +202 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/distro-1.8.0.dist-info/METADATA +183 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/distro-1.8.0.dist-info/RECORD +15 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/distro-1.8.0.dist-info/WHEEL +5 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/distro-1.8.0.dist-info/entry_points.txt +2 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/distro-1.8.0.dist-info/top_level.txt +1 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/distutils-precedence.pth +1 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/frozendict/__init__.py +56 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/frozendict/__init__.pyi +73 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/frozendict/_frozendict_py.py +584 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/frozendict/core.py +4 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/frozendict/monkeypatch.py +203 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/frozendict/py.typed +0 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/frozendict/version.py +1 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/frozendict-2.3.10.dist-info/INSTALLER +1 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/frozendict-2.3.10.dist-info/LICENSE.txt +165 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/frozendict-2.3.10.dist-info/METADATA +397 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/frozendict-2.3.10.dist-info/RECORD +19 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/frozendict-2.3.10.dist-info/REQUESTED +0 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/frozendict-2.3.10.dist-info/WHEEL +5 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/frozendict-2.3.10.dist-info/top_level.txt +1 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/iniconfig/__init__.py +216 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/iniconfig/_parse.py +82 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/iniconfig/_version.py +4 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/iniconfig/exceptions.py +20 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/iniconfig/py.typed +0 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/iniconfig-2.0.0.dist-info/INSTALLER +1 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/iniconfig-2.0.0.dist-info/METADATA +80 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/iniconfig-2.0.0.dist-info/RECORD +14 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/iniconfig-2.0.0.dist-info/WHEEL +4 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/iniconfig-2.0.0.dist-info/licenses/LICENSE +19 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/more_itertools/__init__.py +6 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/more_itertools/__init__.pyi +2 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/more_itertools/more.py +4569 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/more_itertools/more.pyi +684 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/more_itertools/py.typed +0 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/more_itertools/recipes.py +977 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/more_itertools/recipes.pyi +122 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/more_itertools-10.1.0.dist-info/INSTALLER +1 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/more_itertools-10.1.0.dist-info/LICENSE +19 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/more_itertools-10.1.0.dist-info/METADATA +253 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/more_itertools-10.1.0.dist-info/RECORD +16 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/more_itertools-10.1.0.dist-info/REQUESTED +0 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/more_itertools-10.1.0.dist-info/WHEEL +4 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/packaging/__init__.py +15 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/packaging/_elffile.py +108 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/packaging/_manylinux.py +240 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/packaging/_musllinux.py +80 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/packaging/_parser.py +353 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/packaging/_structures.py +61 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/packaging/_tokenizer.py +192 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/packaging/markers.py +252 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/packaging/metadata.py +408 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/packaging/py.typed +0 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/packaging/requirements.py +95 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/packaging/specifiers.py +1008 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/packaging/tags.py +546 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/packaging/utils.py +141 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/packaging/version.py +564 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/packaging-23.1.dist-info/INSTALLER +1 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/packaging-23.1.dist-info/LICENSE +3 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/packaging-23.1.dist-info/LICENSE.APACHE +177 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/packaging-23.1.dist-info/LICENSE.BSD +23 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/packaging-23.1.dist-info/METADATA +99 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/packaging-23.1.dist-info/RECORD +36 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/packaging-23.1.dist-info/WHEEL +4 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/__init__.py +13 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/__main__.py +24 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/__pip-runner__.py +50 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/__init__.py +19 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/build_env.py +311 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/cache.py +292 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/cli/__init__.py +4 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/cli/autocompletion.py +171 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/cli/base_command.py +236 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/cli/cmdoptions.py +1074 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/cli/command_context.py +27 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/cli/main.py +79 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/cli/main_parser.py +134 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/cli/parser.py +294 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/cli/progress_bars.py +68 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/cli/req_command.py +508 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/cli/spinners.py +159 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/cli/status_codes.py +6 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/commands/__init__.py +132 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/commands/cache.py +222 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/commands/check.py +54 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/commands/completion.py +121 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/commands/configuration.py +282 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/commands/debug.py +199 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/commands/download.py +147 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/commands/freeze.py +108 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/commands/hash.py +59 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/commands/help.py +41 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/commands/index.py +139 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/commands/inspect.py +92 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/commands/install.py +778 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/commands/list.py +368 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/commands/search.py +174 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/commands/show.py +189 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/commands/uninstall.py +113 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/commands/wheel.py +183 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/configuration.py +381 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/distributions/__init__.py +21 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/distributions/base.py +39 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/distributions/installed.py +23 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/distributions/sdist.py +150 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/distributions/wheel.py +34 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/exceptions.py +733 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/index/__init__.py +2 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/index/collector.py +505 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/index/package_finder.py +1029 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/index/sources.py +223 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/locations/__init__.py +467 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/locations/_distutils.py +173 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/locations/_sysconfig.py +213 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/locations/base.py +81 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/main.py +12 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/metadata/__init__.py +127 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/metadata/_json.py +84 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/metadata/base.py +688 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/metadata/importlib/__init__.py +4 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/metadata/importlib/_compat.py +55 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/metadata/importlib/_dists.py +224 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/metadata/importlib/_envs.py +188 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/metadata/pkg_resources.py +270 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/models/__init__.py +2 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/models/candidate.py +34 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/models/direct_url.py +237 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/models/format_control.py +80 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/models/index.py +28 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/models/installation_report.py +53 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/models/link.py +581 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/models/scheme.py +31 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/models/search_scope.py +132 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/models/selection_prefs.py +51 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/models/target_python.py +110 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/models/wheel.py +92 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/network/__init__.py +2 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/network/auth.py +561 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/network/cache.py +69 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/network/download.py +186 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/network/lazy_wheel.py +210 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/network/session.py +519 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/network/utils.py +96 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/network/xmlrpc.py +60 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/operations/__init__.py +0 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/operations/build/__init__.py +0 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/operations/build/build_tracker.py +124 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/operations/build/metadata.py +39 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/operations/build/metadata_editable.py +41 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/operations/build/metadata_legacy.py +74 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/operations/build/wheel.py +37 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/operations/build/wheel_editable.py +46 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/operations/build/wheel_legacy.py +102 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/operations/check.py +187 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/operations/freeze.py +255 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/operations/install/__init__.py +2 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/operations/install/editable_legacy.py +46 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/operations/install/wheel.py +740 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/operations/prepare.py +743 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/pyproject.py +179 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/req/__init__.py +92 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/req/constructors.py +506 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/req/req_file.py +552 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/req/req_install.py +874 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/req/req_set.py +119 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/req/req_uninstall.py +650 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/resolution/__init__.py +0 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/resolution/base.py +20 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/resolution/legacy/resolver.py +600 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/base.py +141 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/candidates.py +555 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/factory.py +730 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +155 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/provider.py +255 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/reporter.py +80 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/requirements.py +165 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/resolution/resolvelib/resolver.py +299 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/self_outdated_check.py +242 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/utils/__init__.py +0 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/utils/_jaraco_text.py +109 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/utils/_log.py +38 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/utils/appdirs.py +52 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/utils/compat.py +63 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/utils/compatibility_tags.py +165 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/utils/datetime.py +11 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/utils/deprecation.py +120 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/utils/direct_url_helpers.py +87 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/utils/egg_link.py +72 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/utils/encoding.py +36 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/utils/entrypoints.py +84 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/utils/filesystem.py +153 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/utils/filetypes.py +27 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/utils/glibc.py +88 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/utils/hashes.py +151 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/utils/inject_securetransport.py +35 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/utils/logging.py +348 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/utils/misc.py +735 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/utils/models.py +39 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/utils/packaging.py +57 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/utils/setuptools_build.py +146 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/utils/subprocess.py +260 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/utils/temp_dir.py +246 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/utils/unpacking.py +257 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/utils/urls.py +62 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/utils/virtualenv.py +104 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/utils/wheel.py +136 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/vcs/__init__.py +15 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/vcs/bazaar.py +112 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/vcs/git.py +526 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/vcs/mercurial.py +163 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/vcs/subversion.py +324 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/vcs/versioncontrol.py +705 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_internal/wheel_builder.py +355 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/__init__.py +120 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/__init__.py +18 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/_cmd.py +61 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/adapter.py +137 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/cache.py +65 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +9 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +188 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +39 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/compat.py +32 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/controller.py +439 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/filewrapper.py +111 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/heuristics.py +139 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/serialize.py +190 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/cachecontrol/wrapper.py +33 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/certifi/__init__.py +4 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/certifi/__main__.py +12 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/certifi/cacert.pem +4589 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/certifi/core.py +108 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/__init__.py +115 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/big5freq.py +386 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/big5prober.py +47 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/chardistribution.py +261 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/charsetgroupprober.py +106 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/charsetprober.py +147 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/cli/__init__.py +0 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/cli/chardetect.py +112 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/codingstatemachine.py +90 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/codingstatemachinedict.py +19 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/cp949prober.py +49 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/enums.py +85 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/escprober.py +102 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/escsm.py +261 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/eucjpprober.py +102 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/euckrfreq.py +196 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/euckrprober.py +47 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/euctwfreq.py +388 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/euctwprober.py +47 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/gb2312freq.py +284 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/gb2312prober.py +47 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/hebrewprober.py +316 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/jisfreq.py +325 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/johabfreq.py +2382 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/johabprober.py +47 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/jpcntx.py +238 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/langbulgarianmodel.py +4649 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/langgreekmodel.py +4397 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/langhebrewmodel.py +4380 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/langhungarianmodel.py +4649 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/langrussianmodel.py +5725 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/langthaimodel.py +4380 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/langturkishmodel.py +4380 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/latin1prober.py +147 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/macromanprober.py +162 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/mbcharsetprober.py +95 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/mbcsgroupprober.py +57 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/mbcssm.py +661 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/metadata/__init__.py +0 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/metadata/languages.py +352 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/resultdict.py +16 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/sbcharsetprober.py +162 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/sbcsgroupprober.py +88 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/sjisprober.py +105 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/universaldetector.py +362 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/utf1632prober.py +225 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/utf8prober.py +82 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/chardet/version.py +9 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/colorama/__init__.py +7 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/colorama/ansi.py +102 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/colorama/ansitowin32.py +277 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/colorama/initialise.py +121 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/__init__.py +1 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/ansi_test.py +76 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py +294 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/initialise_test.py +189 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/isatty_test.py +57 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/utils.py +49 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/colorama/tests/winterm_test.py +131 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/colorama/win32.py +180 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/colorama/winterm.py +195 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/distlib/__init__.py +23 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/distlib/compat.py +1116 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/distlib/database.py +1350 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/distlib/index.py +508 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/distlib/locators.py +1300 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/distlib/manifest.py +393 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/distlib/markers.py +152 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/distlib/metadata.py +1076 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/distlib/resources.py +358 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/distlib/scripts.py +437 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/distlib/util.py +1932 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/distlib/version.py +739 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/distlib/wheel.py +1082 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/distro/__init__.py +54 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/distro/__main__.py +4 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/distro/distro.py +1399 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/idna/__init__.py +44 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/idna/codec.py +112 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/idna/compat.py +13 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/idna/core.py +400 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/idna/idnadata.py +2151 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/idna/intranges.py +54 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/idna/package_data.py +2 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/idna/uts46data.py +8600 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/msgpack/__init__.py +57 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/msgpack/exceptions.py +48 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/msgpack/ext.py +193 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/msgpack/fallback.py +1010 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/packaging/__about__.py +26 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/packaging/__init__.py +25 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/packaging/_manylinux.py +301 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/packaging/_musllinux.py +136 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/packaging/_structures.py +61 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/packaging/markers.py +304 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/packaging/requirements.py +146 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/packaging/specifiers.py +802 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/packaging/tags.py +487 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/packaging/utils.py +136 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/packaging/version.py +504 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pkg_resources/__init__.py +3361 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__init__.py +566 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/__main__.py +53 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/android.py +210 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/api.py +223 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/macos.py +91 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/unix.py +223 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/version.py +4 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/platformdirs/windows.py +255 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__init__.py +82 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pygments/__main__.py +17 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pygments/cmdline.py +668 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pygments/console.py +70 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pygments/filter.py +71 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pygments/filters/__init__.py +940 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatter.py +124 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/__init__.py +158 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/_mapping.py +23 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/bbcode.py +108 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/groff.py +170 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/html.py +989 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/img.py +645 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/irc.py +154 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/latex.py +521 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/other.py +161 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py +83 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/rtf.py +146 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/svg.py +188 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/terminal.py +127 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pygments/formatters/terminal256.py +338 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pygments/lexer.py +943 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pygments/lexers/__init__.py +362 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pygments/lexers/_mapping.py +559 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pygments/lexers/python.py +1198 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pygments/modeline.py +43 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pygments/plugin.py +88 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pygments/regexopt.py +91 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pygments/scanner.py +104 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pygments/sphinxext.py +217 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pygments/style.py +197 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pygments/styles/__init__.py +103 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pygments/token.py +213 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pygments/unistring.py +153 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pygments/util.py +330 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/__init__.py +322 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/actions.py +217 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/common.py +432 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/core.py +6115 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/diagram/__init__.py +656 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/exceptions.py +299 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/helpers.py +1100 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/results.py +796 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/testing.py +331 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/unicode.py +361 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pyparsing/util.py +284 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/__init__.py +23 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_compat.py +8 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_impl.py +330 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py +18 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +353 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/requests/__init__.py +182 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/requests/__version__.py +14 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/requests/_internal_utils.py +50 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/requests/adapters.py +538 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/requests/api.py +157 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/requests/auth.py +315 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/requests/certs.py +24 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/requests/compat.py +67 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/requests/cookies.py +561 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/requests/exceptions.py +141 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/requests/help.py +131 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/requests/hooks.py +33 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/requests/models.py +1034 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/requests/packages.py +16 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/requests/sessions.py +833 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/requests/status_codes.py +128 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/requests/structures.py +99 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/requests/utils.py +1094 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/__init__.py +26 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/compat/__init__.py +0 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py +6 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/providers.py +133 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/reporters.py +43 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/resolvers.py +547 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/resolvelib/structs.py +170 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/__init__.py +177 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/__main__.py +274 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/_cell_widths.py +451 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/_emoji_codes.py +3610 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/_emoji_replace.py +32 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/_export_format.py +76 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/_extension.py +10 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/_fileno.py +24 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/_inspect.py +270 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/_log_render.py +94 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/_loop.py +43 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/_null_file.py +69 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/_palettes.py +309 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/_pick.py +17 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/_ratio.py +160 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/_spinners.py +482 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/_stack.py +16 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/_timer.py +19 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/_win32_console.py +662 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/_windows.py +72 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/_windows_renderer.py +56 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/_wrap.py +56 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/abc.py +33 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/align.py +311 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/ansi.py +240 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/bar.py +94 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/box.py +517 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/cells.py +154 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/color.py +622 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/color_triplet.py +38 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/columns.py +187 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/console.py +2633 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/constrain.py +37 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/containers.py +167 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/control.py +225 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/default_styles.py +190 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/diagnose.py +37 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/emoji.py +96 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/errors.py +34 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/file_proxy.py +57 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/filesize.py +89 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/highlighter.py +232 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/json.py +140 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/jupyter.py +101 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/layout.py +443 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/live.py +375 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/live_render.py +113 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/logging.py +289 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/markup.py +246 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/measure.py +151 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/padding.py +141 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/pager.py +34 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/palette.py +100 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/panel.py +308 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/pretty.py +994 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/progress.py +1702 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/progress_bar.py +224 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/prompt.py +376 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/protocol.py +42 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/region.py +10 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/repr.py +149 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/rule.py +130 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/scope.py +86 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/screen.py +54 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/segment.py +739 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/spinner.py +137 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/status.py +132 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/style.py +796 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/styled.py +42 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/syntax.py +948 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/table.py +1002 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/terminal_theme.py +153 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/text.py +1307 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/theme.py +115 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/themes.py +5 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/traceback.py +756 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/rich/tree.py +251 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/six.py +998 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/tenacity/__init__.py +608 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/tenacity/_asyncio.py +94 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/tenacity/_utils.py +76 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/tenacity/after.py +51 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/tenacity/before.py +46 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/tenacity/before_sleep.py +71 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/tenacity/nap.py +43 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/tenacity/retry.py +272 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/tenacity/stop.py +103 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/tenacity/tornadoweb.py +59 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/tenacity/wait.py +228 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/tomli/__init__.py +11 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/tomli/_parser.py +691 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/tomli/_re.py +107 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/tomli/_types.py +10 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/typing_extensions.py +3072 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/__init__.py +102 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/_collections.py +337 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/_version.py +2 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/connection.py +572 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/connectionpool.py +1132 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py +36 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +519 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +397 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/appengine.py +314 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py +130 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +518 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/securetransport.py +921 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/socks.py +216 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/exceptions.py +323 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/fields.py +274 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/filepost.py +98 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/packages/__init__.py +0 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py +51 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py +155 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/packages/six.py +1076 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/poolmanager.py +537 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/request.py +170 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/response.py +879 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/__init__.py +49 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/connection.py +149 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/proxy.py +57 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/queue.py +22 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/request.py +137 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/response.py +107 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/retry.py +620 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/ssl_.py +495 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +159 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/ssltransport.py +221 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/timeout.py +271 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/url.py +435 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/urllib3/util/wait.py +152 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/vendor.txt +23 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/webencodings/__init__.py +342 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/webencodings/labels.py +231 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/webencodings/mklabels.py +59 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/webencodings/tests.py +153 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/_vendor/webencodings/x_user_defined.py +325 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip/py.typed +4 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip-23.2.1.dist-info/AUTHORS.txt +738 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip-23.2.1.dist-info/INSTALLER +1 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip-23.2.1.dist-info/LICENSE.txt +20 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip-23.2.1.dist-info/METADATA +90 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip-23.2.1.dist-info/RECORD +1003 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip-23.2.1.dist-info/REQUESTED +0 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip-23.2.1.dist-info/WHEEL +5 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip-23.2.1.dist-info/entry_points.txt +4 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pip-23.2.1.dist-info/top_level.txt +1 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/__init__.py +3361 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/_vendor/__init__.py +0 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/_vendor/importlib_resources/__init__.py +36 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/_vendor/importlib_resources/_adapters.py +170 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/_vendor/importlib_resources/_common.py +207 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/_vendor/importlib_resources/_compat.py +108 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/_vendor/importlib_resources/_itertools.py +35 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/_vendor/importlib_resources/_legacy.py +120 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/_vendor/importlib_resources/abc.py +170 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/_vendor/importlib_resources/readers.py +120 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/_vendor/importlib_resources/simple.py +106 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/_vendor/jaraco/__init__.py +0 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/_vendor/jaraco/context.py +288 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/_vendor/jaraco/functools.py +556 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/_vendor/jaraco/text/__init__.py +599 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/_vendor/more_itertools/__init__.py +6 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/_vendor/more_itertools/more.py +4391 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/_vendor/more_itertools/recipes.py +930 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/__init__.py +15 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/_elffile.py +108 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/_manylinux.py +240 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/_musllinux.py +80 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/_parser.py +353 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/_structures.py +61 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/_tokenizer.py +192 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/markers.py +252 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/metadata.py +408 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/requirements.py +95 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/specifiers.py +1008 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/tags.py +546 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/utils.py +141 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/_vendor/packaging/version.py +564 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/_vendor/platformdirs/__init__.py +342 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/_vendor/platformdirs/__main__.py +46 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/_vendor/platformdirs/android.py +120 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/_vendor/platformdirs/api.py +156 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/_vendor/platformdirs/macos.py +64 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/_vendor/platformdirs/unix.py +181 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/_vendor/platformdirs/version.py +4 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/_vendor/platformdirs/windows.py +184 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/_vendor/typing_extensions.py +2209 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/_vendor/zipp.py +329 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pkg_resources/extern/__init__.py +80 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pluggy/__init__.py +18 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pluggy/_callers.py +155 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pluggy/_hooks.py +602 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pluggy/_manager.py +466 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pluggy/_result.py +108 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pluggy/_tracing.py +72 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pluggy/_version.py +4 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pluggy-1.2.0.dist-info/INSTALLER +1 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pluggy-1.2.0.dist-info/LICENSE +21 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pluggy-1.2.0.dist-info/METADATA +142 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pluggy-1.2.0.dist-info/RECORD +20 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pluggy-1.2.0.dist-info/WHEEL +5 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pluggy-1.2.0.dist-info/top_level.txt +1 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/__init__.py +394 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/_reexport.py +14 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/api.py +384 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/config.py +1126 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/convert.py +724 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/dataframe/__init__.py +5 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/dataframe/_html.py +176 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/dataframe/frame.py +10172 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/dataframe/group_by.py +1140 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/datatypes/__init__.py +146 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/datatypes/classes.py +703 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/datatypes/constants.py +82 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/datatypes/constructor.py +149 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/datatypes/convert.py +524 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/dependencies.py +260 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/exceptions.py +124 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/expr/__init__.py +7 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/expr/array.py +119 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/expr/binary.py +231 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/expr/categorical.py +81 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/expr/datetime.py +2020 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/expr/expr.py +9767 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/expr/list.py +1210 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/expr/meta.py +266 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/expr/string.py +2108 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/expr/struct.py +152 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/expr/whenthen.py +190 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/functions/__init__.py +166 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/functions/aggregation/__init__.py +24 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/functions/aggregation/horizontal.py +240 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/functions/aggregation/vertical.py +338 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/functions/as_datatype.py +590 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/functions/col.py +333 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/functions/eager.py +442 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/functions/lazy.py +2150 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/functions/lit.py +160 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/functions/random.py +22 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/functions/range/__init__.py +16 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/functions/range/_utils.py +15 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/functions/range/date_range.py +402 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/functions/range/datetime_range.py +323 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/functions/range/int_range.py +292 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/functions/range/time_range.py +320 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/functions/repeat.py +289 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/functions/whenthen.py +110 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/interchange/__init__.py +6 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/interchange/buffer.py +78 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/interchange/column.py +188 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/interchange/dataframe.py +234 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/interchange/from_dataframe.py +111 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/interchange/protocol.py +254 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/interchange/utils.py +82 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/io/__init__.py +38 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/io/_utils.py +221 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/io/avro.py +40 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/io/csv/__init__.py +7 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/io/csv/_utils.py +34 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/io/csv/batched_reader.py +144 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/io/csv/functions.py +937 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/io/database.py +774 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/io/delta.py +369 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/io/iceberg.py +304 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/io/ipc/__init__.py +8 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/io/ipc/anonymous_scan.py +47 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/io/ipc/functions.py +262 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/io/json.py +52 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/io/ndjson.py +117 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/io/parquet/__init__.py +7 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/io/parquet/anonymous_scan.py +47 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/io/parquet/functions.py +281 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/io/pyarrow_dataset/__init__.py +5 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/io/pyarrow_dataset/anonymous_scan.py +105 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/io/pyarrow_dataset/functions.py +69 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/io/spreadsheet/__init__.py +3 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/io/spreadsheet/_write_utils.py +577 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/io/spreadsheet/functions.py +767 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/lazyframe/__init__.py +5 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/lazyframe/frame.py +6188 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/lazyframe/group_by.py +661 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/py.typed +0 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/selectors.py +1974 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/series/__init__.py +5 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/series/_numpy.py +54 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/series/array.py +109 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/series/binary.py +88 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/series/categorical.py +164 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/series/datetime.py +1909 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/series/list.py +793 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/series/series.py +6908 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/series/string.py +1608 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/series/struct.py +94 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/series/utils.py +171 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/slice.py +210 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/sql/__init__.py +5 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/sql/context.py +510 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/string_cache.py +200 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/testing/__init__.py +13 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/testing/asserts/__init__.py +9 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/testing/asserts/frame.py +276 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/testing/asserts/series.py +403 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/testing/asserts/utils.py +12 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/testing/parametric/__init__.py +33 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/testing/parametric/primitives.py +731 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/testing/parametric/profiles.py +105 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/testing/parametric/strategies.py +435 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/type_aliases.py +236 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/utils/__init__.py +44 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/utils/_async.py +94 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/utils/_construction.py +1743 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/utils/_parse_expr_input.py +132 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/utils/_scan.py +28 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/utils/_wrap.py +25 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/utils/build_info.py +24 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/utils/convert.py +274 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/utils/deprecation.py +258 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/utils/meta.py +42 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/utils/polars_version.py +19 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/utils/show_versions.py +98 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/utils/udfs.py +885 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars/utils/various.py +528 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars-0.19.11.dist-info/INSTALLER +1 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars-0.19.11.dist-info/METADATA +344 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars-0.19.11.dist-info/RECORD +246 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars-0.19.11.dist-info/REQUESTED +0 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars-0.19.11.dist-info/WHEEL +4 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/polars-0.19.11.dist-info/license_files/LICENSE +19 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/py.py +10 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pytest/__init__.py +171 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pytest/__main__.py +5 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pytest/py.typed +0 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pytest-7.4.3.dist-info/INSTALLER +1 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pytest-7.4.3.dist-info/LICENSE +21 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pytest-7.4.3.dist-info/METADATA +222 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pytest-7.4.3.dist-info/RECORD +154 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pytest-7.4.3.dist-info/REQUESTED +0 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pytest-7.4.3.dist-info/WHEEL +5 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pytest-7.4.3.dist-info/entry_points.txt +3 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/pytest-7.4.3.dist-info/top_level.txt +3 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/scikit_build-0.17.6.dist-info/INSTALLER +1 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/scikit_build-0.17.6.dist-info/METADATA +292 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/scikit_build-0.17.6.dist-info/RECORD +87 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/scikit_build-0.17.6.dist-info/REQUESTED +0 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/scikit_build-0.17.6.dist-info/WHEEL +4 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/scikit_build-0.17.6.dist-info/licenses/AUTHORS.rst +5 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/scikit_build-0.17.6.dist-info/licenses/LICENSE +50 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/__init__.py +270 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/__init__.py +14 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/_collections.py +194 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/_functools.py +20 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/_log.py +4 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/_macos_compat.py +12 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/_msvccompiler.py +568 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/archive_util.py +280 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/bcppcompiler.py +401 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/ccompiler.py +1254 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/cmd.py +435 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/command/__init__.py +25 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/command/_framework_compat.py +55 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/command/bdist.py +156 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/command/bdist_dumb.py +143 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/command/bdist_rpm.py +614 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/command/build.py +152 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/command/build_clib.py +207 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/command/build_ext.py +788 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/command/build_py.py +406 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/command/build_scripts.py +172 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/command/check.py +151 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/command/clean.py +75 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/command/config.py +376 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/command/install.py +813 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/command/install_data.py +83 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/command/install_egg_info.py +92 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/command/install_headers.py +44 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/command/install_lib.py +237 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/command/install_scripts.py +60 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/command/py37compat.py +31 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/command/register.py +320 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/command/sdist.py +530 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/command/upload.py +206 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/config.py +139 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/core.py +291 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/cygwinccompiler.py +356 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/debug.py +5 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/dep_util.py +96 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/dir_util.py +243 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/dist.py +1287 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/errors.py +127 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/extension.py +248 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/fancy_getopt.py +470 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/file_util.py +248 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/filelist.py +371 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/log.py +57 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/msvc9compiler.py +829 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/msvccompiler.py +692 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/py38compat.py +8 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/py39compat.py +22 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/spawn.py +109 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/sysconfig.py +559 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/text_file.py +286 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/unixccompiler.py +400 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/util.py +513 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/version.py +357 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_distutils/versionpredicate.py +175 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_entry_points.py +94 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_imp.py +82 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_importlib.py +50 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_itertools.py +23 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_normalization.py +114 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_path.py +37 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_reqs.py +33 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/__init__.py +0 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_metadata/__init__.py +904 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_metadata/_adapters.py +90 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_metadata/_collections.py +30 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_metadata/_compat.py +72 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_metadata/_functools.py +104 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_metadata/_itertools.py +73 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_metadata/_meta.py +49 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_metadata/_py39compat.py +35 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_metadata/_text.py +99 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/__init__.py +36 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/_adapters.py +170 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/_common.py +207 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/_compat.py +108 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/_itertools.py +35 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/_legacy.py +120 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/abc.py +170 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/readers.py +120 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_resources/simple.py +106 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/jaraco/__init__.py +0 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/jaraco/context.py +288 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/jaraco/functools.py +556 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/jaraco/text/__init__.py +599 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/more_itertools/__init__.py +4 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/more_itertools/more.py +3824 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/more_itertools/recipes.py +620 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/ordered_set.py +488 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/packaging/__init__.py +15 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/packaging/_elffile.py +108 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/packaging/_manylinux.py +240 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/packaging/_musllinux.py +80 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/packaging/_parser.py +353 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/packaging/_structures.py +61 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/packaging/_tokenizer.py +192 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/packaging/markers.py +252 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/packaging/metadata.py +408 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/packaging/requirements.py +95 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/packaging/specifiers.py +1008 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/packaging/tags.py +546 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/packaging/utils.py +141 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/packaging/version.py +564 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/tomli/__init__.py +11 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/tomli/_parser.py +691 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/tomli/_re.py +107 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/tomli/_types.py +10 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/typing_extensions.py +2296 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/_vendor/zipp.py +329 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/archive_util.py +213 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/build_meta.py +515 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/command/__init__.py +12 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/command/alias.py +78 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/command/bdist_egg.py +456 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/command/bdist_rpm.py +43 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/command/build.py +149 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/command/build_clib.py +101 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/command/build_ext.py +383 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/command/build_py.py +386 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/command/develop.py +190 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/command/dist_info.py +119 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/command/easy_install.py +2307 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/command/editable_wheel.py +857 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/command/egg_info.py +761 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/command/install.py +145 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/command/install_egg_info.py +60 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/command/install_lib.py +122 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/command/install_scripts.py +73 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/command/launcher manifest.xml +15 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/command/register.py +18 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/command/rotate.py +64 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/command/saveopts.py +22 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/command/sdist.py +208 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/command/setopt.py +149 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/command/test.py +251 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/command/upload.py +17 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/command/upload_docs.py +215 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/config/__init__.py +42 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/config/_apply_pyprojecttoml.py +386 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/config/_validate_pyproject/__init__.py +34 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/config/_validate_pyproject/error_reporting.py +318 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/config/_validate_pyproject/extra_validations.py +36 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_exceptions.py +51 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_validations.py +1052 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/config/_validate_pyproject/formats.py +275 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/config/expand.py +462 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/config/pyprojecttoml.py +437 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/config/setupcfg.py +789 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/dep_util.py +25 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/depends.py +176 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/discovery.py +611 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/dist.py +1239 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/errors.py +58 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/extension.py +148 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/extern/__init__.py +83 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/glob.py +167 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/installer.py +138 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/launch.py +36 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/logging.py +37 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/monkey.py +159 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/msvc.py +1690 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/namespaces.py +107 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/package_index.py +1132 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/py312compat.py +12 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/sandbox.py +530 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/script (dev).tmpl +6 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/script.tmpl +3 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/unicode_utils.py +42 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/version.py +6 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/warnings.py +104 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/wheel.py +231 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools/windows_support.py +29 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools-68.0.0.dist-info/INSTALLER +1 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools-68.0.0.dist-info/LICENSE +17 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools-68.0.0.dist-info/METADATA +140 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools-68.0.0.dist-info/RECORD +454 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools-68.0.0.dist-info/REQUESTED +0 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools-68.0.0.dist-info/WHEEL +5 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools-68.0.0.dist-info/entry_points.txt +56 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/setuptools-68.0.0.dist-info/top_level.txt +3 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/__init__.py +21 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/_compat/__init__.py +0 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/_compat/tomllib.py +10 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/_compat/typing.py +10 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/_version.py +4 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/_version.pyi +6 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/cmaker.py +772 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/command/__init__.py +34 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/command/bdist.py +12 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/command/bdist_wheel.py +43 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/command/build.py +13 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/command/build_ext.py +40 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/command/build_py.py +100 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/command/clean.py +28 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/command/egg_info.py +44 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/command/generate_source_manifest.py +80 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/command/install.py +27 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/command/install_lib.py +21 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/command/install_scripts.py +21 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/command/sdist.py +39 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/command/test.py +16 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/constants.py +148 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/exceptions.py +22 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/platform_specifics/__init__.py +13 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/platform_specifics/abstract.py +324 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/platform_specifics/aix.py +28 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/platform_specifics/bsd.py +10 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/platform_specifics/cygwin.py +32 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/platform_specifics/linux.py +71 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/platform_specifics/osx.py +28 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/platform_specifics/platform_factory.py +54 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/platform_specifics/sunos.py +28 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/platform_specifics/unix.py +25 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/platform_specifics/windows.py +298 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/py.typed +0 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/resources/cmake/FindCython.cmake +88 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/resources/cmake/FindF2PY.cmake +125 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/resources/cmake/FindNumPy.cmake +104 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/resources/cmake/FindPythonExtensions.cmake +597 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/resources/cmake/UseCython.cmake +383 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/resources/cmake/UseF2PY.cmake +146 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/resources/cmake/UsePythonExtensions.cmake +320 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/resources/cmake/targetLinkLibrariesWithDynamicLookup.cmake +597 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/setuptools_wrap.py +1060 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/skbuild/utils/__init__.py +271 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/sortedcontainers/__init__.py +74 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/sortedcontainers/sorteddict.py +812 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/sortedcontainers/sortedlist.py +2646 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/sortedcontainers/sortedset.py +733 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/sortedcontainers-2.4.0.dist-info/INSTALLER +1 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/sortedcontainers-2.4.0.dist-info/LICENSE +13 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/sortedcontainers-2.4.0.dist-info/METADATA +264 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/sortedcontainers-2.4.0.dist-info/RECORD +15 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/sortedcontainers-2.4.0.dist-info/REQUESTED +0 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/sortedcontainers-2.4.0.dist-info/WHEEL +6 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/sortedcontainers-2.4.0.dist-info/top_level.txt +1 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/wheel/__init__.py +3 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/wheel/__main__.py +23 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/wheel/_setuptools_logging.py +26 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/wheel/bdist_wheel.py +575 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/wheel/cli/__init__.py +155 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/wheel/cli/convert.py +273 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/wheel/cli/pack.py +124 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/wheel/cli/tags.py +151 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/wheel/cli/unpack.py +30 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/wheel/macosx_libfile.py +471 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/wheel/metadata.py +179 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/wheel/util.py +26 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/wheel/vendored/__init__.py +0 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/wheel/vendored/packaging/__init__.py +0 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/wheel/vendored/packaging/_elffile.py +108 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/wheel/vendored/packaging/_manylinux.py +238 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/wheel/vendored/packaging/_musllinux.py +80 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/wheel/vendored/packaging/_parser.py +328 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/wheel/vendored/packaging/_structures.py +61 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/wheel/vendored/packaging/_tokenizer.py +188 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/wheel/vendored/packaging/markers.py +245 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/wheel/vendored/packaging/requirements.py +95 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/wheel/vendored/packaging/specifiers.py +1006 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/wheel/vendored/packaging/tags.py +546 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/wheel/vendored/packaging/utils.py +141 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/wheel/vendored/packaging/version.py +563 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/wheel/vendored/vendor.txt +1 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/wheel/wheelfile.py +197 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/wheel-0.41.0.dist-info/INSTALLER +1 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/wheel-0.41.0.dist-info/LICENSE.txt +21 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/wheel-0.41.0.dist-info/METADATA +61 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/wheel-0.41.0.dist-info/RECORD +63 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/wheel-0.41.0.dist-info/REQUESTED +0 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/wheel-0.41.0.dist-info/WHEEL +4 -0
- hgraph-0.0.1/venv/lib/python3.11/site-packages/wheel-0.41.0.dist-info/entry_points.txt +6 -0
- hgraph-0.0.1/venv/pyvenv.cfg +8 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Bug report
|
|
3
|
+
about: Create a report to help us improve
|
|
4
|
+
title: ''
|
|
5
|
+
labels: ''
|
|
6
|
+
assignees: ''
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
**Describe the bug**
|
|
11
|
+
A clear and concise description of what the bug is.
|
|
12
|
+
|
|
13
|
+
**To Reproduce**
|
|
14
|
+
A small test case to show the issue is preferred. If not possible, provide whatever useful information
|
|
15
|
+
you feel may be able to assist in narrowing down how to reproduce the issue.
|
|
16
|
+
|
|
17
|
+
**Expected behavior**
|
|
18
|
+
A clear and concise description of what you expected to happen.
|
|
19
|
+
|
|
20
|
+
**Screenshots**
|
|
21
|
+
If applicable, add screenshots to help explain your problem.
|
|
22
|
+
|
|
23
|
+
**Environment:**
|
|
24
|
+
- OS: [e.g. iOS]
|
|
25
|
+
- Python Version [e.g. 11.1]
|
|
26
|
+
|
|
27
|
+
**Additional context**
|
|
28
|
+
Add any other context about the problem here.
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Feature request
|
|
3
|
+
about: Suggest an idea for this project
|
|
4
|
+
title: ''
|
|
5
|
+
labels: ''
|
|
6
|
+
assignees: ''
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
**Is your feature request related to a problem? Please describe.**
|
|
11
|
+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
|
12
|
+
|
|
13
|
+
**Describe the solution you'd like**
|
|
14
|
+
A clear and concise description of what you want to happen.
|
|
15
|
+
|
|
16
|
+
**Describe alternatives you've considered**
|
|
17
|
+
A clear and concise description of any alternative solutions or features you've considered.
|
|
18
|
+
|
|
19
|
+
**Additional context**
|
|
20
|
+
Add any other context or screenshots about the feature request here.
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# To get started with Dependabot version updates, you'll need to specify which
|
|
2
|
+
# package ecosystems to update and where the package manifests are located.
|
|
3
|
+
# Please see the documentation for all configuration options:
|
|
4
|
+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
|
5
|
+
|
|
6
|
+
version: 2
|
|
7
|
+
updates:
|
|
8
|
+
- package-ecosystem: "pip" # See documentation for possible values
|
|
9
|
+
directory: "/" # Location of package manifests
|
|
10
|
+
schedule:
|
|
11
|
+
interval: "weekly"
|
hgraph-0.0.1/.gitignore
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# Prerequisites
|
|
2
|
+
*.d
|
|
3
|
+
|
|
4
|
+
# Compiled Object files
|
|
5
|
+
*.slo
|
|
6
|
+
*.lo
|
|
7
|
+
*.o
|
|
8
|
+
*.obj
|
|
9
|
+
|
|
10
|
+
# Precompiled Headers
|
|
11
|
+
*.gch
|
|
12
|
+
*.pch
|
|
13
|
+
|
|
14
|
+
# Compiled Dynamic libraries
|
|
15
|
+
*.so
|
|
16
|
+
*.dylib
|
|
17
|
+
*.dll
|
|
18
|
+
|
|
19
|
+
# Fortran module files
|
|
20
|
+
*.mod
|
|
21
|
+
*.smod
|
|
22
|
+
|
|
23
|
+
# Compiled Static libraries
|
|
24
|
+
*.lai
|
|
25
|
+
*.la
|
|
26
|
+
*.a
|
|
27
|
+
*.lib
|
|
28
|
+
|
|
29
|
+
# Executables
|
|
30
|
+
*.exe
|
|
31
|
+
*.out
|
|
32
|
+
*.app
|
|
33
|
+
.idea/*
|
hgraph-0.0.1/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2023 Howard Henson
|
|
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.
|
hgraph-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: hgraph
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A functional reactive engine
|
|
5
|
+
Project-URL: Homepage, https://github.com/hhenson/hgraph
|
|
6
|
+
Project-URL: Repository, https://github.com/hhenson/hgraph.git
|
|
7
|
+
Author-email: Howard Henson <howard@henson.me.uk>
|
|
8
|
+
License: MIT License
|
|
9
|
+
|
|
10
|
+
Copyright (c) 2023 Howard Henson
|
|
11
|
+
|
|
12
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
13
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
14
|
+
in the Software without restriction, including without limitation the rights
|
|
15
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
16
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
17
|
+
furnished to do so, subject to the following conditions:
|
|
18
|
+
|
|
19
|
+
The above copyright notice and this permission notice shall be included in all
|
|
20
|
+
copies or substantial portions of the Software.
|
|
21
|
+
|
|
22
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
23
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
24
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
25
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
26
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
27
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
28
|
+
SOFTWARE.
|
|
29
|
+
License-File: LICENSE
|
|
30
|
+
Keywords: forward propogating graph,fpg,functional reactive programming,graph,reactive,time series
|
|
31
|
+
Classifier: Development Status :: 3 - Alpha
|
|
32
|
+
Classifier: Programming Language :: Python
|
|
33
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
34
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
35
|
+
Requires-Python: >=3.11
|
|
36
|
+
Requires-Dist: frozendict>=2.3.10
|
|
37
|
+
Requires-Dist: more-itertools>=10.1.0
|
|
38
|
+
Requires-Dist: sortedcontainers>=2.4.0
|
|
39
|
+
Description-Content-Type: text/markdown
|
|
40
|
+
|
|
41
|
+
# hg
|
|
42
|
+
A functional reactive programming engine with a Python front-end.
|
hgraph-0.0.1/README.md
ADDED
|
@@ -0,0 +1,189 @@
|
|
|
1
|
+
# Forward Propogation Graph
|
|
2
|
+
|
|
3
|
+
## Introduction
|
|
4
|
+
|
|
5
|
+
The forward propagation graph (FPG) is a directed acyclic graph (DAG). The graph
|
|
6
|
+
is designed to evaluate the flow of data through the graph, where evaluation follows
|
|
7
|
+
the rank order of the nodes in the graph.
|
|
8
|
+
|
|
9
|
+
The graph has 3 types of nodes, namely: source, compute, and sink nodes.
|
|
10
|
+
The source nodes are the entry points into the graph, they have only output edges
|
|
11
|
+
with no input edges. Sink nodes are the leaves of the node and have no output edges.
|
|
12
|
+
Finally, the compute nodes are found between the source and sink nodes. These nodes
|
|
13
|
+
have both input and output edges.
|
|
14
|
+
|
|
15
|
+
```plantuml
|
|
16
|
+
@startditaa
|
|
17
|
+
+--------+
|
|
18
|
+
| Source |
|
|
19
|
+
+--------+
|
|
20
|
+
|
|
|
21
|
+
v
|
|
22
|
+
+---------+
|
|
23
|
+
| Compute |
|
|
24
|
+
+---------+
|
|
25
|
+
|
|
|
26
|
+
v
|
|
27
|
+
+-------+
|
|
28
|
+
| Sink |
|
|
29
|
+
+-------+
|
|
30
|
+
@endditaa
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
The FPG graph is a time-series evaluation engine. That is the graph evaluates information
|
|
34
|
+
over time, the time is typically set by the source nodes. There are two types of source
|
|
35
|
+
nodes, namely: pull and push source nodes. The pull source nodes express there values
|
|
36
|
+
as a tuple of time and value. The graph will evaluate itself asof the time emitted by
|
|
37
|
+
a pull source node or wall clock time if the push source node has a value enqueue.
|
|
38
|
+
A push source node will be evaluated at either the time of the
|
|
39
|
+
current engine time (as determined by the pull source node values) or at the
|
|
40
|
+
current wall clock time if there are no pending pull source nodes with values to be
|
|
41
|
+
evaluated before the current wall clock time.
|
|
42
|
+
|
|
43
|
+
The graph is evaluated in waves, the time of the wave (or engine_time) is the time
|
|
44
|
+
set by the source node. The wave is evaluated in rank order (defined by the topological
|
|
45
|
+
sort order of the graph). Nodes with the same rank may be evaluated in any order,
|
|
46
|
+
although in most implementations, the nodes are flattened into a fully ordered list
|
|
47
|
+
and will always be evaluated in that order during the life-time of the graph.
|
|
48
|
+
|
|
49
|
+
Nodes are only evaluated if the output/s that the input/s of the node have been modified
|
|
50
|
+
during the current wave. The value of the outputs of a node are always present.
|
|
51
|
+
Thus, once a value is computed it will be available to the inputs of dependent nodes / inputs.
|
|
52
|
+
The net result is that the graph only evaluates the path of change, but produces
|
|
53
|
+
the same output as if every node were evaluated in each wave.
|
|
54
|
+
|
|
55
|
+
The nodes of the graph obtain time from the graph context. The key information is
|
|
56
|
+
engine_time, this is the time the graph is currently been evaluated for, the
|
|
57
|
+
"wall clock" time (wall_clock_time) represent the current live time. The nodes
|
|
58
|
+
of a graph may never refer to the system clock (e.g. datetime.now()), but rather
|
|
59
|
+
should always reflect the time from the supplied execution context. This allows
|
|
60
|
+
the graph to run in a simulation (or backtest) mode where the graph is fed
|
|
61
|
+
historical time-series data to the source nodes and the wall_clock_time is
|
|
62
|
+
treated as the engine_time + engine_lag (or the time taken to the point at which
|
|
63
|
+
it is queried). The upshot of this is that the graph can be forced to re-run
|
|
64
|
+
different input simulations using exactly the same logic as it would run in real-time,
|
|
65
|
+
without having to weight for any artificially introduced delays. I have heard
|
|
66
|
+
this referred to as "time-travel", "bullet-time" and "compressed-time".
|
|
67
|
+
|
|
68
|
+
One of the key advantages of this design for software development is partially
|
|
69
|
+
the performance based on reduced computation and largely the ability to run
|
|
70
|
+
simulations or backtests without having to modify the logic. If the key use of the
|
|
71
|
+
software is for backtest/simulation of computations over time-series data, there
|
|
72
|
+
are potentially more efficient solutions, but if the code is designed to run
|
|
73
|
+
in real time at least as often as in simulation mode, then this design provides
|
|
74
|
+
a powerful tool to develop these type of solutions.
|
|
75
|
+
|
|
76
|
+
## Graph Runtime
|
|
77
|
+
|
|
78
|
+
The runtime graph represent the structure that is evaluated at runtime. This
|
|
79
|
+
consists of the graph engine, graph context, graph and nodes.
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
### Graph Engine
|
|
83
|
+
|
|
84
|
+
```plantuml
|
|
85
|
+
@startuml
|
|
86
|
+
enum RunMode {
|
|
87
|
+
+REAL_TIME
|
|
88
|
+
+SIMULATION
|
|
89
|
+
}
|
|
90
|
+
```
|
|
91
|
+
```plantuml
|
|
92
|
+
interface GraphEngine {
|
|
93
|
+
+graph: Graph
|
|
94
|
+
+run_mode: RunMode
|
|
95
|
+
+run(start_time: datetime, end_time: datetime) -> None
|
|
96
|
+
}
|
|
97
|
+
@enduml
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
The ``GraphEngine`` is the component that is responsible for evaluating the graph.
|
|
101
|
+
This contains the master run-loop. The run-loop evaluates the graph in the time
|
|
102
|
+
range provided. The nature of the evaluation is deterimined by the ``run_mode``
|
|
103
|
+
of the graph. In ``SIMULATION`` mode the graph will only support pull source nodes
|
|
104
|
+
and will evaluate the graph in compressed-time. In ``REAL_TIME`` mode the graph
|
|
105
|
+
will support both push and pull source nodes and will evaluate the graph
|
|
106
|
+
using true wall clock time, that is in a push source node presents a time in the future,
|
|
107
|
+
the engine will wait until the time is reached on the computers clock prior to performing
|
|
108
|
+
the computation.
|
|
109
|
+
|
|
110
|
+
Historical data can also be fed into the system, but in REAL_TIME mode, the graph will
|
|
111
|
+
process push source node ticks at whatever time point the engine is when the tick arrives.
|
|
112
|
+
|
|
113
|
+
### Graph Context
|
|
114
|
+
|
|
115
|
+
```plantuml
|
|
116
|
+
interface ExecutionContext {
|
|
117
|
+
+current_engine_time: datetime
|
|
118
|
+
+wall_clock_time: datetime
|
|
119
|
+
+engine_lag: timedelta
|
|
120
|
+
+next_cycle_engine_time: datetime
|
|
121
|
+
|
|
122
|
+
+request_engine_stop()
|
|
123
|
+
+is_stop_requested() -> bool
|
|
124
|
+
|
|
125
|
+
+add_before_evaluation_notification(fn: callback[[], None]) -> None
|
|
126
|
+
+add_after_evaluation_notification(fn: callback[[], None]) -> None
|
|
127
|
+
}
|
|
128
|
+
```
|
|
129
|
+
|
|
130
|
+
The most important interface elements are present above. This is available to
|
|
131
|
+
all components in the graph and provides state information about the evaluation
|
|
132
|
+
of the graph, the most important being the current_engine_time and the wall_clock_time.
|
|
133
|
+
|
|
134
|
+
The add_before_evaluation_notification and add_after_evaluation_notification are
|
|
135
|
+
useful to inject behavior that needs to be evaluated once either just after the
|
|
136
|
+
evaluation of the wave or just before the next wave is started. This is used
|
|
137
|
+
extensively by internal components of the graph as well to manage transient state
|
|
138
|
+
such as TSS.added / TSS.removed. These are values that are only present for a
|
|
139
|
+
single wave of the graph and need to be cleared down at the end of the wave.
|
|
140
|
+
|
|
141
|
+
The ExecutionContext is created and owned by the GraphEngine.
|
|
142
|
+
There are a number of other key methods and properties on the context, but many
|
|
143
|
+
are for internal use and in a C++ engine are unlikely to be exposed to the user.
|
|
144
|
+
|
|
145
|
+
### Graph
|
|
146
|
+
|
|
147
|
+
```plantuml
|
|
148
|
+
interface Graph {
|
|
149
|
+
+graph_id: tuple[int, ...]
|
|
150
|
+
+nodes: List[Node]
|
|
151
|
+
+schedule: List[datetime]
|
|
152
|
+
+context: ExecutionContext
|
|
153
|
+
+schedule_node(node_ndx: int, time: datetime) -> None
|
|
154
|
+
}
|
|
155
|
+
```
|
|
156
|
+
|
|
157
|
+
The graph contains the nodes that belong to the graph. This graph is not the same
|
|
158
|
+
as that of the wiring structure, but is the flattened graph of all nodes that
|
|
159
|
+
are to be evaluated within a ``GraphExecutor``. The graph also contains the
|
|
160
|
+
evaluation schedule for each node. This is list of datetime values that indicate
|
|
161
|
+
the next time the node is scheduled to be evaluated at. The graph is responsible
|
|
162
|
+
for scheduling the nodes for evaluation. This is exposed as the ``schedule_node``
|
|
163
|
+
method on the class.
|
|
164
|
+
|
|
165
|
+
### Nodes
|
|
166
|
+
|
|
167
|
+
As disused in the introduction, there are three key node types: source, compute,
|
|
168
|
+
and sink nodes. Nodes in the graph are represented as classes within the internals
|
|
169
|
+
of the system. The base class is as follows:
|
|
170
|
+
|
|
171
|
+
```plantuml
|
|
172
|
+
interface Node {
|
|
173
|
+
+node_ndx: int
|
|
174
|
+
+rank: int
|
|
175
|
+
+inputs: List[Edge]
|
|
176
|
+
+outputs: List[Edge]
|
|
177
|
+
+evaluate(context: ExecutionContext) -> None
|
|
178
|
+
}
|
|
179
|
+
```
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
#### Source Nodes
|
|
183
|
+
|
|
184
|
+
```plantuml
|
|
185
|
+
interface SourceNode {
|
|
186
|
+
+value: Any
|
|
187
|
+
+time: datetime
|
|
188
|
+
}
|
|
189
|
+
```
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
Component Signature
|
|
2
|
+
===================
|
|
3
|
+
|
|
4
|
+
The component signature describes the interface shape of the component
|
|
5
|
+
being defined. All components (graph or node) follow the same basic rules.
|
|
6
|
+
|
|
7
|
+
The signature declares the following attributes:
|
|
8
|
+
|
|
9
|
+
* The name of the node
|
|
10
|
+
* The incoming edges (or time-series inputs)
|
|
11
|
+
* The node configuration (or scalar values)
|
|
12
|
+
* The outgoing edges (or time-series outputs)
|
|
13
|
+
* Documentation of the component
|
|
14
|
+
|
|
15
|
+
The component decorator provides additional meta-data, which will be
|
|
16
|
+
discussed on a type-by-type basis.
|
|
17
|
+
|
|
18
|
+
The basic component signature looks like this:
|
|
19
|
+
|
|
20
|
+
```python
|
|
21
|
+
|
|
22
|
+
@decorator
|
|
23
|
+
def component_name(ts1: TIME_SERIES_TYPE, ..., s1: str, ...) -> TIME_SERIES_TYPE_2:
|
|
24
|
+
"""
|
|
25
|
+
Documentation
|
|
26
|
+
"""
|
|
27
|
+
... # component behavior
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
The ``@decorator`` is the appropriate component decorator that indicates
|
|
31
|
+
the type of component, for example: ``@graph`` or ``@compute_node``.
|
|
32
|
+
|
|
33
|
+
ALL arguments MUST use the type annotations to indicate the expected type,
|
|
34
|
+
this allows the component signature parser to build the appropriate
|
|
35
|
+
meta-data for components shape. There is no requirement as to ordering
|
|
36
|
+
of inputs (i.e. to separate time-series inputs from scalar inputs.), but
|
|
37
|
+
by convention we will often accumulate the time-series inputs first and the
|
|
38
|
+
scalar inputs last.
|
|
39
|
+
|
|
40
|
+
The scalar inputs are considered as configuration information to the
|
|
41
|
+
component, the time-series inputs are the value inputs to the component.
|
|
42
|
+
Time-series inputs vary over time, scalar inputs are fixed at time of
|
|
43
|
+
wiring the node and may not change after that.
|
|
44
|
+
|
|
45
|
+
It is possible for components to take no arguments (typically a source node).
|
|
46
|
+
|
|
47
|
+
The output can take three forms, none in the case of components that
|
|
48
|
+
terminate the flow of the graph (typically sink nodes), a single output,
|
|
49
|
+
or an un-named bundle output. The latter is expressed as a dictionary or
|
|
50
|
+
values, for example:
|
|
51
|
+
|
|
52
|
+
```python
|
|
53
|
+
@graph
|
|
54
|
+
def my_component() -> {"out1": TS[str], "out2": TS[float]}:
|
|
55
|
+
...
|
|
56
|
+
```
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
Node Signature
|
|
2
|
+
==============
|
|
3
|
+
|
|
4
|
+
The node signatures extend the component signature in their ability to
|
|
5
|
+
mark interest in special arguments to be provided as inputs.
|
|
6
|
+
|
|
7
|
+
These special inputs are only useful to runtime behaviour and as such are
|
|
8
|
+
not meaningful to graph components.
|
|
9
|
+
|
|
10
|
+
These special inputs include:
|
|
11
|
+
|
|
12
|
+
* context: ``ExecutionContext``
|
|
13
|
+
* state: ``NodeState``
|
|
14
|
+
* output: ``TSOut[str]`` (for example)
|
|
15
|
+
|
|
16
|
+
The names of the arguments are user defined, but following the suggested
|
|
17
|
+
names makes it easier to read the code (where sensible).
|
|
18
|
+
|
|
19
|
+
These special variable must appear in the formal kwargs sections and be defined
|
|
20
|
+
to have None as the default value, for example:
|
|
21
|
+
|
|
22
|
+
```python
|
|
23
|
+
@generator
|
|
24
|
+
def const(value: SCALAR, context: ExecutionContext=None) -> TIME_SERIES_VALUE:
|
|
25
|
+
...
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
The runtime engine will supply the instance values, but these can never be supplied
|
|
29
|
+
during the wiring phase, as such setting these to None as kwargs allows the
|
|
30
|
+
wiring builder detect misconfigurations more easily, and the kwarg aspect
|
|
31
|
+
hides the value from the user.
|
|
32
|
+
|
|
33
|
+
ExecutionContext
|
|
34
|
+
----------------
|
|
35
|
+
|
|
36
|
+
The execution context provides access to information about the state of
|
|
37
|
+
the running graph, this includes useful attributes such as:
|
|
38
|
+
|
|
39
|
+
* current_engine_time - The time the engine is evaluating the graph for.
|
|
40
|
+
* wall_clock_time - The wall clock time as of now, in simulation mode this is not the computer clock.
|
|
41
|
+
* engine_lag - The time taken till now to evaluate this loop (or wave) of the graph.
|
|
42
|
+
|
|
43
|
+
NodeState
|
|
44
|
+
---------
|
|
45
|
+
|
|
46
|
+
Given the paradigm of evaluation of the graph is functional, all behaviour is
|
|
47
|
+
stateless and should be idempotent. However, we also live in a stateful world,
|
|
48
|
+
this allows the node to track state, in a stateless way. That is, the node
|
|
49
|
+
is not the owner of it's state, but rather the state is provided to the node.
|
|
50
|
+
For the most part the state provided is the state computed during the last
|
|
51
|
+
evaluation of the node, but this can also be managed to deal with testing
|
|
52
|
+
with assumed prior states, etc.
|
|
53
|
+
The NodeState object is effectively a dictionary from the users point of view,
|
|
54
|
+
with the ability to access keys using ``.<key>`` type syntax as well as ``['key']``
|
|
55
|
+
syntax. The user can think of it as ``self``.
|
|
56
|
+
|
|
57
|
+
Output
|
|
58
|
+
------
|
|
59
|
+
|
|
60
|
+
Ofttimes it useful to be able to see the previous state of the output when computing
|
|
61
|
+
a new result, having access to the values of the outputs reduces anti-patterns where
|
|
62
|
+
values are cached in state that could be read directly from the output node.
|
|
63
|
+
|
|
64
|
+
The output can be directly typed using the <time-series-type>Out syntax to identify
|
|
65
|
+
the output or use ``TIME_SERIES_OUTPUT`` to indicate the variable is to receive a reference
|
|
66
|
+
to the outputs.
|
|
67
|
+
|
|
68
|
+
In either case the output will be provided, but in the former, the IDE will be able to
|
|
69
|
+
resolve the type signature and be able to provide auto-completion support. The latter mode
|
|
70
|
+
will only have the most basic signature support.
|
|
71
|
+
|
|
72
|
+
For example:
|
|
73
|
+
|
|
74
|
+
```python
|
|
75
|
+
|
|
76
|
+
@compute_node
|
|
77
|
+
def count(ts: TIME_SERIES_TYPE, output: TSOut[int]) -> TS[int]:
|
|
78
|
+
return output.value + 1
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
Using the output it is also possible to set the output directly, for example:
|
|
82
|
+
|
|
83
|
+
```python
|
|
84
|
+
|
|
85
|
+
@compute_node
|
|
86
|
+
def count(ts: TIME_SERIES_TYPE, output: TSOut[int]) -> TS[int]:
|
|
87
|
+
output.value += 1
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
In which case nothing is returned, but the output is updated. If the output is updated
|
|
91
|
+
multiple times during the evaluation of the node, only on final *tick* is generated, the value
|
|
92
|
+
of which is dependent on the output type, for example a TS type will only have the last
|
|
93
|
+
value set being available, but a TSS type will show the net state of operations performed
|
|
94
|
+
during the evaluation of the node.
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "hgraph"
|
|
7
|
+
dynamic = ["version"]
|
|
8
|
+
dependencies = [
|
|
9
|
+
# "pytest>=7.4.3",
|
|
10
|
+
"frozendict>=2.3.10",
|
|
11
|
+
"more-itertools>=10.1.0",
|
|
12
|
+
"sortedcontainers>=2.4.0",
|
|
13
|
+
]
|
|
14
|
+
requires-python = ">=3.11"
|
|
15
|
+
authors = [
|
|
16
|
+
{ name = "Howard Henson", email = "howard@henson.me.uk" },
|
|
17
|
+
]
|
|
18
|
+
maintainers = [
|
|
19
|
+
]
|
|
20
|
+
description = "A functional reactive engine"
|
|
21
|
+
readme = "README.md"
|
|
22
|
+
license = { file = "LICENSE" }
|
|
23
|
+
keywords = [
|
|
24
|
+
"reactive", "graph", "fpg", "forward propogating graph", "time series", "functional reactive programming",
|
|
25
|
+
]
|
|
26
|
+
classifiers = [
|
|
27
|
+
"Development Status :: 3 - Alpha",
|
|
28
|
+
"Programming Language :: Python",
|
|
29
|
+
"Programming Language :: Python :: 3.11",
|
|
30
|
+
"Programming Language :: Python :: Implementation :: CPython",
|
|
31
|
+
]
|
|
32
|
+
|
|
33
|
+
[project.urls]
|
|
34
|
+
Homepage = "https://github.com/hhenson/hgraph"
|
|
35
|
+
Repository = "https://github.com/hhenson/hgraph.git"
|
|
36
|
+
|
|
37
|
+
[tool.pytest.ini_options]
|
|
38
|
+
minversion = "7.4.3"
|
|
39
|
+
addopts = "-ra -q"
|
|
40
|
+
testpaths = [
|
|
41
|
+
"test",
|
|
42
|
+
]
|
|
43
|
+
|
|
44
|
+
[tool.hatch.version]
|
|
45
|
+
path = "src/hgraph/__about__.py"
|
|
46
|
+
|
|
47
|
+
[tool.hatch.envs.default]
|
|
48
|
+
dependencies = [
|
|
49
|
+
"coverage[toml]>=6.5",
|
|
50
|
+
"pytest",
|
|
51
|
+
]
|
|
52
|
+
|
|
53
|
+
[tool.hatch.envs.default.scripts]
|
|
54
|
+
test = "pytest {args:tests}"
|
|
55
|
+
test-cov = "coverage run -m pytest {args:tests}"
|
|
56
|
+
cov-report = [
|
|
57
|
+
"- coverage combine",
|
|
58
|
+
"coverage report",
|
|
59
|
+
]
|
|
60
|
+
cov = [
|
|
61
|
+
"test-cov",
|
|
62
|
+
"cov-report",
|
|
63
|
+
]
|
|
64
|
+
|
|
65
|
+
[[tool.hatch.envs.all.matrix]]
|
|
66
|
+
python = ["3.11", "3.12"]
|
|
67
|
+
|
|
68
|
+
[tool.hatch.envs.types]
|
|
69
|
+
dependencies = [
|
|
70
|
+
"mypy>=1.0.0",
|
|
71
|
+
]
|
|
72
|
+
|
|
73
|
+
[tool.hatch.envs.types.scripts]
|
|
74
|
+
check = "mypy --install-types --non-interactive {args:src/hg tests}"
|
|
75
|
+
|
|
76
|
+
[tool.coverage.run]
|
|
77
|
+
source_pkgs = ["hgraph", "tests"]
|
|
78
|
+
branch = true
|
|
79
|
+
parallel = true
|
|
80
|
+
omit = [
|
|
81
|
+
"src/hgraph/__about__.py",
|
|
82
|
+
]
|
|
83
|
+
|
|
84
|
+
[tool.coverage.paths]
|
|
85
|
+
hg = ["src/hgraph", "*/hgraph/src/hg"]
|
|
86
|
+
tests = ["tests", "*/hgraph/tests"]
|
|
87
|
+
|
|
88
|
+
[tool.coverage.report]
|
|
89
|
+
exclude_lines = [
|
|
90
|
+
"no cov",
|
|
91
|
+
"if __name__ == .__main__.:",
|
|
92
|
+
"if TYPE_CHECKING:",
|
|
93
|
+
]
|
|
94
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.1"
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
from hgraph._builder._builder import *
|
|
2
|
+
from hgraph._builder._graph_builder import *
|
|
3
|
+
from hgraph._builder._input_builder import *
|
|
4
|
+
from hgraph._builder._node_builder import *
|
|
5
|
+
from hgraph._builder._output_builder import *
|
|
6
|
+
from hgraph._builder._scalar_builder import *
|
|
7
|
+
from hgraph._builder._ts_builder import *
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
from abc import ABC, abstractmethod
|
|
2
|
+
from typing import TypeVar, Generic
|
|
3
|
+
|
|
4
|
+
ITEM = TypeVar('ITEM')
|
|
5
|
+
|
|
6
|
+
__all__ = ("Builder",)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class Builder(ABC, Generic[ITEM]):
|
|
10
|
+
"""
|
|
11
|
+
The builder is responsible for constructing and initialising the item type it is responsible for.
|
|
12
|
+
It is also responsible for destroying and cleaning up the resources associated to the item.
|
|
13
|
+
These can be thought of as life-cycle methods.
|
|
14
|
+
"""
|
|
15
|
+
|
|
16
|
+
@abstractmethod
|
|
17
|
+
def make_instance(self, **kwargs) -> ITEM:
|
|
18
|
+
"""
|
|
19
|
+
Create a new instance of the item.
|
|
20
|
+
And additional attributes required for construction are passed in as kwargs.
|
|
21
|
+
Actual instance of the builder will fix these args for all instances of builder for the type.
|
|
22
|
+
"""
|
|
23
|
+
|
|
24
|
+
@abstractmethod
|
|
25
|
+
def release_instance(self, item: ITEM):
|
|
26
|
+
"""
|
|
27
|
+
Release the item and it's resources.
|
|
28
|
+
"""
|
|
29
|
+
|