├── .github ├── dependabot.yml └── workflows │ ├── auto-release-tools.yml │ ├── build-tools.yml │ ├── lint.yml │ ├── pypi-pub.yml │ ├── release-notify.yml │ ├── sphinx.yml │ └── tests.yml ├── .gitignore ├── LICENSE ├── README.md ├── dcc_plugins_workspace ├── blender │ ├── README.md │ ├── blender_path │ │ └── addons │ │ │ └── lifeblood_plugin │ │ │ ├── __init__.py │ │ │ ├── lifeblood_utils.py │ │ │ └── lifeblood_utils_bpy.py │ └── lifeblood_addon.zip ├── build.sh ├── build_blender.sh ├── build_houdini.sh └── houdini │ ├── README.md │ ├── otls │ ├── Driver-lifeblood_cache_submitter-1.0.hda │ │ ├── INDEX__SECTION │ │ ├── Sections.list │ │ ├── houdini.hdalibrary │ │ └── lifeblood_8_8Driver_1lifeblood__cache__submitter_8_81.0 │ │ │ ├── Contents.dir │ │ │ ├── .OPdummydefs │ │ │ ├── .OPfallbacks │ │ │ ├── Contents.createtimes │ │ │ ├── Contents.mime │ │ │ ├── Contents.modtimes │ │ │ └── Sections.list │ │ │ ├── CreateScript │ │ │ ├── DialogScript │ │ │ ├── ExtraFileOptions │ │ │ ├── Help │ │ │ ├── InternalFileOptions │ │ │ ├── PythonModule │ │ │ ├── Sections.list │ │ │ ├── Tools.shelf │ │ │ └── TypePropertiesOptions │ ├── Driver-lifeblood_distributed_flip_submitter-1.0.hda │ │ ├── INDEX__SECTION │ │ ├── Sections.list │ │ ├── houdini.hdalibrary │ │ └── lifeblood_8_8Driver_1lifeblood__distributed__flip__submitter_8_81.0 │ │ │ ├── Contents.dir │ │ │ ├── .OPdummydefs │ │ │ ├── .OPfallbacks │ │ │ ├── Contents.createtimes │ │ │ ├── Contents.mime │ │ │ ├── Contents.modtimes │ │ │ └── Sections.list │ │ │ ├── CreateScript │ │ │ ├── DialogScript │ │ │ ├── ExtraFileOptions │ │ │ ├── Help │ │ │ ├── InternalFileOptions │ │ │ ├── PythonModule │ │ │ ├── Sections.list │ │ │ ├── Tools.shelf │ │ │ └── TypePropertiesOptions │ ├── Driver-lifeblood_karma_submitter-1.0.hda │ │ ├── INDEX__SECTION │ │ ├── Sections.list │ │ ├── houdini.hdalibrary │ │ └── lifeblood_8_8Driver_1lifeblood__karma__submitter_8_81.0 │ │ │ ├── Contents.dir │ │ │ ├── .OPdummydefs │ │ │ ├── .OPfallbacks │ │ │ ├── Contents.createtimes │ │ │ ├── Contents.mime │ │ │ ├── Contents.modtimes │ │ │ └── Sections.list │ │ │ ├── CreateScript │ │ │ ├── DialogScript │ │ │ ├── ExtraFileOptions │ │ │ ├── Help │ │ │ ├── InternalFileOptions │ │ │ ├── PythonModule │ │ │ ├── Sections.list │ │ │ ├── Tools.shelf │ │ │ └── TypePropertiesOptions │ ├── Driver-lifeblood_mantra_submitter-1.0.hda │ │ ├── INDEX__SECTION │ │ ├── Sections.list │ │ ├── houdini.hdalibrary │ │ └── lifeblood_8_8Driver_1lifeblood__mantra__submitter_8_81.0 │ │ │ ├── Contents.dir │ │ │ ├── .OPdummydefs │ │ │ ├── .OPfallbacks │ │ │ ├── Contents.createtimes │ │ │ ├── Contents.mime │ │ │ ├── Contents.modtimes │ │ │ └── Sections.list │ │ │ ├── CreateScript │ │ │ ├── DialogScript │ │ │ ├── ExtraFileOptions │ │ │ ├── Help │ │ │ ├── InternalFileOptions │ │ │ ├── PythonModule │ │ │ ├── Sections.list │ │ │ ├── Tools.shelf │ │ │ └── TypePropertiesOptions │ ├── Driver-lifeblood_redshift_submitter-1.0.hda │ │ ├── INDEX__SECTION │ │ ├── Sections.list │ │ ├── houdini.hdalibrary │ │ └── lifeblood_8_8Driver_1lifeblood__redshift__submitter_8_81.0 │ │ │ ├── Contents.dir │ │ │ ├── Contents.createtimes │ │ │ ├── Contents.mime │ │ │ ├── Contents.modtimes │ │ │ └── Sections.list │ │ │ ├── CreateScript │ │ │ ├── DialogScript │ │ │ ├── ExtraFileOptions │ │ │ ├── Help │ │ │ ├── InternalFileOptions │ │ │ ├── PreFirstCreate │ │ │ ├── PythonModule │ │ │ ├── Sections.list │ │ │ ├── Tools.shelf │ │ │ └── TypePropertiesOptions │ ├── Driver-lifeblood_submitter-1.0.0.hda │ │ ├── INDEX__SECTION │ │ ├── Sections.list │ │ ├── houdini.hdalibrary │ │ └── lifeblood_8_8Driver_1lifeblood__submitter_8_81.0.0 │ │ │ ├── Contents.dir │ │ │ ├── Contents.createtimes │ │ │ ├── Contents.mime │ │ │ ├── Contents.modtimes │ │ │ └── Sections.list │ │ │ ├── CreateScript │ │ │ ├── DialogScript │ │ │ ├── ExtraFileOptions │ │ │ ├── Help │ │ │ ├── IconSVG │ │ │ ├── InternalFileOptions │ │ │ ├── OnCreated │ │ │ ├── PythonModule │ │ │ ├── Sections.list │ │ │ ├── Tools.shelf │ │ │ └── TypePropertiesOptions │ └── Driver-lifeblood_wedge_submitter-1.0.hda │ │ ├── INDEX__SECTION │ │ ├── Sections.list │ │ ├── houdini.hdalibrary │ │ └── lifeblood_8_8Driver_1lifeblood__wedge__submitter_8_81.0 │ │ ├── Contents.dir │ │ ├── .OPdummydefs │ │ ├── .OPfallbacks │ │ ├── Contents.createtimes │ │ ├── Contents.mime │ │ ├── Contents.modtimes │ │ └── Sections.list │ │ ├── CreateScript │ │ ├── DialogScript │ │ ├── ExtraFileOptions │ │ ├── Help │ │ ├── InternalFileOptions │ │ ├── PythonModule │ │ ├── Sections.list │ │ ├── Tools.shelf │ │ └── TypePropertiesOptions │ └── presets │ └── Driver │ └── lifeblood-lifeblood_submitter-1.0.0.idx ├── docs ├── Makefile ├── make.bat └── source │ ├── _static │ └── css │ │ └── custom.css │ ├── api.rst │ ├── components │ ├── index.rst │ ├── logging.rst │ ├── scheduler │ │ ├── index.rst │ │ ├── scheduler_api.rst │ │ └── scheduler_configs.rst │ ├── viewer │ │ ├── config.rst │ │ ├── index.rst │ │ └── viewer_api.rst │ └── worker │ │ ├── environment_resolver.rst │ │ ├── index.rst │ │ ├── worker.rst │ │ └── worker_api.rst │ ├── concepts.rst │ ├── conf.py │ ├── diagrams │ └── messages.puml │ ├── expressions.rst │ ├── images │ ├── .$overview.drawio.bkp │ ├── installation │ │ ├── after_submission.png │ │ ├── autolisten.png │ │ ├── autostart_components.png │ │ ├── create_task_btn.png │ │ ├── launch_tab.png │ │ ├── launch_tab_launched.png │ │ ├── lbm_as_is.png │ │ ├── lbm_as_is_empty.png │ │ ├── nodes_create.png │ │ ├── overview.png │ │ ├── press_download.png │ │ ├── redshift_cmd.png │ │ ├── redshift_preset_overview.png │ │ ├── redshift_submitter.png │ │ ├── render_done.png │ │ ├── render_done_clean.png │ │ ├── savescene.png │ │ ├── see_dead.png │ │ ├── start_viewer.png │ │ ├── takes_time.png │ │ ├── task_group_list.png │ │ ├── tray.png │ │ ├── tray_autostart.png │ │ ├── tray_menu.png │ │ ├── uncheck_python.png │ │ ├── viewer_overview.png │ │ ├── wizard_button.png │ │ ├── wizard_dcc.png │ │ ├── wizard_gpu.png │ │ ├── wizard_houdini.png │ │ ├── wizard_houdini_tools.png │ │ ├── wizard_intro.png │ │ ├── wizard_redshift.png │ │ ├── wizard_scratch.png │ │ ├── wizard_succ.png │ │ ├── wizard_summ.png │ │ └── workers_work.png │ ├── lifeblood.svg │ ├── manager_overview.png │ ├── overview.drawio │ ├── overview.png │ ├── viewer_group_list.png │ ├── viewer_nodeeditor.png │ ├── viewer_nodeeditor_connecspawn.png │ ├── viewer_nodeeditor_connecsplit.png │ ├── viewer_nodeeditor_newnode.png │ ├── viewer_nodeeditor_parameters.png │ ├── viewer_nodeeditor_tasklist.png │ ├── viewer_overview.png │ ├── viewer_overview.xcf │ └── viewer_worker_list.png │ ├── index.rst │ ├── installation.rst │ ├── installation_with_manager.rst │ ├── invocation_comm_feature.rst │ ├── network_config.rst │ ├── news │ ├── index.rst │ └── post_01 │ │ ├── index.rst │ │ └── params.png │ ├── nodes.rst │ ├── nodes │ ├── core │ │ ├── attribute_splitter.rst │ │ ├── delete_attrib.rst │ │ ├── environment_resolver_arguments_setter.rst │ │ ├── killer.rst │ │ ├── mod_attrib.rst │ │ ├── null.rst │ │ ├── parent_children_waiter.rst │ │ ├── python.rst │ │ ├── rename_attrib.rst │ │ ├── set_attrib.rst │ │ ├── spawn_children.rst │ │ ├── split_waiter.rst │ │ ├── switch.rst │ │ ├── wait_for_task_value.rst │ │ └── wedge.rst │ └── stock │ │ ├── houdini │ │ ├── common_devices.rst │ │ ├── hip_driver_renderer.rst │ │ ├── karma.rst │ │ └── mantra.rst │ │ ├── matrixnotifier.rst │ │ ├── redshift │ │ ├── hip_rs_generator.rst │ │ └── redshift.rst │ │ └── telegram_client │ │ └── telegram_notifier.rst │ ├── overview.rst │ ├── requirements.txt │ ├── resource_control.rst │ ├── tutorials.rst │ └── usage.rst ├── entry.py ├── icon ├── lifeblood.svg ├── lifeblood_wip.svg ├── lifeblood_wip1.png └── lifeblood_wip1.svg ├── install ├── README.md ├── install.ps1 └── install.sh ├── pkg_lifeblood ├── MANIFEST.in ├── README.md ├── build_pypi.sh ├── pyproject.toml ├── setup.cfg ├── src │ └── lifeblood └── upload_pypi.sh ├── pkg_lifeblood_viewer ├── README.md ├── build_pypi.sh ├── pyproject.toml ├── setup.cfg ├── src │ └── lifeblood_viewer └── upload_pypi.sh ├── rcc ├── build.sh ├── dark.qss ├── dark │ ├── branch_closed-on.svg │ ├── branch_closed.svg │ ├── branch_open-on.svg │ ├── branch_open.svg │ ├── checkbox_checked.svg │ ├── checkbox_checked_disabled.svg │ ├── checkbox_indeterminate.svg │ ├── checkbox_indeterminate_disabled.svg │ ├── checkbox_unchecked.svg │ ├── checkbox_unchecked_disabled.svg │ ├── close-hover.svg │ ├── close-pressed.svg │ ├── close.svg │ ├── down_arrow-hover.svg │ ├── down_arrow.svg │ ├── down_arrow_disabled.svg │ ├── hmovetoolbar.svg │ ├── hsepartoolbar.svg │ ├── left_arrow.svg │ ├── left_arrow_disabled.svg │ ├── radio_checked.svg │ ├── radio_checked_disabled.svg │ ├── radio_unchecked.svg │ ├── radio_unchecked_disabled.svg │ ├── right_arrow.svg │ ├── right_arrow_disabled.svg │ ├── sizegrip.svg │ ├── stylesheet-branch-end-closed.svg │ ├── stylesheet-branch-end-open.svg │ ├── stylesheet-branch-end.svg │ ├── stylesheet-branch-more.svg │ ├── stylesheet-vline.svg │ ├── transparent.svg │ ├── undock-hover.svg │ ├── undock.svg │ ├── up_arrow-hover.svg │ ├── up_arrow.svg │ ├── up_arrow_disabled.svg │ ├── vmovetoolbar.svg │ └── vsepartoolbars.svg ├── light.qss ├── light │ ├── branch_closed-on.svg │ ├── branch_closed.svg │ ├── branch_open-on.svg │ ├── branch_open.svg │ ├── checkbox_checked-hover.svg │ ├── checkbox_checked.svg │ ├── checkbox_checked_disabled.svg │ ├── checkbox_indeterminate-hover.svg │ ├── checkbox_indeterminate.svg │ ├── checkbox_indeterminate_disabled.svg │ ├── checkbox_unchecked-hover.svg │ ├── checkbox_unchecked_disabled.svg │ ├── close-hover.svg │ ├── close-pressed.svg │ ├── close.svg │ ├── down_arrow-hover.svg │ ├── down_arrow.svg │ ├── down_arrow_disabled.svg │ ├── hmovetoolbar.svg │ ├── hsepartoolbar.svg │ ├── left_arrow.svg │ ├── left_arrow_disabled.svg │ ├── radio_checked-hover.svg │ ├── radio_checked.svg │ ├── radio_checked_disabled.svg │ ├── radio_unchecked-hover.svg │ ├── radio_unchecked_disabled.svg │ ├── right_arrow.svg │ ├── right_arrow_disabled.svg │ ├── sizegrip.svg │ ├── stylesheet-branch-end-closed.svg │ ├── stylesheet-branch-end-open.svg │ ├── stylesheet-branch-end.svg │ ├── stylesheet-branch-more.svg │ ├── stylesheet-vline.svg │ ├── transparent.svg │ ├── undock-hover.svg │ ├── undock.svg │ ├── up_arrow-hover.svg │ ├── up_arrow.svg │ ├── up_arrow_disabled.svg │ ├── vmovetoolbar.svg │ └── vsepartoolbars.svg └── theme.rcc ├── src ├── lifeblood │ ├── __init__.py │ ├── aiosqlite_overlay.py │ ├── attribute_serialization.py │ ├── base.py │ ├── basenode.py │ ├── basenode_serialization.py │ ├── basenode_serializer_v1.py │ ├── basenode_serializer_v2.py │ ├── broadcasting.py │ ├── buffer_serializable.py │ ├── buffered_connection.py │ ├── common_serialization.py │ ├── component_base.py │ ├── component_process_wrapper.py │ ├── config.py │ ├── core_nodes │ │ ├── attribute_splitter.py │ │ ├── del_attrib.py │ │ ├── environment_resolver_setter.py │ │ ├── kill.py │ │ ├── mod_attrib.py │ │ ├── null.py │ │ ├── parent_children_waiter.py │ │ ├── python.py │ │ ├── rename_attrib.py │ │ ├── set_attrib.py │ │ ├── spawn_children.py │ │ ├── split_waiter.py │ │ ├── switch.py │ │ ├── test.py │ │ ├── wait_for_task.py │ │ └── wedge.py │ ├── db_misc.py │ ├── defaults.py │ ├── enums.py │ ├── environment_resolver.py │ ├── exceptions.py │ ├── expiring_collections.py │ ├── expression_locals_provider_base.py │ ├── filelock.py │ ├── hardware_resources.py │ ├── invocationjob.py │ ├── launch.py │ ├── local_notifier.py │ ├── logging.py │ ├── main_scheduler.py │ ├── main_worker.py │ ├── main_workerpool.py │ ├── maintenance.py │ ├── matrix_helper.py │ ├── message_processor_ping_generic_handler.py │ ├── misc.py │ ├── names.py │ ├── net_messages │ │ ├── __init__.py │ │ ├── address.py │ │ ├── address_routing.py │ │ ├── client.py │ │ ├── connections.py │ │ ├── defaults.py │ │ ├── enums.py │ │ ├── exceptions.py │ │ ├── impl │ │ │ ├── __init__.py │ │ │ ├── clients.py │ │ │ ├── ip_routing.py │ │ │ ├── message_haldlers.py │ │ │ ├── message_protocol.py │ │ │ ├── tcp_message_processor.py │ │ │ ├── tcp_message_receiver.py │ │ │ ├── tcp_message_receiver_factory.py │ │ │ ├── tcp_message_stream_factory.py │ │ │ └── tcp_simple_command_message_processor.py │ │ ├── interfaces.py │ │ ├── logging.py │ │ ├── message_handler.py │ │ ├── message_processor.py │ │ ├── message_stream.py │ │ ├── messages.py │ │ ├── queue.py │ │ └── stream_wrappers.py │ ├── nethelpers.py │ ├── node_dataprovider_base.py │ ├── node_parameters.py │ ├── node_plugin_base.py │ ├── node_type_metadata.py │ ├── node_ui.py │ ├── node_ui_callback_receiver_base.py │ ├── node_visualization_classes.py │ ├── nodegraph_holder_base.py │ ├── nodethings.py │ ├── os_based_cheats.py │ ├── paths.py │ ├── plugin_info.py │ ├── pluginloader.py │ ├── process_utils.py │ ├── processingcontext.py │ ├── pulse_checker.py │ ├── rwlock.py │ ├── scheduler │ │ ├── __init__.py │ │ ├── data_access.py │ │ ├── ping_producer_base.py │ │ ├── pinger.py │ │ ├── scheduler.py │ │ ├── scheduler_component_base.py │ │ ├── scheduler_core.py │ │ ├── task_processor.py │ │ ├── ui_state_accessor.py │ │ └── worker_ping_producer.py │ ├── scheduler_config_provider_base.py │ ├── scheduler_config_provider_default.py │ ├── scheduler_config_provider_file.py │ ├── scheduler_event_log.py │ ├── scheduler_message_processor.py │ ├── scheduler_message_processor_client.py │ ├── scheduler_task_protocol.py │ ├── scheduler_ui_protocol.py │ ├── shared_lazy_sqlite_connection.py │ ├── simple_worker_pool.py │ ├── simple_worker_pool_main.py │ ├── snippets.py │ ├── stock_nodes │ │ ├── alicevision │ │ │ ├── nodes │ │ │ │ ├── camera_init.py │ │ │ │ ├── depth_map.py │ │ │ │ ├── depth_map_filter.py │ │ │ │ ├── feature_extraction.py │ │ │ │ ├── feature_matching.py │ │ │ │ ├── image_matching.py │ │ │ │ ├── mesh_filtering.py │ │ │ │ ├── meshing.py │ │ │ │ ├── prepare_dense_scene.py │ │ │ │ ├── sfmtransform.py │ │ │ │ ├── structure_from_motion.py │ │ │ │ └── texturing.py │ │ │ └── python │ │ │ │ └── 3 │ │ │ │ └── lifeblood_alicevision_modules │ │ │ │ ├── __init__.py │ │ │ │ └── base_node.py │ │ ├── blender │ │ │ ├── nodes │ │ │ │ ├── blender_batch_render.py │ │ │ │ └── blender_script.py │ │ │ └── presets │ │ │ │ └── blender_render.lbp │ │ ├── ffmpeg.py │ │ ├── file_watcher.py │ │ ├── fileop.py │ │ ├── filepattern.py │ │ ├── framerange_splitter.py │ │ ├── houdini │ │ │ ├── nodes │ │ │ │ ├── copy_temp_hip.py │ │ │ │ ├── hip_driver_renderer.py │ │ │ │ ├── hip_ifd_generator.py │ │ │ │ ├── hip_script.py │ │ │ │ ├── hip_usd_generator.py │ │ │ │ ├── husk.py │ │ │ │ ├── karma.py │ │ │ │ └── mantra.py │ │ │ ├── presets │ │ │ │ ├── karma.lbp │ │ │ │ └── mantra.lbp │ │ │ └── python │ │ │ │ └── 3 │ │ │ │ └── lifeblood_stock_houdini_helpers │ │ │ │ ├── __init__.py │ │ │ │ ├── common.py │ │ │ │ └── rop_base_node.py │ │ ├── houdini_distributed_sim │ │ │ ├── data │ │ │ │ ├── killer.py │ │ │ │ └── server.py │ │ │ ├── nodes │ │ │ │ ├── houdini_distributed_tracker_runner.py │ │ │ │ └── houdini_distributed_tracker_stopper.py │ │ │ └── presets │ │ │ │ └── distributed_slices.lbp │ │ ├── htoa │ │ │ ├── nodes │ │ │ │ ├── arnold.py │ │ │ │ └── hip_ass_generator.py │ │ │ └── presets │ │ │ │ └── htoa.lbp │ │ ├── imagemagik.py │ │ ├── matrixclient │ │ │ ├── data │ │ │ │ ├── install_matrix_commander.py │ │ │ │ └── matrixclient.pyz │ │ │ └── nodes │ │ │ │ └── matrixnotifier.py │ │ ├── redshift │ │ │ ├── meta.toml │ │ │ ├── nodes │ │ │ │ ├── hip_rs_generator.py │ │ │ │ └── redshift.py │ │ │ └── presets │ │ │ │ └── redshift.lbp │ │ ├── stock_presets │ │ │ └── presets │ │ │ │ ├── cache.lbp │ │ │ │ └── wedge.lbp │ │ ├── telegram_client │ │ │ ├── data │ │ │ │ └── telegram_client.pyz │ │ │ └── nodes │ │ │ │ └── telegram_notifier.py │ │ └── webserver │ │ │ ├── data │ │ │ ├── index.html │ │ │ ├── result_not_ready.html │ │ │ ├── result_ready.html │ │ │ ├── server.py │ │ │ └── styles.css │ │ │ └── nodes │ │ │ └── webserver.py │ ├── taskspawn.py │ ├── text.py │ ├── timestamp.py │ ├── toml_coders.py │ ├── ui_events.py │ ├── ui_events_tools.py │ ├── ui_protocol_data.py │ ├── worker.py │ ├── worker_core.py │ ├── worker_invocation_protocol.py │ ├── worker_message_processor.py │ ├── worker_message_processor_client.py │ ├── worker_metadata.py │ ├── worker_pool_message_processor.py │ ├── worker_pool_message_processor_client.py │ ├── worker_pool_protocol.py │ ├── worker_resource_definition.py │ └── worker_runtime_pythonpath │ │ ├── __init__.py │ │ └── lifeblood_connection.py ├── lifeblood_client │ ├── __init__.py │ ├── attribute_serialization.py │ ├── common_serialization.py │ ├── environment_resolver.py │ ├── nethelpers.py │ ├── query.py │ └── submitting.py ├── lifeblood_testing_common │ ├── __init__.py │ ├── common.py │ ├── integration_common.py │ ├── nodes_common.py │ └── scheduler_config_provider_default_override.py └── lifeblood_viewer │ ├── __init__.py │ ├── breeze_resources.py │ ├── code_editor │ ├── __init__.py │ └── editor.py │ ├── connection_worker.py │ ├── db_misc.py │ ├── editor_scene_integration.py │ ├── fancy_scene_item_factory.py │ ├── graphics_items │ ├── __init__.py │ ├── graphics_items.py │ ├── graphics_scene_base.py │ ├── graphics_scene_container.py │ ├── network_item.py │ ├── network_item_watchers.py │ ├── pretty_items │ │ ├── __init__.py │ │ ├── decorated_node.py │ │ ├── drawable_node.py │ │ ├── drawable_node_with_snap_points.py │ │ ├── drawable_task.py │ │ ├── fancy_items │ │ │ ├── __init__.py │ │ │ ├── implicit_split_visualizer.py │ │ │ ├── scene_node.py │ │ │ ├── scene_node_connection.py │ │ │ ├── scene_task.py │ │ │ └── scene_task_preview.py │ │ ├── node_connection_create_preview.py │ │ ├── node_connection_snap_point.py │ │ ├── node_decorator_base.py │ │ └── task_animation.py │ ├── qextended_graphics_item.py │ ├── scene_network_item.py │ └── utils.py │ ├── graphics_scene.py │ ├── graphics_scene_viewing_widget.py │ ├── graphics_scene_with_data_controller.py │ ├── icons │ └── lifeblood.svg │ ├── imgui_opengl_hotfix.py │ ├── launch.py │ ├── lifeblood_viewer.py │ ├── long_op.py │ ├── menu_entry_base.py │ ├── models │ ├── __init__.py │ └── multiple_sort_model.py │ ├── nodeeditor.py │ ├── nodeeditor_overlays │ ├── __init__.py │ ├── overlay_base.py │ └── task_history_overlay.py │ ├── nodeeditor_windows │ ├── __init__.py │ ├── ui_create_node_popup.py │ ├── ui_longop_window.py │ ├── ui_parameters_window.py │ ├── ui_task_list_window.py │ └── ui_undo_window.py │ ├── save_node_settings_dialog.py │ ├── scene_data_controller.py │ ├── scene_item_factory_base.py │ ├── scene_ops.py │ ├── task_group_action_performers │ ├── __init__.py │ ├── noop_action_performer.py │ └── submit_action_performer.py │ ├── task_group_actions.py │ ├── task_group_actions_impl │ ├── __init__.py │ ├── noop_action.py │ └── submit_action.py │ ├── ui_elements_base.py │ ├── ui_scene_elements.py │ ├── ui_snippets.py │ ├── undo_stack.py │ ├── utils.py │ └── widgets │ ├── __init__.py │ ├── dialogs │ ├── __init__.py │ ├── create_task_dialog.py │ ├── message_dialog.py │ └── value_input.py │ ├── flashy_label.py │ └── worker_list.py ├── stock_tools ├── matrix_client │ ├── __main__.py │ ├── compile.sh │ ├── install_matrix_commander.py │ ├── matrix_client │ │ ├── __init__.py │ │ ├── api.py │ │ ├── checks.py │ │ ├── client.py │ │ ├── crypto │ │ │ ├── __init__.py │ │ │ ├── olm_device.py │ │ │ └── one_time_keys.py │ │ ├── errors.py │ │ ├── room.py │ │ └── user.py │ ├── requests │ │ ├── __init__.py │ │ ├── __version__.py │ │ ├── _internal_utils.py │ │ ├── adapters.py │ │ ├── api.py │ │ ├── auth.py │ │ ├── certs.py │ │ ├── compat.py │ │ ├── cookies.py │ │ ├── exceptions.py │ │ ├── help.py │ │ ├── hooks.py │ │ ├── models.py │ │ ├── packages.py │ │ ├── sessions.py │ │ ├── status_codes.py │ │ ├── structures.py │ │ └── utils.py │ └── urllib3 │ │ ├── __init__.py │ │ ├── _collections.py │ │ ├── _version.py │ │ ├── connection.py │ │ ├── connectionpool.py │ │ ├── contrib │ │ ├── __init__.py │ │ ├── _appengine_environ.py │ │ ├── _securetransport │ │ │ ├── __init__.py │ │ │ ├── bindings.py │ │ │ └── low_level.py │ │ ├── appengine.py │ │ ├── ntlmpool.py │ │ ├── pyopenssl.py │ │ ├── securetransport.py │ │ └── socks.py │ │ ├── exceptions.py │ │ ├── fields.py │ │ ├── filepost.py │ │ ├── packages │ │ ├── __init__.py │ │ ├── backports │ │ │ ├── __init__.py │ │ │ └── makefile.py │ │ ├── six.py │ │ └── ssl_match_hostname │ │ │ ├── __init__.py │ │ │ └── _implementation.py │ │ ├── poolmanager.py │ │ ├── request.py │ │ ├── response.py │ │ └── util │ │ ├── __init__.py │ │ ├── connection.py │ │ ├── proxy.py │ │ ├── queue.py │ │ ├── request.py │ │ ├── response.py │ │ ├── retry.py │ │ ├── ssl_.py │ │ ├── ssltransport.py │ │ ├── timeout.py │ │ ├── url.py │ │ └── wait.py └── telegram_client │ ├── __main__.py │ ├── compile.sh │ └── telebot.py ├── tests ├── config_data │ └── orig │ │ ├── boofar │ │ ├── config.d │ │ │ ├── body.toml │ │ │ └── some.toml │ │ └── config.toml │ │ ├── foobar │ │ └── config.toml │ │ └── foofar │ │ └── config.toml ├── data │ ├── fake_bin │ │ ├── python │ │ └── python.exe │ ├── test_attribserialization.db │ ├── test_badndeser.db │ ├── test_errorinv.db │ ├── test_instadoneinv.db │ ├── test_invocmessaging.db │ ├── test_resources.db │ ├── test_resources1.db │ └── test_taskgroup_del.db ├── environment_resolver_data │ ├── scheduler │ │ └── config.toml │ ├── standard_environment_resolver │ │ └── config.toml │ └── worker │ │ └── config.toml ├── nodes │ ├── __init__.py │ ├── data │ │ ├── filepattern │ │ │ └── tree1 │ │ │ │ ├── dirfooken │ │ │ │ ├── bafffbro │ │ │ │ │ └── foofile │ │ │ │ ├── bagogogbr │ │ │ │ │ └── babr │ │ │ │ ├── barbr │ │ │ │ └── fefoofe │ │ │ │ ├── dirgorfool │ │ │ │ ├── akfoolen │ │ │ │ └── baqwebr │ │ │ │ │ └── foobar │ │ │ │ ├── fafoofen │ │ │ │ ├── qirfoobarken │ │ │ │ └── rabarco │ │ ├── mock_ffmpeg │ │ │ ├── ffmpeg │ │ │ └── ffprobe │ │ ├── mock_houdini │ │ │ ├── husk │ │ │ └── mantra │ │ ├── mock_redshift │ │ │ └── redshiftCmdLine │ │ ├── test_basic_stuff.db │ │ ├── test_filepattern.db │ │ ├── test_pwint.db │ │ ├── test_splitint.db │ │ └── test_waitforint.db │ ├── test_attribute_splitter.py │ ├── test_basic_features_integration.py │ ├── test_ffmpeg.py │ ├── test_filepattern.py │ ├── test_filepattern_integration.py │ ├── test_hardware_resources.py │ ├── test_hip_script.py │ ├── test_husk.py │ ├── test_mantra.py │ ├── test_parent_children_waiter.py │ ├── test_parent_children_waiter_integration.py │ ├── test_redshift.py │ ├── test_rename_attrib.py │ ├── test_spawn_children.py │ ├── test_split_waiter.py │ ├── test_split_waiter_integration.py │ ├── test_wait_for_task.py │ ├── test_wait_for_task_integration.py │ └── test_wedge.py ├── test_aiosqlite_overlay.py ├── test_alocking.py ├── test_attribute_serialization.py ├── test_attribute_serialization_integration.py ├── test_bad_node_deserialization.py ├── test_basenode.py ├── test_buffered_connection.py ├── test_component_base.py ├── test_component_process_wrapper.py ├── test_config.py ├── test_data_access.py ├── test_envisonment_resolver.py ├── test_error_invocations.py ├── test_expiring_dict.py ├── test_instafinish_tasks.py ├── test_invocation_messages_integration.py ├── test_invocationjob.py ├── test_nethelpers.py ├── test_nodeui.py ├── test_priority_raw_db_triggers.py ├── test_process_utils.py ├── test_resources_integration.py ├── test_scheduler.py ├── test_scheduler_config_provider_file.py ├── test_scheduler_event_log.py ├── test_scheduler_task_group_deletion.py ├── test_scheduler_worker_comm.py ├── test_serializationv2.py ├── test_sharedlazysqlitecon.py ├── test_snippets.py ├── test_spawn_tasks_race.py ├── test_task_blocking.py ├── test_text.py ├── test_ui_events.py ├── test_ui_events_tools.py ├── test_ui_protocol_data.py ├── test_ui_state_accessor_integration.py ├── test_worker.py ├── test_worker_pool.py ├── test_worker_restart_double_invocation_edge_case.py └── tests_net_messages │ ├── test_connection_pool.py │ ├── test_connection_pool_integration.py │ ├── test_messageprocessor_integration.py │ └── test_net_message_streams.py └── tools └── idx_editor.py /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/auto-release-tools.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/.github/workflows/auto-release-tools.yml -------------------------------------------------------------------------------- /.github/workflows/build-tools.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/.github/workflows/build-tools.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/pypi-pub.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/.github/workflows/pypi-pub.yml -------------------------------------------------------------------------------- /.github/workflows/release-notify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/.github/workflows/release-notify.yml -------------------------------------------------------------------------------- /.github/workflows/sphinx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/.github/workflows/sphinx.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/README.md -------------------------------------------------------------------------------- /dcc_plugins_workspace/blender/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/blender/README.md -------------------------------------------------------------------------------- /dcc_plugins_workspace/blender/blender_path/addons/lifeblood_plugin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/blender/blender_path/addons/lifeblood_plugin/__init__.py -------------------------------------------------------------------------------- /dcc_plugins_workspace/blender/blender_path/addons/lifeblood_plugin/lifeblood_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/blender/blender_path/addons/lifeblood_plugin/lifeblood_utils.py -------------------------------------------------------------------------------- /dcc_plugins_workspace/blender/blender_path/addons/lifeblood_plugin/lifeblood_utils_bpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/blender/blender_path/addons/lifeblood_plugin/lifeblood_utils_bpy.py -------------------------------------------------------------------------------- /dcc_plugins_workspace/blender/lifeblood_addon.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/blender/lifeblood_addon.zip -------------------------------------------------------------------------------- /dcc_plugins_workspace/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/build.sh -------------------------------------------------------------------------------- /dcc_plugins_workspace/build_blender.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/build_blender.sh -------------------------------------------------------------------------------- /dcc_plugins_workspace/build_houdini.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/build_houdini.sh -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/README.md -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_cache_submitter-1.0.hda/INDEX__SECTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_cache_submitter-1.0.hda/INDEX__SECTION -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_cache_submitter-1.0.hda/Sections.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_cache_submitter-1.0.hda/Sections.list -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_cache_submitter-1.0.hda/houdini.hdalibrary: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_cache_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__cache__submitter_8_81.0/CreateScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_cache_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__cache__submitter_8_81.0/CreateScript -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_cache_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__cache__submitter_8_81.0/DialogScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_cache_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__cache__submitter_8_81.0/DialogScript -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_cache_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__cache__submitter_8_81.0/ExtraFileOptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_cache_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__cache__submitter_8_81.0/ExtraFileOptions -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_cache_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__cache__submitter_8_81.0/Help: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_cache_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__cache__submitter_8_81.0/InternalFileOptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_cache_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__cache__submitter_8_81.0/InternalFileOptions -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_cache_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__cache__submitter_8_81.0/PythonModule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_cache_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__cache__submitter_8_81.0/PythonModule -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_cache_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__cache__submitter_8_81.0/Sections.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_cache_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__cache__submitter_8_81.0/Sections.list -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_cache_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__cache__submitter_8_81.0/Tools.shelf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_cache_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__cache__submitter_8_81.0/Tools.shelf -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_cache_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__cache__submitter_8_81.0/TypePropertiesOptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_cache_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__cache__submitter_8_81.0/TypePropertiesOptions -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_distributed_flip_submitter-1.0.hda/INDEX__SECTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_distributed_flip_submitter-1.0.hda/INDEX__SECTION -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_distributed_flip_submitter-1.0.hda/Sections.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_distributed_flip_submitter-1.0.hda/Sections.list -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_distributed_flip_submitter-1.0.hda/houdini.hdalibrary: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_distributed_flip_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__distributed__flip__submitter_8_81.0/Help: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_karma_submitter-1.0.hda/INDEX__SECTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_karma_submitter-1.0.hda/INDEX__SECTION -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_karma_submitter-1.0.hda/Sections.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_karma_submitter-1.0.hda/Sections.list -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_karma_submitter-1.0.hda/houdini.hdalibrary: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_karma_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__karma__submitter_8_81.0/CreateScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_karma_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__karma__submitter_8_81.0/CreateScript -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_karma_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__karma__submitter_8_81.0/DialogScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_karma_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__karma__submitter_8_81.0/DialogScript -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_karma_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__karma__submitter_8_81.0/ExtraFileOptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_karma_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__karma__submitter_8_81.0/ExtraFileOptions -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_karma_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__karma__submitter_8_81.0/Help: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_karma_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__karma__submitter_8_81.0/InternalFileOptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_karma_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__karma__submitter_8_81.0/InternalFileOptions -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_karma_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__karma__submitter_8_81.0/PythonModule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_karma_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__karma__submitter_8_81.0/PythonModule -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_karma_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__karma__submitter_8_81.0/Sections.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_karma_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__karma__submitter_8_81.0/Sections.list -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_karma_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__karma__submitter_8_81.0/Tools.shelf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_karma_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__karma__submitter_8_81.0/Tools.shelf -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_karma_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__karma__submitter_8_81.0/TypePropertiesOptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_karma_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__karma__submitter_8_81.0/TypePropertiesOptions -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_mantra_submitter-1.0.hda/INDEX__SECTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_mantra_submitter-1.0.hda/INDEX__SECTION -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_mantra_submitter-1.0.hda/Sections.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_mantra_submitter-1.0.hda/Sections.list -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_mantra_submitter-1.0.hda/houdini.hdalibrary: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_mantra_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__mantra__submitter_8_81.0/CreateScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_mantra_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__mantra__submitter_8_81.0/CreateScript -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_mantra_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__mantra__submitter_8_81.0/DialogScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_mantra_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__mantra__submitter_8_81.0/DialogScript -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_mantra_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__mantra__submitter_8_81.0/ExtraFileOptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_mantra_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__mantra__submitter_8_81.0/ExtraFileOptions -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_mantra_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__mantra__submitter_8_81.0/Help: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_mantra_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__mantra__submitter_8_81.0/InternalFileOptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_mantra_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__mantra__submitter_8_81.0/InternalFileOptions -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_mantra_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__mantra__submitter_8_81.0/PythonModule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_mantra_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__mantra__submitter_8_81.0/PythonModule -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_mantra_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__mantra__submitter_8_81.0/Sections.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_mantra_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__mantra__submitter_8_81.0/Sections.list -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_mantra_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__mantra__submitter_8_81.0/Tools.shelf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_mantra_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__mantra__submitter_8_81.0/Tools.shelf -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_redshift_submitter-1.0.hda/INDEX__SECTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_redshift_submitter-1.0.hda/INDEX__SECTION -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_redshift_submitter-1.0.hda/Sections.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_redshift_submitter-1.0.hda/Sections.list -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_redshift_submitter-1.0.hda/houdini.hdalibrary: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_redshift_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__redshift__submitter_8_81.0/CreateScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_redshift_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__redshift__submitter_8_81.0/CreateScript -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_redshift_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__redshift__submitter_8_81.0/DialogScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_redshift_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__redshift__submitter_8_81.0/DialogScript -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_redshift_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__redshift__submitter_8_81.0/ExtraFileOptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_redshift_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__redshift__submitter_8_81.0/ExtraFileOptions -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_redshift_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__redshift__submitter_8_81.0/Help: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_redshift_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__redshift__submitter_8_81.0/PythonModule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_redshift_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__redshift__submitter_8_81.0/PythonModule -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_redshift_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__redshift__submitter_8_81.0/Sections.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_redshift_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__redshift__submitter_8_81.0/Sections.list -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_redshift_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__redshift__submitter_8_81.0/Tools.shelf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_redshift_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__redshift__submitter_8_81.0/Tools.shelf -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_submitter-1.0.0.hda/INDEX__SECTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_submitter-1.0.0.hda/INDEX__SECTION -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_submitter-1.0.0.hda/Sections.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_submitter-1.0.0.hda/Sections.list -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_submitter-1.0.0.hda/houdini.hdalibrary: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_submitter-1.0.0.hda/lifeblood_8_8Driver_1lifeblood__submitter_8_81.0.0/Contents.dir/Contents.createtimes: -------------------------------------------------------------------------------- 1 | { 2 | "hdaroot.def":872838840 3 | } 4 | -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_submitter-1.0.0.hda/lifeblood_8_8Driver_1lifeblood__submitter_8_81.0.0/Contents.dir/Contents.mime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_submitter-1.0.0.hda/lifeblood_8_8Driver_1lifeblood__submitter_8_81.0.0/Contents.dir/Contents.mime -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_submitter-1.0.0.hda/lifeblood_8_8Driver_1lifeblood__submitter_8_81.0.0/Contents.dir/Contents.modtimes: -------------------------------------------------------------------------------- 1 | { 2 | "hdaroot.def":1650326098 3 | } 4 | -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_submitter-1.0.0.hda/lifeblood_8_8Driver_1lifeblood__submitter_8_81.0.0/Contents.dir/Sections.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_submitter-1.0.0.hda/lifeblood_8_8Driver_1lifeblood__submitter_8_81.0.0/Contents.dir/Sections.list -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_submitter-1.0.0.hda/lifeblood_8_8Driver_1lifeblood__submitter_8_81.0.0/CreateScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_submitter-1.0.0.hda/lifeblood_8_8Driver_1lifeblood__submitter_8_81.0.0/CreateScript -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_submitter-1.0.0.hda/lifeblood_8_8Driver_1lifeblood__submitter_8_81.0.0/DialogScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_submitter-1.0.0.hda/lifeblood_8_8Driver_1lifeblood__submitter_8_81.0.0/DialogScript -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_submitter-1.0.0.hda/lifeblood_8_8Driver_1lifeblood__submitter_8_81.0.0/ExtraFileOptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_submitter-1.0.0.hda/lifeblood_8_8Driver_1lifeblood__submitter_8_81.0.0/ExtraFileOptions -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_submitter-1.0.0.hda/lifeblood_8_8Driver_1lifeblood__submitter_8_81.0.0/Help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_submitter-1.0.0.hda/lifeblood_8_8Driver_1lifeblood__submitter_8_81.0.0/Help -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_submitter-1.0.0.hda/lifeblood_8_8Driver_1lifeblood__submitter_8_81.0.0/IconSVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_submitter-1.0.0.hda/lifeblood_8_8Driver_1lifeblood__submitter_8_81.0.0/IconSVG -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_submitter-1.0.0.hda/lifeblood_8_8Driver_1lifeblood__submitter_8_81.0.0/InternalFileOptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_submitter-1.0.0.hda/lifeblood_8_8Driver_1lifeblood__submitter_8_81.0.0/InternalFileOptions -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_submitter-1.0.0.hda/lifeblood_8_8Driver_1lifeblood__submitter_8_81.0.0/OnCreated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_submitter-1.0.0.hda/lifeblood_8_8Driver_1lifeblood__submitter_8_81.0.0/OnCreated -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_submitter-1.0.0.hda/lifeblood_8_8Driver_1lifeblood__submitter_8_81.0.0/PythonModule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_submitter-1.0.0.hda/lifeblood_8_8Driver_1lifeblood__submitter_8_81.0.0/PythonModule -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_submitter-1.0.0.hda/lifeblood_8_8Driver_1lifeblood__submitter_8_81.0.0/Sections.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_submitter-1.0.0.hda/lifeblood_8_8Driver_1lifeblood__submitter_8_81.0.0/Sections.list -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_submitter-1.0.0.hda/lifeblood_8_8Driver_1lifeblood__submitter_8_81.0.0/Tools.shelf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_submitter-1.0.0.hda/lifeblood_8_8Driver_1lifeblood__submitter_8_81.0.0/Tools.shelf -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_submitter-1.0.0.hda/lifeblood_8_8Driver_1lifeblood__submitter_8_81.0.0/TypePropertiesOptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_submitter-1.0.0.hda/lifeblood_8_8Driver_1lifeblood__submitter_8_81.0.0/TypePropertiesOptions -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_wedge_submitter-1.0.hda/INDEX__SECTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_wedge_submitter-1.0.hda/INDEX__SECTION -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_wedge_submitter-1.0.hda/Sections.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_wedge_submitter-1.0.hda/Sections.list -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_wedge_submitter-1.0.hda/houdini.hdalibrary: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_wedge_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__wedge__submitter_8_81.0/CreateScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_wedge_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__wedge__submitter_8_81.0/CreateScript -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_wedge_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__wedge__submitter_8_81.0/DialogScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_wedge_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__wedge__submitter_8_81.0/DialogScript -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_wedge_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__wedge__submitter_8_81.0/ExtraFileOptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_wedge_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__wedge__submitter_8_81.0/ExtraFileOptions -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_wedge_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__wedge__submitter_8_81.0/Help: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_wedge_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__wedge__submitter_8_81.0/InternalFileOptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_wedge_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__wedge__submitter_8_81.0/InternalFileOptions -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_wedge_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__wedge__submitter_8_81.0/PythonModule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_wedge_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__wedge__submitter_8_81.0/PythonModule -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_wedge_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__wedge__submitter_8_81.0/Sections.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_wedge_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__wedge__submitter_8_81.0/Sections.list -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/otls/Driver-lifeblood_wedge_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__wedge__submitter_8_81.0/Tools.shelf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/otls/Driver-lifeblood_wedge_submitter-1.0.hda/lifeblood_8_8Driver_1lifeblood__wedge__submitter_8_81.0/Tools.shelf -------------------------------------------------------------------------------- /dcc_plugins_workspace/houdini/presets/Driver/lifeblood-lifeblood_submitter-1.0.0.idx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/dcc_plugins_workspace/houdini/presets/Driver/lifeblood-lifeblood_submitter-1.0.0.idx -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/_static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/_static/css/custom.css -------------------------------------------------------------------------------- /docs/source/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/api.rst -------------------------------------------------------------------------------- /docs/source/components/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/components/index.rst -------------------------------------------------------------------------------- /docs/source/components/logging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/components/logging.rst -------------------------------------------------------------------------------- /docs/source/components/scheduler/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/components/scheduler/index.rst -------------------------------------------------------------------------------- /docs/source/components/scheduler/scheduler_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/components/scheduler/scheduler_api.rst -------------------------------------------------------------------------------- /docs/source/components/scheduler/scheduler_configs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/components/scheduler/scheduler_configs.rst -------------------------------------------------------------------------------- /docs/source/components/viewer/config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/components/viewer/config.rst -------------------------------------------------------------------------------- /docs/source/components/viewer/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/components/viewer/index.rst -------------------------------------------------------------------------------- /docs/source/components/viewer/viewer_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/components/viewer/viewer_api.rst -------------------------------------------------------------------------------- /docs/source/components/worker/environment_resolver.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/components/worker/environment_resolver.rst -------------------------------------------------------------------------------- /docs/source/components/worker/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/components/worker/index.rst -------------------------------------------------------------------------------- /docs/source/components/worker/worker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/components/worker/worker.rst -------------------------------------------------------------------------------- /docs/source/components/worker/worker_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/components/worker/worker_api.rst -------------------------------------------------------------------------------- /docs/source/concepts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/concepts.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/diagrams/messages.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/diagrams/messages.puml -------------------------------------------------------------------------------- /docs/source/expressions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/expressions.rst -------------------------------------------------------------------------------- /docs/source/images/.$overview.drawio.bkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/.$overview.drawio.bkp -------------------------------------------------------------------------------- /docs/source/images/installation/after_submission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/installation/after_submission.png -------------------------------------------------------------------------------- /docs/source/images/installation/autolisten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/installation/autolisten.png -------------------------------------------------------------------------------- /docs/source/images/installation/autostart_components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/installation/autostart_components.png -------------------------------------------------------------------------------- /docs/source/images/installation/create_task_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/installation/create_task_btn.png -------------------------------------------------------------------------------- /docs/source/images/installation/launch_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/installation/launch_tab.png -------------------------------------------------------------------------------- /docs/source/images/installation/launch_tab_launched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/installation/launch_tab_launched.png -------------------------------------------------------------------------------- /docs/source/images/installation/lbm_as_is.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/installation/lbm_as_is.png -------------------------------------------------------------------------------- /docs/source/images/installation/lbm_as_is_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/installation/lbm_as_is_empty.png -------------------------------------------------------------------------------- /docs/source/images/installation/nodes_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/installation/nodes_create.png -------------------------------------------------------------------------------- /docs/source/images/installation/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/installation/overview.png -------------------------------------------------------------------------------- /docs/source/images/installation/press_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/installation/press_download.png -------------------------------------------------------------------------------- /docs/source/images/installation/redshift_cmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/installation/redshift_cmd.png -------------------------------------------------------------------------------- /docs/source/images/installation/redshift_preset_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/installation/redshift_preset_overview.png -------------------------------------------------------------------------------- /docs/source/images/installation/redshift_submitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/installation/redshift_submitter.png -------------------------------------------------------------------------------- /docs/source/images/installation/render_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/installation/render_done.png -------------------------------------------------------------------------------- /docs/source/images/installation/render_done_clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/installation/render_done_clean.png -------------------------------------------------------------------------------- /docs/source/images/installation/savescene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/installation/savescene.png -------------------------------------------------------------------------------- /docs/source/images/installation/see_dead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/installation/see_dead.png -------------------------------------------------------------------------------- /docs/source/images/installation/start_viewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/installation/start_viewer.png -------------------------------------------------------------------------------- /docs/source/images/installation/takes_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/installation/takes_time.png -------------------------------------------------------------------------------- /docs/source/images/installation/task_group_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/installation/task_group_list.png -------------------------------------------------------------------------------- /docs/source/images/installation/tray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/installation/tray.png -------------------------------------------------------------------------------- /docs/source/images/installation/tray_autostart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/installation/tray_autostart.png -------------------------------------------------------------------------------- /docs/source/images/installation/tray_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/installation/tray_menu.png -------------------------------------------------------------------------------- /docs/source/images/installation/uncheck_python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/installation/uncheck_python.png -------------------------------------------------------------------------------- /docs/source/images/installation/viewer_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/installation/viewer_overview.png -------------------------------------------------------------------------------- /docs/source/images/installation/wizard_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/installation/wizard_button.png -------------------------------------------------------------------------------- /docs/source/images/installation/wizard_dcc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/installation/wizard_dcc.png -------------------------------------------------------------------------------- /docs/source/images/installation/wizard_gpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/installation/wizard_gpu.png -------------------------------------------------------------------------------- /docs/source/images/installation/wizard_houdini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/installation/wizard_houdini.png -------------------------------------------------------------------------------- /docs/source/images/installation/wizard_houdini_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/installation/wizard_houdini_tools.png -------------------------------------------------------------------------------- /docs/source/images/installation/wizard_intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/installation/wizard_intro.png -------------------------------------------------------------------------------- /docs/source/images/installation/wizard_redshift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/installation/wizard_redshift.png -------------------------------------------------------------------------------- /docs/source/images/installation/wizard_scratch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/installation/wizard_scratch.png -------------------------------------------------------------------------------- /docs/source/images/installation/wizard_succ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/installation/wizard_succ.png -------------------------------------------------------------------------------- /docs/source/images/installation/wizard_summ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/installation/wizard_summ.png -------------------------------------------------------------------------------- /docs/source/images/installation/workers_work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/installation/workers_work.png -------------------------------------------------------------------------------- /docs/source/images/lifeblood.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/lifeblood.svg -------------------------------------------------------------------------------- /docs/source/images/manager_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/manager_overview.png -------------------------------------------------------------------------------- /docs/source/images/overview.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/overview.drawio -------------------------------------------------------------------------------- /docs/source/images/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/overview.png -------------------------------------------------------------------------------- /docs/source/images/viewer_group_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/viewer_group_list.png -------------------------------------------------------------------------------- /docs/source/images/viewer_nodeeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/viewer_nodeeditor.png -------------------------------------------------------------------------------- /docs/source/images/viewer_nodeeditor_connecspawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/viewer_nodeeditor_connecspawn.png -------------------------------------------------------------------------------- /docs/source/images/viewer_nodeeditor_connecsplit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/viewer_nodeeditor_connecsplit.png -------------------------------------------------------------------------------- /docs/source/images/viewer_nodeeditor_newnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/viewer_nodeeditor_newnode.png -------------------------------------------------------------------------------- /docs/source/images/viewer_nodeeditor_parameters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/viewer_nodeeditor_parameters.png -------------------------------------------------------------------------------- /docs/source/images/viewer_nodeeditor_tasklist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/viewer_nodeeditor_tasklist.png -------------------------------------------------------------------------------- /docs/source/images/viewer_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/viewer_overview.png -------------------------------------------------------------------------------- /docs/source/images/viewer_overview.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/viewer_overview.xcf -------------------------------------------------------------------------------- /docs/source/images/viewer_worker_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/images/viewer_worker_list.png -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/installation.rst -------------------------------------------------------------------------------- /docs/source/installation_with_manager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/installation_with_manager.rst -------------------------------------------------------------------------------- /docs/source/invocation_comm_feature.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/invocation_comm_feature.rst -------------------------------------------------------------------------------- /docs/source/network_config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/network_config.rst -------------------------------------------------------------------------------- /docs/source/news/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/news/index.rst -------------------------------------------------------------------------------- /docs/source/news/post_01/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/news/post_01/index.rst -------------------------------------------------------------------------------- /docs/source/news/post_01/params.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/news/post_01/params.png -------------------------------------------------------------------------------- /docs/source/nodes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/nodes.rst -------------------------------------------------------------------------------- /docs/source/nodes/core/attribute_splitter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/nodes/core/attribute_splitter.rst -------------------------------------------------------------------------------- /docs/source/nodes/core/delete_attrib.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/nodes/core/delete_attrib.rst -------------------------------------------------------------------------------- /docs/source/nodes/core/environment_resolver_arguments_setter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/nodes/core/environment_resolver_arguments_setter.rst -------------------------------------------------------------------------------- /docs/source/nodes/core/killer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/nodes/core/killer.rst -------------------------------------------------------------------------------- /docs/source/nodes/core/mod_attrib.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/nodes/core/mod_attrib.rst -------------------------------------------------------------------------------- /docs/source/nodes/core/null.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/nodes/core/null.rst -------------------------------------------------------------------------------- /docs/source/nodes/core/parent_children_waiter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/nodes/core/parent_children_waiter.rst -------------------------------------------------------------------------------- /docs/source/nodes/core/python.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/nodes/core/python.rst -------------------------------------------------------------------------------- /docs/source/nodes/core/rename_attrib.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/nodes/core/rename_attrib.rst -------------------------------------------------------------------------------- /docs/source/nodes/core/set_attrib.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/nodes/core/set_attrib.rst -------------------------------------------------------------------------------- /docs/source/nodes/core/spawn_children.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/nodes/core/spawn_children.rst -------------------------------------------------------------------------------- /docs/source/nodes/core/split_waiter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/nodes/core/split_waiter.rst -------------------------------------------------------------------------------- /docs/source/nodes/core/switch.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/nodes/core/switch.rst -------------------------------------------------------------------------------- /docs/source/nodes/core/wait_for_task_value.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/nodes/core/wait_for_task_value.rst -------------------------------------------------------------------------------- /docs/source/nodes/core/wedge.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/nodes/core/wedge.rst -------------------------------------------------------------------------------- /docs/source/nodes/stock/houdini/common_devices.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/nodes/stock/houdini/common_devices.rst -------------------------------------------------------------------------------- /docs/source/nodes/stock/houdini/hip_driver_renderer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/nodes/stock/houdini/hip_driver_renderer.rst -------------------------------------------------------------------------------- /docs/source/nodes/stock/houdini/karma.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/nodes/stock/houdini/karma.rst -------------------------------------------------------------------------------- /docs/source/nodes/stock/houdini/mantra.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/nodes/stock/houdini/mantra.rst -------------------------------------------------------------------------------- /docs/source/nodes/stock/matrixnotifier.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/nodes/stock/matrixnotifier.rst -------------------------------------------------------------------------------- /docs/source/nodes/stock/redshift/hip_rs_generator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/nodes/stock/redshift/hip_rs_generator.rst -------------------------------------------------------------------------------- /docs/source/nodes/stock/redshift/redshift.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/nodes/stock/redshift/redshift.rst -------------------------------------------------------------------------------- /docs/source/nodes/stock/telegram_client/telegram_notifier.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/nodes/stock/telegram_client/telegram_notifier.rst -------------------------------------------------------------------------------- /docs/source/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/overview.rst -------------------------------------------------------------------------------- /docs/source/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/requirements.txt -------------------------------------------------------------------------------- /docs/source/resource_control.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/resource_control.rst -------------------------------------------------------------------------------- /docs/source/tutorials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/tutorials.rst -------------------------------------------------------------------------------- /docs/source/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/docs/source/usage.rst -------------------------------------------------------------------------------- /entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/entry.py -------------------------------------------------------------------------------- /icon/lifeblood.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/icon/lifeblood.svg -------------------------------------------------------------------------------- /icon/lifeblood_wip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/icon/lifeblood_wip.svg -------------------------------------------------------------------------------- /icon/lifeblood_wip1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/icon/lifeblood_wip1.png -------------------------------------------------------------------------------- /icon/lifeblood_wip1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/icon/lifeblood_wip1.svg -------------------------------------------------------------------------------- /install/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/install/README.md -------------------------------------------------------------------------------- /install/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/install/install.ps1 -------------------------------------------------------------------------------- /install/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/install/install.sh -------------------------------------------------------------------------------- /pkg_lifeblood/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/pkg_lifeblood/MANIFEST.in -------------------------------------------------------------------------------- /pkg_lifeblood/README.md: -------------------------------------------------------------------------------- 1 | ../README.md -------------------------------------------------------------------------------- /pkg_lifeblood/build_pypi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/pkg_lifeblood/build_pypi.sh -------------------------------------------------------------------------------- /pkg_lifeblood/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/pkg_lifeblood/pyproject.toml -------------------------------------------------------------------------------- /pkg_lifeblood/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/pkg_lifeblood/setup.cfg -------------------------------------------------------------------------------- /pkg_lifeblood/src/lifeblood: -------------------------------------------------------------------------------- 1 | ../../src/lifeblood -------------------------------------------------------------------------------- /pkg_lifeblood/upload_pypi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/pkg_lifeblood/upload_pypi.sh -------------------------------------------------------------------------------- /pkg_lifeblood_viewer/README.md: -------------------------------------------------------------------------------- 1 | ../README.md -------------------------------------------------------------------------------- /pkg_lifeblood_viewer/build_pypi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/pkg_lifeblood_viewer/build_pypi.sh -------------------------------------------------------------------------------- /pkg_lifeblood_viewer/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/pkg_lifeblood_viewer/pyproject.toml -------------------------------------------------------------------------------- /pkg_lifeblood_viewer/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/pkg_lifeblood_viewer/setup.cfg -------------------------------------------------------------------------------- /pkg_lifeblood_viewer/src/lifeblood_viewer: -------------------------------------------------------------------------------- 1 | ../../src/lifeblood_viewer -------------------------------------------------------------------------------- /pkg_lifeblood_viewer/upload_pypi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/pkg_lifeblood_viewer/upload_pypi.sh -------------------------------------------------------------------------------- /rcc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/build.sh -------------------------------------------------------------------------------- /rcc/dark.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/dark.qss -------------------------------------------------------------------------------- /rcc/dark/branch_closed-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/dark/branch_closed-on.svg -------------------------------------------------------------------------------- /rcc/dark/branch_closed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/dark/branch_closed.svg -------------------------------------------------------------------------------- /rcc/dark/branch_open-on.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /rcc/dark/branch_open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/dark/branch_open.svg -------------------------------------------------------------------------------- /rcc/dark/checkbox_checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/dark/checkbox_checked.svg -------------------------------------------------------------------------------- /rcc/dark/checkbox_checked_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/dark/checkbox_checked_disabled.svg -------------------------------------------------------------------------------- /rcc/dark/checkbox_indeterminate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/dark/checkbox_indeterminate.svg -------------------------------------------------------------------------------- /rcc/dark/checkbox_indeterminate_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/dark/checkbox_indeterminate_disabled.svg -------------------------------------------------------------------------------- /rcc/dark/checkbox_unchecked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/dark/checkbox_unchecked.svg -------------------------------------------------------------------------------- /rcc/dark/checkbox_unchecked_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/dark/checkbox_unchecked_disabled.svg -------------------------------------------------------------------------------- /rcc/dark/close-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/dark/close-hover.svg -------------------------------------------------------------------------------- /rcc/dark/close-pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/dark/close-pressed.svg -------------------------------------------------------------------------------- /rcc/dark/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/dark/close.svg -------------------------------------------------------------------------------- /rcc/dark/down_arrow-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/dark/down_arrow-hover.svg -------------------------------------------------------------------------------- /rcc/dark/down_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/dark/down_arrow.svg -------------------------------------------------------------------------------- /rcc/dark/down_arrow_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/dark/down_arrow_disabled.svg -------------------------------------------------------------------------------- /rcc/dark/hmovetoolbar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/dark/hmovetoolbar.svg -------------------------------------------------------------------------------- /rcc/dark/hsepartoolbar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/dark/hsepartoolbar.svg -------------------------------------------------------------------------------- /rcc/dark/left_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/dark/left_arrow.svg -------------------------------------------------------------------------------- /rcc/dark/left_arrow_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/dark/left_arrow_disabled.svg -------------------------------------------------------------------------------- /rcc/dark/radio_checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/dark/radio_checked.svg -------------------------------------------------------------------------------- /rcc/dark/radio_checked_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/dark/radio_checked_disabled.svg -------------------------------------------------------------------------------- /rcc/dark/radio_unchecked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/dark/radio_unchecked.svg -------------------------------------------------------------------------------- /rcc/dark/radio_unchecked_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/dark/radio_unchecked_disabled.svg -------------------------------------------------------------------------------- /rcc/dark/right_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/dark/right_arrow.svg -------------------------------------------------------------------------------- /rcc/dark/right_arrow_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/dark/right_arrow_disabled.svg -------------------------------------------------------------------------------- /rcc/dark/sizegrip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/dark/sizegrip.svg -------------------------------------------------------------------------------- /rcc/dark/stylesheet-branch-end-closed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/dark/stylesheet-branch-end-closed.svg -------------------------------------------------------------------------------- /rcc/dark/stylesheet-branch-end-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/dark/stylesheet-branch-end-open.svg -------------------------------------------------------------------------------- /rcc/dark/stylesheet-branch-end.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/dark/stylesheet-branch-end.svg -------------------------------------------------------------------------------- /rcc/dark/stylesheet-branch-more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/dark/stylesheet-branch-more.svg -------------------------------------------------------------------------------- /rcc/dark/stylesheet-vline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/dark/stylesheet-vline.svg -------------------------------------------------------------------------------- /rcc/dark/transparent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/dark/transparent.svg -------------------------------------------------------------------------------- /rcc/dark/undock-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/dark/undock-hover.svg -------------------------------------------------------------------------------- /rcc/dark/undock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/dark/undock.svg -------------------------------------------------------------------------------- /rcc/dark/up_arrow-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/dark/up_arrow-hover.svg -------------------------------------------------------------------------------- /rcc/dark/up_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/dark/up_arrow.svg -------------------------------------------------------------------------------- /rcc/dark/up_arrow_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/dark/up_arrow_disabled.svg -------------------------------------------------------------------------------- /rcc/dark/vmovetoolbar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/dark/vmovetoolbar.svg -------------------------------------------------------------------------------- /rcc/dark/vsepartoolbars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/dark/vsepartoolbars.svg -------------------------------------------------------------------------------- /rcc/light.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light.qss -------------------------------------------------------------------------------- /rcc/light/branch_closed-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light/branch_closed-on.svg -------------------------------------------------------------------------------- /rcc/light/branch_closed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light/branch_closed.svg -------------------------------------------------------------------------------- /rcc/light/branch_open-on.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /rcc/light/branch_open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light/branch_open.svg -------------------------------------------------------------------------------- /rcc/light/checkbox_checked-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light/checkbox_checked-hover.svg -------------------------------------------------------------------------------- /rcc/light/checkbox_checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light/checkbox_checked.svg -------------------------------------------------------------------------------- /rcc/light/checkbox_checked_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light/checkbox_checked_disabled.svg -------------------------------------------------------------------------------- /rcc/light/checkbox_indeterminate-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light/checkbox_indeterminate-hover.svg -------------------------------------------------------------------------------- /rcc/light/checkbox_indeterminate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light/checkbox_indeterminate.svg -------------------------------------------------------------------------------- /rcc/light/checkbox_indeterminate_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light/checkbox_indeterminate_disabled.svg -------------------------------------------------------------------------------- /rcc/light/checkbox_unchecked-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light/checkbox_unchecked-hover.svg -------------------------------------------------------------------------------- /rcc/light/checkbox_unchecked_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light/checkbox_unchecked_disabled.svg -------------------------------------------------------------------------------- /rcc/light/close-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light/close-hover.svg -------------------------------------------------------------------------------- /rcc/light/close-pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light/close-pressed.svg -------------------------------------------------------------------------------- /rcc/light/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light/close.svg -------------------------------------------------------------------------------- /rcc/light/down_arrow-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light/down_arrow-hover.svg -------------------------------------------------------------------------------- /rcc/light/down_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light/down_arrow.svg -------------------------------------------------------------------------------- /rcc/light/down_arrow_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light/down_arrow_disabled.svg -------------------------------------------------------------------------------- /rcc/light/hmovetoolbar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light/hmovetoolbar.svg -------------------------------------------------------------------------------- /rcc/light/hsepartoolbar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light/hsepartoolbar.svg -------------------------------------------------------------------------------- /rcc/light/left_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light/left_arrow.svg -------------------------------------------------------------------------------- /rcc/light/left_arrow_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light/left_arrow_disabled.svg -------------------------------------------------------------------------------- /rcc/light/radio_checked-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light/radio_checked-hover.svg -------------------------------------------------------------------------------- /rcc/light/radio_checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light/radio_checked.svg -------------------------------------------------------------------------------- /rcc/light/radio_checked_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light/radio_checked_disabled.svg -------------------------------------------------------------------------------- /rcc/light/radio_unchecked-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light/radio_unchecked-hover.svg -------------------------------------------------------------------------------- /rcc/light/radio_unchecked_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light/radio_unchecked_disabled.svg -------------------------------------------------------------------------------- /rcc/light/right_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light/right_arrow.svg -------------------------------------------------------------------------------- /rcc/light/right_arrow_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light/right_arrow_disabled.svg -------------------------------------------------------------------------------- /rcc/light/sizegrip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light/sizegrip.svg -------------------------------------------------------------------------------- /rcc/light/stylesheet-branch-end-closed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light/stylesheet-branch-end-closed.svg -------------------------------------------------------------------------------- /rcc/light/stylesheet-branch-end-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light/stylesheet-branch-end-open.svg -------------------------------------------------------------------------------- /rcc/light/stylesheet-branch-end.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light/stylesheet-branch-end.svg -------------------------------------------------------------------------------- /rcc/light/stylesheet-branch-more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light/stylesheet-branch-more.svg -------------------------------------------------------------------------------- /rcc/light/stylesheet-vline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light/stylesheet-vline.svg -------------------------------------------------------------------------------- /rcc/light/transparent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light/transparent.svg -------------------------------------------------------------------------------- /rcc/light/undock-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light/undock-hover.svg -------------------------------------------------------------------------------- /rcc/light/undock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light/undock.svg -------------------------------------------------------------------------------- /rcc/light/up_arrow-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light/up_arrow-hover.svg -------------------------------------------------------------------------------- /rcc/light/up_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light/up_arrow.svg -------------------------------------------------------------------------------- /rcc/light/up_arrow_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light/up_arrow_disabled.svg -------------------------------------------------------------------------------- /rcc/light/vmovetoolbar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light/vmovetoolbar.svg -------------------------------------------------------------------------------- /rcc/light/vsepartoolbars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/light/vsepartoolbars.svg -------------------------------------------------------------------------------- /rcc/theme.rcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/rcc/theme.rcc -------------------------------------------------------------------------------- /src/lifeblood/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lifeblood/aiosqlite_overlay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/aiosqlite_overlay.py -------------------------------------------------------------------------------- /src/lifeblood/attribute_serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/attribute_serialization.py -------------------------------------------------------------------------------- /src/lifeblood/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/base.py -------------------------------------------------------------------------------- /src/lifeblood/basenode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/basenode.py -------------------------------------------------------------------------------- /src/lifeblood/basenode_serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/basenode_serialization.py -------------------------------------------------------------------------------- /src/lifeblood/basenode_serializer_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/basenode_serializer_v1.py -------------------------------------------------------------------------------- /src/lifeblood/basenode_serializer_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/basenode_serializer_v2.py -------------------------------------------------------------------------------- /src/lifeblood/broadcasting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/broadcasting.py -------------------------------------------------------------------------------- /src/lifeblood/buffer_serializable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/buffer_serializable.py -------------------------------------------------------------------------------- /src/lifeblood/buffered_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/buffered_connection.py -------------------------------------------------------------------------------- /src/lifeblood/common_serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/common_serialization.py -------------------------------------------------------------------------------- /src/lifeblood/component_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/component_base.py -------------------------------------------------------------------------------- /src/lifeblood/component_process_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/component_process_wrapper.py -------------------------------------------------------------------------------- /src/lifeblood/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/config.py -------------------------------------------------------------------------------- /src/lifeblood/core_nodes/attribute_splitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/core_nodes/attribute_splitter.py -------------------------------------------------------------------------------- /src/lifeblood/core_nodes/del_attrib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/core_nodes/del_attrib.py -------------------------------------------------------------------------------- /src/lifeblood/core_nodes/environment_resolver_setter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/core_nodes/environment_resolver_setter.py -------------------------------------------------------------------------------- /src/lifeblood/core_nodes/kill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/core_nodes/kill.py -------------------------------------------------------------------------------- /src/lifeblood/core_nodes/mod_attrib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/core_nodes/mod_attrib.py -------------------------------------------------------------------------------- /src/lifeblood/core_nodes/null.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/core_nodes/null.py -------------------------------------------------------------------------------- /src/lifeblood/core_nodes/parent_children_waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/core_nodes/parent_children_waiter.py -------------------------------------------------------------------------------- /src/lifeblood/core_nodes/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/core_nodes/python.py -------------------------------------------------------------------------------- /src/lifeblood/core_nodes/rename_attrib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/core_nodes/rename_attrib.py -------------------------------------------------------------------------------- /src/lifeblood/core_nodes/set_attrib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/core_nodes/set_attrib.py -------------------------------------------------------------------------------- /src/lifeblood/core_nodes/spawn_children.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/core_nodes/spawn_children.py -------------------------------------------------------------------------------- /src/lifeblood/core_nodes/split_waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/core_nodes/split_waiter.py -------------------------------------------------------------------------------- /src/lifeblood/core_nodes/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/core_nodes/switch.py -------------------------------------------------------------------------------- /src/lifeblood/core_nodes/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/core_nodes/test.py -------------------------------------------------------------------------------- /src/lifeblood/core_nodes/wait_for_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/core_nodes/wait_for_task.py -------------------------------------------------------------------------------- /src/lifeblood/core_nodes/wedge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/core_nodes/wedge.py -------------------------------------------------------------------------------- /src/lifeblood/db_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/db_misc.py -------------------------------------------------------------------------------- /src/lifeblood/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/defaults.py -------------------------------------------------------------------------------- /src/lifeblood/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/enums.py -------------------------------------------------------------------------------- /src/lifeblood/environment_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/environment_resolver.py -------------------------------------------------------------------------------- /src/lifeblood/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/exceptions.py -------------------------------------------------------------------------------- /src/lifeblood/expiring_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/expiring_collections.py -------------------------------------------------------------------------------- /src/lifeblood/expression_locals_provider_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/expression_locals_provider_base.py -------------------------------------------------------------------------------- /src/lifeblood/filelock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/filelock.py -------------------------------------------------------------------------------- /src/lifeblood/hardware_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/hardware_resources.py -------------------------------------------------------------------------------- /src/lifeblood/invocationjob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/invocationjob.py -------------------------------------------------------------------------------- /src/lifeblood/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/launch.py -------------------------------------------------------------------------------- /src/lifeblood/local_notifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/local_notifier.py -------------------------------------------------------------------------------- /src/lifeblood/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/logging.py -------------------------------------------------------------------------------- /src/lifeblood/main_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/main_scheduler.py -------------------------------------------------------------------------------- /src/lifeblood/main_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/main_worker.py -------------------------------------------------------------------------------- /src/lifeblood/main_workerpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/main_workerpool.py -------------------------------------------------------------------------------- /src/lifeblood/maintenance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/maintenance.py -------------------------------------------------------------------------------- /src/lifeblood/matrix_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/matrix_helper.py -------------------------------------------------------------------------------- /src/lifeblood/message_processor_ping_generic_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/message_processor_ping_generic_handler.py -------------------------------------------------------------------------------- /src/lifeblood/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/misc.py -------------------------------------------------------------------------------- /src/lifeblood/names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/names.py -------------------------------------------------------------------------------- /src/lifeblood/net_messages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lifeblood/net_messages/address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/net_messages/address.py -------------------------------------------------------------------------------- /src/lifeblood/net_messages/address_routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/net_messages/address_routing.py -------------------------------------------------------------------------------- /src/lifeblood/net_messages/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/net_messages/client.py -------------------------------------------------------------------------------- /src/lifeblood/net_messages/connections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/net_messages/connections.py -------------------------------------------------------------------------------- /src/lifeblood/net_messages/defaults.py: -------------------------------------------------------------------------------- 1 | 2 | default_stream_timeout: float = 90 # TODO: ENSURE RO 3 | -------------------------------------------------------------------------------- /src/lifeblood/net_messages/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/net_messages/enums.py -------------------------------------------------------------------------------- /src/lifeblood/net_messages/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/net_messages/exceptions.py -------------------------------------------------------------------------------- /src/lifeblood/net_messages/impl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lifeblood/net_messages/impl/clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/net_messages/impl/clients.py -------------------------------------------------------------------------------- /src/lifeblood/net_messages/impl/ip_routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/net_messages/impl/ip_routing.py -------------------------------------------------------------------------------- /src/lifeblood/net_messages/impl/message_haldlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/net_messages/impl/message_haldlers.py -------------------------------------------------------------------------------- /src/lifeblood/net_messages/impl/message_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/net_messages/impl/message_protocol.py -------------------------------------------------------------------------------- /src/lifeblood/net_messages/impl/tcp_message_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/net_messages/impl/tcp_message_processor.py -------------------------------------------------------------------------------- /src/lifeblood/net_messages/impl/tcp_message_receiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/net_messages/impl/tcp_message_receiver.py -------------------------------------------------------------------------------- /src/lifeblood/net_messages/impl/tcp_message_receiver_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/net_messages/impl/tcp_message_receiver_factory.py -------------------------------------------------------------------------------- /src/lifeblood/net_messages/impl/tcp_message_stream_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/net_messages/impl/tcp_message_stream_factory.py -------------------------------------------------------------------------------- /src/lifeblood/net_messages/impl/tcp_simple_command_message_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/net_messages/impl/tcp_simple_command_message_processor.py -------------------------------------------------------------------------------- /src/lifeblood/net_messages/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/net_messages/interfaces.py -------------------------------------------------------------------------------- /src/lifeblood/net_messages/logging.py: -------------------------------------------------------------------------------- 1 | from ..logging import get_logger -------------------------------------------------------------------------------- /src/lifeblood/net_messages/message_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/net_messages/message_handler.py -------------------------------------------------------------------------------- /src/lifeblood/net_messages/message_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/net_messages/message_processor.py -------------------------------------------------------------------------------- /src/lifeblood/net_messages/message_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/net_messages/message_stream.py -------------------------------------------------------------------------------- /src/lifeblood/net_messages/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/net_messages/messages.py -------------------------------------------------------------------------------- /src/lifeblood/net_messages/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/net_messages/queue.py -------------------------------------------------------------------------------- /src/lifeblood/net_messages/stream_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/net_messages/stream_wrappers.py -------------------------------------------------------------------------------- /src/lifeblood/nethelpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/nethelpers.py -------------------------------------------------------------------------------- /src/lifeblood/node_dataprovider_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/node_dataprovider_base.py -------------------------------------------------------------------------------- /src/lifeblood/node_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/node_parameters.py -------------------------------------------------------------------------------- /src/lifeblood/node_plugin_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/node_plugin_base.py -------------------------------------------------------------------------------- /src/lifeblood/node_type_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/node_type_metadata.py -------------------------------------------------------------------------------- /src/lifeblood/node_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/node_ui.py -------------------------------------------------------------------------------- /src/lifeblood/node_ui_callback_receiver_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/node_ui_callback_receiver_base.py -------------------------------------------------------------------------------- /src/lifeblood/node_visualization_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/node_visualization_classes.py -------------------------------------------------------------------------------- /src/lifeblood/nodegraph_holder_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/nodegraph_holder_base.py -------------------------------------------------------------------------------- /src/lifeblood/nodethings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/nodethings.py -------------------------------------------------------------------------------- /src/lifeblood/os_based_cheats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/os_based_cheats.py -------------------------------------------------------------------------------- /src/lifeblood/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/paths.py -------------------------------------------------------------------------------- /src/lifeblood/plugin_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/plugin_info.py -------------------------------------------------------------------------------- /src/lifeblood/pluginloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/pluginloader.py -------------------------------------------------------------------------------- /src/lifeblood/process_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/process_utils.py -------------------------------------------------------------------------------- /src/lifeblood/processingcontext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/processingcontext.py -------------------------------------------------------------------------------- /src/lifeblood/pulse_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/pulse_checker.py -------------------------------------------------------------------------------- /src/lifeblood/rwlock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/rwlock.py -------------------------------------------------------------------------------- /src/lifeblood/scheduler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lifeblood/scheduler/data_access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/scheduler/data_access.py -------------------------------------------------------------------------------- /src/lifeblood/scheduler/ping_producer_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/scheduler/ping_producer_base.py -------------------------------------------------------------------------------- /src/lifeblood/scheduler/pinger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/scheduler/pinger.py -------------------------------------------------------------------------------- /src/lifeblood/scheduler/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/scheduler/scheduler.py -------------------------------------------------------------------------------- /src/lifeblood/scheduler/scheduler_component_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/scheduler/scheduler_component_base.py -------------------------------------------------------------------------------- /src/lifeblood/scheduler/scheduler_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/scheduler/scheduler_core.py -------------------------------------------------------------------------------- /src/lifeblood/scheduler/task_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/scheduler/task_processor.py -------------------------------------------------------------------------------- /src/lifeblood/scheduler/ui_state_accessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/scheduler/ui_state_accessor.py -------------------------------------------------------------------------------- /src/lifeblood/scheduler/worker_ping_producer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/scheduler/worker_ping_producer.py -------------------------------------------------------------------------------- /src/lifeblood/scheduler_config_provider_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/scheduler_config_provider_base.py -------------------------------------------------------------------------------- /src/lifeblood/scheduler_config_provider_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/scheduler_config_provider_default.py -------------------------------------------------------------------------------- /src/lifeblood/scheduler_config_provider_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/scheduler_config_provider_file.py -------------------------------------------------------------------------------- /src/lifeblood/scheduler_event_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/scheduler_event_log.py -------------------------------------------------------------------------------- /src/lifeblood/scheduler_message_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/scheduler_message_processor.py -------------------------------------------------------------------------------- /src/lifeblood/scheduler_message_processor_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/scheduler_message_processor_client.py -------------------------------------------------------------------------------- /src/lifeblood/scheduler_task_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/scheduler_task_protocol.py -------------------------------------------------------------------------------- /src/lifeblood/scheduler_ui_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/scheduler_ui_protocol.py -------------------------------------------------------------------------------- /src/lifeblood/shared_lazy_sqlite_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/shared_lazy_sqlite_connection.py -------------------------------------------------------------------------------- /src/lifeblood/simple_worker_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/simple_worker_pool.py -------------------------------------------------------------------------------- /src/lifeblood/simple_worker_pool_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/simple_worker_pool_main.py -------------------------------------------------------------------------------- /src/lifeblood/snippets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/snippets.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/alicevision/nodes/camera_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/alicevision/nodes/camera_init.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/alicevision/nodes/depth_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/alicevision/nodes/depth_map.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/alicevision/nodes/depth_map_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/alicevision/nodes/depth_map_filter.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/alicevision/nodes/feature_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/alicevision/nodes/feature_extraction.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/alicevision/nodes/feature_matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/alicevision/nodes/feature_matching.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/alicevision/nodes/image_matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/alicevision/nodes/image_matching.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/alicevision/nodes/mesh_filtering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/alicevision/nodes/mesh_filtering.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/alicevision/nodes/meshing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/alicevision/nodes/meshing.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/alicevision/nodes/prepare_dense_scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/alicevision/nodes/prepare_dense_scene.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/alicevision/nodes/sfmtransform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/alicevision/nodes/sfmtransform.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/alicevision/nodes/structure_from_motion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/alicevision/nodes/structure_from_motion.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/alicevision/nodes/texturing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/alicevision/nodes/texturing.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/alicevision/python/3/lifeblood_alicevision_modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/alicevision/python/3/lifeblood_alicevision_modules/base_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/alicevision/python/3/lifeblood_alicevision_modules/base_node.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/blender/nodes/blender_batch_render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/blender/nodes/blender_batch_render.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/blender/nodes/blender_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/blender/nodes/blender_script.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/blender/presets/blender_render.lbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/blender/presets/blender_render.lbp -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/ffmpeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/ffmpeg.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/file_watcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/file_watcher.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/fileop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/fileop.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/filepattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/filepattern.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/framerange_splitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/framerange_splitter.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/houdini/nodes/copy_temp_hip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/houdini/nodes/copy_temp_hip.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/houdini/nodes/hip_driver_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/houdini/nodes/hip_driver_renderer.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/houdini/nodes/hip_ifd_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/houdini/nodes/hip_ifd_generator.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/houdini/nodes/hip_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/houdini/nodes/hip_script.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/houdini/nodes/hip_usd_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/houdini/nodes/hip_usd_generator.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/houdini/nodes/husk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/houdini/nodes/husk.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/houdini/nodes/karma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/houdini/nodes/karma.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/houdini/nodes/mantra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/houdini/nodes/mantra.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/houdini/presets/karma.lbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/houdini/presets/karma.lbp -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/houdini/presets/mantra.lbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/houdini/presets/mantra.lbp -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/houdini/python/3/lifeblood_stock_houdini_helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/houdini/python/3/lifeblood_stock_houdini_helpers/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/houdini/python/3/lifeblood_stock_houdini_helpers/common.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/houdini/python/3/lifeblood_stock_houdini_helpers/rop_base_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/houdini/python/3/lifeblood_stock_houdini_helpers/rop_base_node.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/houdini_distributed_sim/data/killer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/houdini_distributed_sim/data/killer.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/houdini_distributed_sim/data/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/houdini_distributed_sim/data/server.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/houdini_distributed_sim/nodes/houdini_distributed_tracker_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/houdini_distributed_sim/nodes/houdini_distributed_tracker_runner.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/houdini_distributed_sim/nodes/houdini_distributed_tracker_stopper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/houdini_distributed_sim/nodes/houdini_distributed_tracker_stopper.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/houdini_distributed_sim/presets/distributed_slices.lbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/houdini_distributed_sim/presets/distributed_slices.lbp -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/htoa/nodes/arnold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/htoa/nodes/arnold.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/htoa/nodes/hip_ass_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/htoa/nodes/hip_ass_generator.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/htoa/presets/htoa.lbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/htoa/presets/htoa.lbp -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/imagemagik.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/imagemagik.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/matrixclient/data/install_matrix_commander.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/matrixclient/data/install_matrix_commander.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/matrixclient/data/matrixclient.pyz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/matrixclient/data/matrixclient.pyz -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/matrixclient/nodes/matrixnotifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/matrixclient/nodes/matrixnotifier.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/redshift/meta.toml: -------------------------------------------------------------------------------- 1 | dependencies = [ 2 | "houdini", 3 | ] 4 | -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/redshift/nodes/hip_rs_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/redshift/nodes/hip_rs_generator.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/redshift/nodes/redshift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/redshift/nodes/redshift.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/redshift/presets/redshift.lbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/redshift/presets/redshift.lbp -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/stock_presets/presets/cache.lbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/stock_presets/presets/cache.lbp -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/stock_presets/presets/wedge.lbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/stock_presets/presets/wedge.lbp -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/telegram_client/data/telegram_client.pyz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/telegram_client/data/telegram_client.pyz -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/telegram_client/nodes/telegram_notifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/telegram_client/nodes/telegram_notifier.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/webserver/data/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/webserver/data/index.html -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/webserver/data/result_not_ready.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/webserver/data/result_not_ready.html -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/webserver/data/result_ready.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/webserver/data/result_ready.html -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/webserver/data/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/webserver/data/server.py -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/webserver/data/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/webserver/data/styles.css -------------------------------------------------------------------------------- /src/lifeblood/stock_nodes/webserver/nodes/webserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/stock_nodes/webserver/nodes/webserver.py -------------------------------------------------------------------------------- /src/lifeblood/taskspawn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/taskspawn.py -------------------------------------------------------------------------------- /src/lifeblood/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/text.py -------------------------------------------------------------------------------- /src/lifeblood/timestamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/timestamp.py -------------------------------------------------------------------------------- /src/lifeblood/toml_coders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/toml_coders.py -------------------------------------------------------------------------------- /src/lifeblood/ui_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/ui_events.py -------------------------------------------------------------------------------- /src/lifeblood/ui_events_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/ui_events_tools.py -------------------------------------------------------------------------------- /src/lifeblood/ui_protocol_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/ui_protocol_data.py -------------------------------------------------------------------------------- /src/lifeblood/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/worker.py -------------------------------------------------------------------------------- /src/lifeblood/worker_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/worker_core.py -------------------------------------------------------------------------------- /src/lifeblood/worker_invocation_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/worker_invocation_protocol.py -------------------------------------------------------------------------------- /src/lifeblood/worker_message_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/worker_message_processor.py -------------------------------------------------------------------------------- /src/lifeblood/worker_message_processor_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/worker_message_processor_client.py -------------------------------------------------------------------------------- /src/lifeblood/worker_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/worker_metadata.py -------------------------------------------------------------------------------- /src/lifeblood/worker_pool_message_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/worker_pool_message_processor.py -------------------------------------------------------------------------------- /src/lifeblood/worker_pool_message_processor_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/worker_pool_message_processor_client.py -------------------------------------------------------------------------------- /src/lifeblood/worker_pool_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/worker_pool_protocol.py -------------------------------------------------------------------------------- /src/lifeblood/worker_resource_definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/worker_resource_definition.py -------------------------------------------------------------------------------- /src/lifeblood/worker_runtime_pythonpath/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lifeblood/worker_runtime_pythonpath/lifeblood_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood/worker_runtime_pythonpath/lifeblood_connection.py -------------------------------------------------------------------------------- /src/lifeblood_client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_client/__init__.py -------------------------------------------------------------------------------- /src/lifeblood_client/attribute_serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_client/attribute_serialization.py -------------------------------------------------------------------------------- /src/lifeblood_client/common_serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_client/common_serialization.py -------------------------------------------------------------------------------- /src/lifeblood_client/environment_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_client/environment_resolver.py -------------------------------------------------------------------------------- /src/lifeblood_client/nethelpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_client/nethelpers.py -------------------------------------------------------------------------------- /src/lifeblood_client/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_client/query.py -------------------------------------------------------------------------------- /src/lifeblood_client/submitting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_client/submitting.py -------------------------------------------------------------------------------- /src/lifeblood_testing_common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lifeblood_testing_common/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_testing_common/common.py -------------------------------------------------------------------------------- /src/lifeblood_testing_common/integration_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_testing_common/integration_common.py -------------------------------------------------------------------------------- /src/lifeblood_testing_common/nodes_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_testing_common/nodes_common.py -------------------------------------------------------------------------------- /src/lifeblood_testing_common/scheduler_config_provider_default_override.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_testing_common/scheduler_config_provider_default_override.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/__init__.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/breeze_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/breeze_resources.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/code_editor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lifeblood_viewer/code_editor/editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/code_editor/editor.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/connection_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/connection_worker.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/db_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/db_misc.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/editor_scene_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/editor_scene_integration.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/fancy_scene_item_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/fancy_scene_item_factory.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/graphics_items/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/graphics_items/__init__.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/graphics_items/graphics_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/graphics_items/graphics_items.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/graphics_items/graphics_scene_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/graphics_items/graphics_scene_base.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/graphics_items/graphics_scene_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/graphics_items/graphics_scene_container.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/graphics_items/network_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/graphics_items/network_item.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/graphics_items/network_item_watchers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/graphics_items/network_item_watchers.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/graphics_items/pretty_items/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lifeblood_viewer/graphics_items/pretty_items/decorated_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/graphics_items/pretty_items/decorated_node.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/graphics_items/pretty_items/drawable_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/graphics_items/pretty_items/drawable_node.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/graphics_items/pretty_items/drawable_node_with_snap_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/graphics_items/pretty_items/drawable_node_with_snap_points.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/graphics_items/pretty_items/drawable_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/graphics_items/pretty_items/drawable_task.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/graphics_items/pretty_items/fancy_items/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lifeblood_viewer/graphics_items/pretty_items/fancy_items/implicit_split_visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/graphics_items/pretty_items/fancy_items/implicit_split_visualizer.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/graphics_items/pretty_items/fancy_items/scene_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/graphics_items/pretty_items/fancy_items/scene_node.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/graphics_items/pretty_items/fancy_items/scene_node_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/graphics_items/pretty_items/fancy_items/scene_node_connection.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/graphics_items/pretty_items/fancy_items/scene_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/graphics_items/pretty_items/fancy_items/scene_task.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/graphics_items/pretty_items/fancy_items/scene_task_preview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/graphics_items/pretty_items/fancy_items/scene_task_preview.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/graphics_items/pretty_items/node_connection_create_preview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/graphics_items/pretty_items/node_connection_create_preview.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/graphics_items/pretty_items/node_connection_snap_point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/graphics_items/pretty_items/node_connection_snap_point.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/graphics_items/pretty_items/node_decorator_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/graphics_items/pretty_items/node_decorator_base.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/graphics_items/pretty_items/task_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/graphics_items/pretty_items/task_animation.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/graphics_items/qextended_graphics_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/graphics_items/qextended_graphics_item.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/graphics_items/scene_network_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/graphics_items/scene_network_item.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/graphics_items/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/graphics_items/utils.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/graphics_scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/graphics_scene.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/graphics_scene_viewing_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/graphics_scene_viewing_widget.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/graphics_scene_with_data_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/graphics_scene_with_data_controller.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/icons/lifeblood.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/icons/lifeblood.svg -------------------------------------------------------------------------------- /src/lifeblood_viewer/imgui_opengl_hotfix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/imgui_opengl_hotfix.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/launch.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/lifeblood_viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/lifeblood_viewer.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/long_op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/long_op.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/menu_entry_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/menu_entry_base.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lifeblood_viewer/models/multiple_sort_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/models/multiple_sort_model.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/nodeeditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/nodeeditor.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/nodeeditor_overlays/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lifeblood_viewer/nodeeditor_overlays/overlay_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/nodeeditor_overlays/overlay_base.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/nodeeditor_overlays/task_history_overlay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/nodeeditor_overlays/task_history_overlay.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/nodeeditor_windows/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lifeblood_viewer/nodeeditor_windows/ui_create_node_popup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/nodeeditor_windows/ui_create_node_popup.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/nodeeditor_windows/ui_longop_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/nodeeditor_windows/ui_longop_window.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/nodeeditor_windows/ui_parameters_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/nodeeditor_windows/ui_parameters_window.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/nodeeditor_windows/ui_task_list_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/nodeeditor_windows/ui_task_list_window.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/nodeeditor_windows/ui_undo_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/nodeeditor_windows/ui_undo_window.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/save_node_settings_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/save_node_settings_dialog.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/scene_data_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/scene_data_controller.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/scene_item_factory_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/scene_item_factory_base.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/scene_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/scene_ops.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/task_group_action_performers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lifeblood_viewer/task_group_action_performers/noop_action_performer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/task_group_action_performers/noop_action_performer.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/task_group_action_performers/submit_action_performer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/task_group_action_performers/submit_action_performer.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/task_group_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/task_group_actions.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/task_group_actions_impl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lifeblood_viewer/task_group_actions_impl/noop_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/task_group_actions_impl/noop_action.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/task_group_actions_impl/submit_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/task_group_actions_impl/submit_action.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/ui_elements_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/ui_elements_base.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/ui_scene_elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/ui_scene_elements.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/ui_snippets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/ui_snippets.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/undo_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/undo_stack.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/utils.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/widgets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lifeblood_viewer/widgets/dialogs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lifeblood_viewer/widgets/dialogs/create_task_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/widgets/dialogs/create_task_dialog.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/widgets/dialogs/message_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/widgets/dialogs/message_dialog.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/widgets/dialogs/value_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/widgets/dialogs/value_input.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/widgets/flashy_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/widgets/flashy_label.py -------------------------------------------------------------------------------- /src/lifeblood_viewer/widgets/worker_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/src/lifeblood_viewer/widgets/worker_list.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/__main__.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/compile.sh -------------------------------------------------------------------------------- /stock_tools/matrix_client/install_matrix_commander.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/install_matrix_commander.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/matrix_client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/matrix_client/__init__.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/matrix_client/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/matrix_client/api.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/matrix_client/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/matrix_client/checks.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/matrix_client/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/matrix_client/client.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/matrix_client/crypto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stock_tools/matrix_client/matrix_client/crypto/olm_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/matrix_client/crypto/olm_device.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/matrix_client/crypto/one_time_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/matrix_client/crypto/one_time_keys.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/matrix_client/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/matrix_client/errors.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/matrix_client/room.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/matrix_client/room.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/matrix_client/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/matrix_client/user.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/requests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/requests/__init__.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/requests/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/requests/__version__.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/requests/_internal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/requests/_internal_utils.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/requests/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/requests/adapters.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/requests/api.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/requests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/requests/auth.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/requests/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/requests/certs.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/requests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/requests/compat.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/requests/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/requests/cookies.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/requests/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/requests/exceptions.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/requests/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/requests/help.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/requests/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/requests/hooks.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/requests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/requests/models.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/requests/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/requests/packages.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/requests/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/requests/sessions.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/requests/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/requests/status_codes.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/requests/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/requests/structures.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/requests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/requests/utils.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/urllib3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/urllib3/__init__.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/urllib3/_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/urllib3/_collections.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.26.7" 3 | -------------------------------------------------------------------------------- /stock_tools/matrix_client/urllib3/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/urllib3/connection.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/urllib3/connectionpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/urllib3/connectionpool.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stock_tools/matrix_client/urllib3/contrib/_appengine_environ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/urllib3/contrib/_appengine_environ.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stock_tools/matrix_client/urllib3/contrib/_securetransport/bindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/urllib3/contrib/_securetransport/bindings.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/urllib3/contrib/_securetransport/low_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/urllib3/contrib/_securetransport/low_level.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/urllib3/contrib/appengine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/urllib3/contrib/appengine.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/urllib3/contrib/ntlmpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/urllib3/contrib/ntlmpool.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/urllib3/contrib/pyopenssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/urllib3/contrib/pyopenssl.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/urllib3/contrib/securetransport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/urllib3/contrib/securetransport.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/urllib3/contrib/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/urllib3/contrib/socks.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/urllib3/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/urllib3/exceptions.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/urllib3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/urllib3/fields.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/urllib3/filepost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/urllib3/filepost.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/urllib3/packages/__init__.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stock_tools/matrix_client/urllib3/packages/backports/makefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/urllib3/packages/backports/makefile.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/urllib3/packages/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/urllib3/packages/six.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/urllib3/packages/ssl_match_hostname/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/urllib3/packages/ssl_match_hostname/__init__.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/urllib3/packages/ssl_match_hostname/_implementation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/urllib3/packages/ssl_match_hostname/_implementation.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/urllib3/poolmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/urllib3/poolmanager.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/urllib3/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/urllib3/request.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/urllib3/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/urllib3/response.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/urllib3/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/urllib3/util/__init__.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/urllib3/util/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/urllib3/util/connection.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/urllib3/util/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/urllib3/util/proxy.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/urllib3/util/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/urllib3/util/queue.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/urllib3/util/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/urllib3/util/request.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/urllib3/util/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/urllib3/util/response.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/urllib3/util/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/urllib3/util/retry.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/urllib3/util/ssl_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/urllib3/util/ssl_.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/urllib3/util/ssltransport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/urllib3/util/ssltransport.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/urllib3/util/timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/urllib3/util/timeout.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/urllib3/util/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/urllib3/util/url.py -------------------------------------------------------------------------------- /stock_tools/matrix_client/urllib3/util/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/matrix_client/urllib3/util/wait.py -------------------------------------------------------------------------------- /stock_tools/telegram_client/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/telegram_client/__main__.py -------------------------------------------------------------------------------- /stock_tools/telegram_client/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/telegram_client/compile.sh -------------------------------------------------------------------------------- /stock_tools/telegram_client/telebot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/stock_tools/telegram_client/telebot.py -------------------------------------------------------------------------------- /tests/config_data/orig/boofar/config.d/body.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/config_data/orig/boofar/config.d/body.toml -------------------------------------------------------------------------------- /tests/config_data/orig/boofar/config.d/some.toml: -------------------------------------------------------------------------------- 1 | [main] 2 | one = 13.44 3 | 4 | [some] 5 | wow="cat" -------------------------------------------------------------------------------- /tests/config_data/orig/boofar/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/config_data/orig/boofar/config.toml -------------------------------------------------------------------------------- /tests/config_data/orig/foobar/config.toml: -------------------------------------------------------------------------------- 1 | [crap] 2 | ass="woof" 3 | bob=12.3 -------------------------------------------------------------------------------- /tests/config_data/orig/foofar/config.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/fake_bin/python: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/fake_bin/python.exe: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/test_attribserialization.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/data/test_attribserialization.db -------------------------------------------------------------------------------- /tests/data/test_badndeser.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/data/test_badndeser.db -------------------------------------------------------------------------------- /tests/data/test_errorinv.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/data/test_errorinv.db -------------------------------------------------------------------------------- /tests/data/test_instadoneinv.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/data/test_instadoneinv.db -------------------------------------------------------------------------------- /tests/data/test_invocmessaging.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/data/test_invocmessaging.db -------------------------------------------------------------------------------- /tests/data/test_resources.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/data/test_resources.db -------------------------------------------------------------------------------- /tests/data/test_resources1.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/data/test_resources1.db -------------------------------------------------------------------------------- /tests/data/test_taskgroup_del.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/data/test_taskgroup_del.db -------------------------------------------------------------------------------- /tests/environment_resolver_data/scheduler/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/environment_resolver_data/scheduler/config.toml -------------------------------------------------------------------------------- /tests/environment_resolver_data/standard_environment_resolver/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/environment_resolver_data/standard_environment_resolver/config.toml -------------------------------------------------------------------------------- /tests/environment_resolver_data/worker/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/environment_resolver_data/worker/config.toml -------------------------------------------------------------------------------- /tests/nodes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/nodes/data/filepattern/tree1/dirfooken/bafffbro/foofile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/nodes/data/filepattern/tree1/dirfooken/bagogogbr/babr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/nodes/data/filepattern/tree1/dirfooken/barbr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/nodes/data/filepattern/tree1/dirfooken/fefoofe: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/nodes/data/filepattern/tree1/dirgorfool/akfoolen: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/nodes/data/filepattern/tree1/dirgorfool/baqwebr/foobar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/nodes/data/filepattern/tree1/fafoofen: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/nodes/data/filepattern/tree1/qirfoobarken: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/nodes/data/filepattern/tree1/rabarco: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/nodes/data/mock_ffmpeg/ffmpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/nodes/data/mock_ffmpeg/ffmpeg -------------------------------------------------------------------------------- /tests/nodes/data/mock_ffmpeg/ffprobe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/nodes/data/mock_ffmpeg/ffprobe -------------------------------------------------------------------------------- /tests/nodes/data/mock_houdini/husk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/nodes/data/mock_houdini/husk -------------------------------------------------------------------------------- /tests/nodes/data/mock_houdini/mantra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/nodes/data/mock_houdini/mantra -------------------------------------------------------------------------------- /tests/nodes/data/mock_redshift/redshiftCmdLine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/nodes/data/mock_redshift/redshiftCmdLine -------------------------------------------------------------------------------- /tests/nodes/data/test_basic_stuff.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/nodes/data/test_basic_stuff.db -------------------------------------------------------------------------------- /tests/nodes/data/test_filepattern.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/nodes/data/test_filepattern.db -------------------------------------------------------------------------------- /tests/nodes/data/test_pwint.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/nodes/data/test_pwint.db -------------------------------------------------------------------------------- /tests/nodes/data/test_splitint.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/nodes/data/test_splitint.db -------------------------------------------------------------------------------- /tests/nodes/data/test_waitforint.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/nodes/data/test_waitforint.db -------------------------------------------------------------------------------- /tests/nodes/test_attribute_splitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/nodes/test_attribute_splitter.py -------------------------------------------------------------------------------- /tests/nodes/test_basic_features_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/nodes/test_basic_features_integration.py -------------------------------------------------------------------------------- /tests/nodes/test_ffmpeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/nodes/test_ffmpeg.py -------------------------------------------------------------------------------- /tests/nodes/test_filepattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/nodes/test_filepattern.py -------------------------------------------------------------------------------- /tests/nodes/test_filepattern_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/nodes/test_filepattern_integration.py -------------------------------------------------------------------------------- /tests/nodes/test_hardware_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/nodes/test_hardware_resources.py -------------------------------------------------------------------------------- /tests/nodes/test_hip_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/nodes/test_hip_script.py -------------------------------------------------------------------------------- /tests/nodes/test_husk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/nodes/test_husk.py -------------------------------------------------------------------------------- /tests/nodes/test_mantra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/nodes/test_mantra.py -------------------------------------------------------------------------------- /tests/nodes/test_parent_children_waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/nodes/test_parent_children_waiter.py -------------------------------------------------------------------------------- /tests/nodes/test_parent_children_waiter_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/nodes/test_parent_children_waiter_integration.py -------------------------------------------------------------------------------- /tests/nodes/test_redshift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/nodes/test_redshift.py -------------------------------------------------------------------------------- /tests/nodes/test_rename_attrib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/nodes/test_rename_attrib.py -------------------------------------------------------------------------------- /tests/nodes/test_spawn_children.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/nodes/test_spawn_children.py -------------------------------------------------------------------------------- /tests/nodes/test_split_waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/nodes/test_split_waiter.py -------------------------------------------------------------------------------- /tests/nodes/test_split_waiter_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/nodes/test_split_waiter_integration.py -------------------------------------------------------------------------------- /tests/nodes/test_wait_for_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/nodes/test_wait_for_task.py -------------------------------------------------------------------------------- /tests/nodes/test_wait_for_task_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/nodes/test_wait_for_task_integration.py -------------------------------------------------------------------------------- /tests/nodes/test_wedge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/nodes/test_wedge.py -------------------------------------------------------------------------------- /tests/test_aiosqlite_overlay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/test_aiosqlite_overlay.py -------------------------------------------------------------------------------- /tests/test_alocking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/test_alocking.py -------------------------------------------------------------------------------- /tests/test_attribute_serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/test_attribute_serialization.py -------------------------------------------------------------------------------- /tests/test_attribute_serialization_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/test_attribute_serialization_integration.py -------------------------------------------------------------------------------- /tests/test_bad_node_deserialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/test_bad_node_deserialization.py -------------------------------------------------------------------------------- /tests/test_basenode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/test_basenode.py -------------------------------------------------------------------------------- /tests/test_buffered_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/test_buffered_connection.py -------------------------------------------------------------------------------- /tests/test_component_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/test_component_base.py -------------------------------------------------------------------------------- /tests/test_component_process_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/test_component_process_wrapper.py -------------------------------------------------------------------------------- /tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/test_config.py -------------------------------------------------------------------------------- /tests/test_data_access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/test_data_access.py -------------------------------------------------------------------------------- /tests/test_envisonment_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/test_envisonment_resolver.py -------------------------------------------------------------------------------- /tests/test_error_invocations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/test_error_invocations.py -------------------------------------------------------------------------------- /tests/test_expiring_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/test_expiring_dict.py -------------------------------------------------------------------------------- /tests/test_instafinish_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/test_instafinish_tasks.py -------------------------------------------------------------------------------- /tests/test_invocation_messages_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/test_invocation_messages_integration.py -------------------------------------------------------------------------------- /tests/test_invocationjob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/test_invocationjob.py -------------------------------------------------------------------------------- /tests/test_nethelpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/test_nethelpers.py -------------------------------------------------------------------------------- /tests/test_nodeui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/test_nodeui.py -------------------------------------------------------------------------------- /tests/test_priority_raw_db_triggers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/test_priority_raw_db_triggers.py -------------------------------------------------------------------------------- /tests/test_process_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/test_process_utils.py -------------------------------------------------------------------------------- /tests/test_resources_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/test_resources_integration.py -------------------------------------------------------------------------------- /tests/test_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/test_scheduler.py -------------------------------------------------------------------------------- /tests/test_scheduler_config_provider_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/test_scheduler_config_provider_file.py -------------------------------------------------------------------------------- /tests/test_scheduler_event_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/test_scheduler_event_log.py -------------------------------------------------------------------------------- /tests/test_scheduler_task_group_deletion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/test_scheduler_task_group_deletion.py -------------------------------------------------------------------------------- /tests/test_scheduler_worker_comm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/test_scheduler_worker_comm.py -------------------------------------------------------------------------------- /tests/test_serializationv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/test_serializationv2.py -------------------------------------------------------------------------------- /tests/test_sharedlazysqlitecon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/test_sharedlazysqlitecon.py -------------------------------------------------------------------------------- /tests/test_snippets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/test_snippets.py -------------------------------------------------------------------------------- /tests/test_spawn_tasks_race.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/test_spawn_tasks_race.py -------------------------------------------------------------------------------- /tests/test_task_blocking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/test_task_blocking.py -------------------------------------------------------------------------------- /tests/test_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/test_text.py -------------------------------------------------------------------------------- /tests/test_ui_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/test_ui_events.py -------------------------------------------------------------------------------- /tests/test_ui_events_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/test_ui_events_tools.py -------------------------------------------------------------------------------- /tests/test_ui_protocol_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/test_ui_protocol_data.py -------------------------------------------------------------------------------- /tests/test_ui_state_accessor_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/test_ui_state_accessor_integration.py -------------------------------------------------------------------------------- /tests/test_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/test_worker.py -------------------------------------------------------------------------------- /tests/test_worker_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/test_worker_pool.py -------------------------------------------------------------------------------- /tests/test_worker_restart_double_invocation_edge_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/test_worker_restart_double_invocation_edge_case.py -------------------------------------------------------------------------------- /tests/tests_net_messages/test_connection_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/tests_net_messages/test_connection_pool.py -------------------------------------------------------------------------------- /tests/tests_net_messages/test_connection_pool_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/tests_net_messages/test_connection_pool_integration.py -------------------------------------------------------------------------------- /tests/tests_net_messages/test_messageprocessor_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/tests_net_messages/test_messageprocessor_integration.py -------------------------------------------------------------------------------- /tests/tests_net_messages/test_net_message_streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tests/tests_net_messages/test_net_message_streams.py -------------------------------------------------------------------------------- /tools/idx_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedohorse/lifeblood/HEAD/tools/idx_editor.py --------------------------------------------------------------------------------