├── .github └── workflows │ ├── publish-pypi.yml │ └── pytest.yml ├── .gitignore ├── .readthedocs.yml ├── LICENSE ├── README.md ├── docs ├── requirements.txt └── source │ ├── _static │ └── notata.png │ ├── api.rst │ ├── conf.py │ ├── index.rst │ ├── naming.rst │ ├── structure.rst │ ├── tutorials.rst │ └── tutorials │ ├── artifacts.rst │ ├── experiment.rst │ ├── failures.rst │ ├── manual.rst │ ├── plotting.rst │ ├── quickstart.rst │ ├── readers.rst │ ├── shell_usage.rst │ └── sweeps.rst ├── notata ├── __init__.py ├── experiment.py ├── logbook.py └── reader.py ├── pyproject.toml └── tests ├── test_experiment.py ├── test_logbook.py └── test_reader.py /.github/workflows/publish-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/notata/HEAD/.github/workflows/publish-pypi.yml -------------------------------------------------------------------------------- /.github/workflows/pytest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/notata/HEAD/.github/workflows/pytest.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/notata/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/notata/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/notata/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/notata/HEAD/README.md -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/notata/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/_static/notata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/notata/HEAD/docs/source/_static/notata.png -------------------------------------------------------------------------------- /docs/source/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/notata/HEAD/docs/source/api.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/notata/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/notata/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/naming.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/notata/HEAD/docs/source/naming.rst -------------------------------------------------------------------------------- /docs/source/structure.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/notata/HEAD/docs/source/structure.rst -------------------------------------------------------------------------------- /docs/source/tutorials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/notata/HEAD/docs/source/tutorials.rst -------------------------------------------------------------------------------- /docs/source/tutorials/artifacts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/notata/HEAD/docs/source/tutorials/artifacts.rst -------------------------------------------------------------------------------- /docs/source/tutorials/experiment.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/notata/HEAD/docs/source/tutorials/experiment.rst -------------------------------------------------------------------------------- /docs/source/tutorials/failures.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/notata/HEAD/docs/source/tutorials/failures.rst -------------------------------------------------------------------------------- /docs/source/tutorials/manual.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/notata/HEAD/docs/source/tutorials/manual.rst -------------------------------------------------------------------------------- /docs/source/tutorials/plotting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/notata/HEAD/docs/source/tutorials/plotting.rst -------------------------------------------------------------------------------- /docs/source/tutorials/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/notata/HEAD/docs/source/tutorials/quickstart.rst -------------------------------------------------------------------------------- /docs/source/tutorials/readers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/notata/HEAD/docs/source/tutorials/readers.rst -------------------------------------------------------------------------------- /docs/source/tutorials/shell_usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/notata/HEAD/docs/source/tutorials/shell_usage.rst -------------------------------------------------------------------------------- /docs/source/tutorials/sweeps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/notata/HEAD/docs/source/tutorials/sweeps.rst -------------------------------------------------------------------------------- /notata/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/notata/HEAD/notata/__init__.py -------------------------------------------------------------------------------- /notata/experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/notata/HEAD/notata/experiment.py -------------------------------------------------------------------------------- /notata/logbook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/notata/HEAD/notata/logbook.py -------------------------------------------------------------------------------- /notata/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/notata/HEAD/notata/reader.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/notata/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/test_experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/notata/HEAD/tests/test_experiment.py -------------------------------------------------------------------------------- /tests/test_logbook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/notata/HEAD/tests/test_logbook.py -------------------------------------------------------------------------------- /tests/test_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alonfnt/notata/HEAD/tests/test_reader.py --------------------------------------------------------------------------------