LICENSE
MANIFEST.in
README.md
pyproject.toml
setup.py
dffml/__init__.py
dffml/__main__.py
dffml/base.py
dffml/high_level.py
dffml/log.py
dffml/noasync.py
dffml/plugins.py
dffml/record.py
dffml/version.py
dffml.egg-info/PKG-INFO
dffml.egg-info/SOURCES.txt
dffml.egg-info/dependency_links.txt
dffml.egg-info/entry_points.txt
dffml.egg-info/not-zip-safe
dffml.egg-info/requires.txt
dffml.egg-info/top_level.txt
dffml/cli/__init__.py
dffml/cli/cli.py
dffml/cli/config.py
dffml/cli/dataflow.py
dffml/cli/list.py
dffml/cli/log.py
dffml/cli/ml.py
dffml/configloader/__init__.py
dffml/configloader/configloader.py
dffml/configloader/json.py
dffml/db/__init__.py
dffml/db/base.py
dffml/db/sql.py
dffml/db/sqlite.py
dffml/df/__init__.py
dffml/df/base.py
dffml/df/exceptions.py
dffml/df/log.py
dffml/df/memory.py
dffml/df/multicomm.py
dffml/df/types.py
dffml/feature/__init__.py
dffml/feature/feature.py
dffml/feature/log.py
dffml/model/__init__.py
dffml/model/accuracy.py
dffml/model/log.py
dffml/model/model.py
dffml/model/slr.py
dffml/operation/__init__.py
dffml/operation/dataflow.py
dffml/operation/db.py
dffml/operation/io.py
dffml/operation/log.py
dffml/operation/mapping.py
dffml/operation/math.py
dffml/operation/model.py
dffml/operation/output.py
dffml/operation/preprocess.py
dffml/port/__init__.py
dffml/port/json.py
dffml/port/log.py
dffml/port/port.py
dffml/secret/__init__.py
dffml/secret/base.py
dffml/secret/ini.py
dffml/service/__init__.py
dffml/service/dev.py
dffml/skel/.gitignore
dffml/skel/common/.coveragerc
dffml/skel/common/.gitignore
dffml/skel/common/LICENSE
dffml/skel/common/MANIFEST.in
dffml/skel/common/pyproject.toml
dffml/skel/common/setup.cfg
dffml/skel/common/setup.py
dffml/skel/common/.github/workflows/testing.yml
dffml/skel/common/REPLACE_IMPORT_PACKAGE_NAME/__init__.py
dffml/skel/common/REPLACE_IMPORT_PACKAGE_NAME/version.py
dffml/skel/common/tests/__init__.py
dffml/skel/config/README.md
dffml/skel/config/entry_points.txt
dffml/skel/config/REPLACE_IMPORT_PACKAGE_NAME/configloader.py
dffml/skel/config/tests/test_config.py
dffml/skel/model/README.md
dffml/skel/model/entry_points.txt
dffml/skel/model/REPLACE_IMPORT_PACKAGE_NAME/myslr.py
dffml/skel/model/examples/example_myslr.py
dffml/skel/model/tests/test_integration.py
dffml/skel/model/tests/test_model.py
dffml/skel/operations/Dockerfile
dffml/skel/operations/README.md
dffml/skel/operations/entry_points.txt
dffml/skel/operations/REPLACE_IMPORT_PACKAGE_NAME/definitions.py
dffml/skel/operations/REPLACE_IMPORT_PACKAGE_NAME/operations.py
dffml/skel/operations/tests/test_operations.py
dffml/skel/service/README.md
dffml/skel/service/entry_points.txt
dffml/skel/service/REPLACE_IMPORT_PACKAGE_NAME/misc.py
dffml/skel/service/tests/test_service.py
dffml/skel/source/README.md
dffml/skel/source/entry_points.txt
dffml/skel/source/REPLACE_IMPORT_PACKAGE_NAME/misc.py
dffml/skel/source/tests/test_source.py
dffml/source/__init__.py
dffml/source/csv.py
dffml/source/db.py
dffml/source/df.py
dffml/source/dir.py
dffml/source/file.py
dffml/source/idx1.py
dffml/source/idx3.py
dffml/source/ini.py
dffml/source/json.py
dffml/source/log.py
dffml/source/memory.py
dffml/source/op.py
dffml/source/source.py
dffml/util/__init__.py
dffml/util/asynchelper.py
dffml/util/asynctestcase.py
dffml/util/data.py
dffml/util/display.py
dffml/util/entrypoint.py
dffml/util/log.py
dffml/util/net.py
dffml/util/os.py
dffml/util/packaging.py
dffml/util/skel.py
dffml/util/tempdir.py
dffml/util/cli/__init__.py
dffml/util/cli/arg.py
dffml/util/cli/cmd.py
dffml/util/cli/cmds.py
dffml/util/cli/log.py
dffml/util/cli/parser.py
dffml/util/config/__init__.py
dffml/util/config/exceptions.py
dffml/util/config/fields.py
dffml/util/config/numpy.py
dffml/util/testing/__init__.py
dffml/util/testing/docs.py
dffml/util/testing/source.py
dffml/util/testing/consoletest/__init__.py
dffml/util/testing/consoletest/__main__.py
dffml/util/testing/consoletest/builder.py
dffml/util/testing/consoletest/cli.py
dffml/util/testing/consoletest/commands.py
dffml/util/testing/consoletest/directives.py
dffml/util/testing/consoletest/parser.py
dffml/util/testing/consoletest/runner.py
dffml/util/testing/consoletest/util.py
tests/__init__.py
tests/test_accuracy.py
tests/test_base.py
tests/test_ci.py
tests/test_cli.py
tests/test_df.py
tests/test_docstrings.py
tests/test_feature.py
tests/test_high_level.py
tests/test_input_validation.py
tests/test_noasync.py
tests/test_record.py
tests/db/__init__.py
tests/db/test_sqlite.py
tests/df/__init__.py
tests/df/test_async_iter.py
tests/df/test_auto_start.py
tests/df/test_df_create.py
tests/df/test_memory.py
tests/docs/__init__.py
tests/docs/swportal_consoletest_test_setup.py
tests/docs/test_consoletest.py
tests/docs/test_swportal.py
tests/integration/__init__.py
tests/integration/test_cli.py
tests/integration/test_dataflow.py
tests/integration/test_service_dev.py
tests/integration/test_sources.py
tests/model/__init__.py
tests/model/test_slr.py
tests/operation/__init__.py
tests/operation/test_associatedef.py
tests/operation/test_dataflow.py
tests/operation/test_io.py
tests/operation/test_mapping.py
tests/operation/test_preprocess.py
tests/operation/test_sqlite_query.py
tests/secret/__init__.py
tests/secret/test_ini.py
tests/service/__init__.py
tests/service/test_dev.py
tests/source/__init__.py
tests/source/test_csv.py
tests/source/test_db.py
tests/source/test_df.py
tests/source/test_dir.py
tests/source/test_file.py
tests/source/test_idx.py
tests/source/test_ini.py
tests/source/test_json.py
tests/source/test_op.py
tests/tutorials/__init__.py
tests/tutorials/dataflows/__init__.py
tests/tutorials/dataflows/test_locking.py
tests/tutorials/models/__init__.py
tests/util/__init__.py
tests/util/double_ret.py
tests/util/test_asynccontextmanager.py
tests/util/test_asynchelper.py
tests/util/test_cli.py
tests/util/test_config.py
tests/util/test_entrypoint.py
tests/util/test_net.py
tests/util/test_os.py
tests/util/test_skel.py
tests/util/test_tempdir.py
tests/util/test_traverse.py
tests/util/testing/__init__.py
tests/util/testing/test_consoletest.py
tests/util/testing/test_docs.py