├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── codecov.yaml ├── dependabot.yml ├── linters │ └── .yaml-lint.yml └── workflows │ ├── auto-merge.yml │ ├── base-linting.yaml │ ├── ci.yaml │ ├── publish-docs.yaml │ └── publish.yaml ├── .gitignore ├── .readthedocs.yaml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DOCUMENTATION.md ├── LICENSE ├── README.md ├── docs ├── changelog.md ├── client.md ├── contributing.md ├── gen_doc_stubs.py ├── index.md ├── papersnake-dark.svg ├── papersnake.svg ├── quickstart.md ├── reference │ ├── clients │ │ ├── api.md │ │ ├── cache.md │ │ └── rtu.md │ ├── models │ │ ├── api │ │ │ ├── base.md │ │ │ ├── datasources.md │ │ │ ├── files.md │ │ │ ├── outputs.md │ │ │ ├── projects.md │ │ │ ├── spaces.md │ │ │ └── users.md │ │ ├── deltas │ │ │ ├── base.md │ │ │ ├── delta_types │ │ │ │ ├── cell_contents.md │ │ │ │ ├── cell_execute.md │ │ │ │ ├── cell_metadata.md │ │ │ │ ├── cell_output_collection.md │ │ │ │ ├── nb_cells.md │ │ │ │ └── nb_metadata.md │ │ │ └── discriminators.md │ │ ├── kernels.md │ │ ├── notebook.md │ │ └── rtu │ │ │ ├── base.md │ │ │ ├── channels │ │ │ ├── files.md │ │ │ ├── kernels.md │ │ │ └── system.md │ │ │ ├── discriminators.md │ │ │ └── errors.md │ └── notebook │ │ └── builder.md ├── requirements.txt ├── screenshots │ ├── user_settings__api_tokens.png │ └── user_settings__api_tokens2.png └── usage.md ├── mkdocs.yml ├── origami ├── __init__.py ├── cli.py ├── clients │ ├── __init__.py │ ├── api.py │ ├── cache.py │ └── rtu.py ├── log_utils.py ├── models │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── base.py │ │ ├── datasources.py │ │ ├── files.py │ │ ├── outputs.py │ │ ├── projects.py │ │ ├── spaces.py │ │ └── users.py │ ├── deltas │ │ ├── __init__.py │ │ ├── base.py │ │ ├── delta_types │ │ │ ├── __init__.py │ │ │ ├── cell_contents.py │ │ │ ├── cell_execute.py │ │ │ ├── cell_metadata.py │ │ │ ├── cell_output_collection.py │ │ │ ├── nb_cells.py │ │ │ └── nb_metadata.py │ │ └── discriminators.py │ ├── kernels.py │ ├── notebook.py │ └── rtu │ │ ├── __init__.py │ │ ├── base.py │ │ ├── channels │ │ ├── __init__.py │ │ ├── files.py │ │ ├── kernels.py │ │ └── system.py │ │ ├── discriminators.py │ │ └── errors.py └── notebook │ ├── __init__.py │ └── builder.py ├── poetry.lock ├── pyproject.toml ├── setup.cfg └── tests ├── e2e ├── api │ ├── __init__.py │ ├── test_files.py │ ├── test_projects.py │ ├── test_spaces.py │ └── test_users.py ├── conftest.py └── rtu │ ├── __init__.py │ ├── test_execution.py │ └── test_notebook.py └── unit ├── models ├── conftest.py ├── test_files.py ├── test_notebook.py ├── test_project.py ├── test_rtu_base.py ├── test_space.py └── test_user.py ├── test_sql_cells.py └── test_version.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/codecov.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/.github/codecov.yaml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/linters/.yaml-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/.github/linters/.yaml-lint.yml -------------------------------------------------------------------------------- /.github/workflows/auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/.github/workflows/auto-merge.yml -------------------------------------------------------------------------------- /.github/workflows/base-linting.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/.github/workflows/base-linting.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/publish-docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/.github/workflows/publish-docs.yaml -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DOCUMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/DOCUMENTATION.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/README.md -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- 1 | --8<-- "CHANGELOG.md" -------------------------------------------------------------------------------- /docs/client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/docs/client.md -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- 1 | --8<-- "CONTRIBUTING.md" -------------------------------------------------------------------------------- /docs/gen_doc_stubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/docs/gen_doc_stubs.py -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/papersnake-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/docs/papersnake-dark.svg -------------------------------------------------------------------------------- /docs/papersnake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/docs/papersnake.svg -------------------------------------------------------------------------------- /docs/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/docs/quickstart.md -------------------------------------------------------------------------------- /docs/reference/clients/api.md: -------------------------------------------------------------------------------- 1 | ::: clients.api 2 | -------------------------------------------------------------------------------- /docs/reference/clients/cache.md: -------------------------------------------------------------------------------- 1 | ::: clients.cache 2 | -------------------------------------------------------------------------------- /docs/reference/clients/rtu.md: -------------------------------------------------------------------------------- 1 | ::: clients.rtu 2 | -------------------------------------------------------------------------------- /docs/reference/models/api/base.md: -------------------------------------------------------------------------------- 1 | ::: models.api.base 2 | -------------------------------------------------------------------------------- /docs/reference/models/api/datasources.md: -------------------------------------------------------------------------------- 1 | ::: models.api.datasources 2 | -------------------------------------------------------------------------------- /docs/reference/models/api/files.md: -------------------------------------------------------------------------------- 1 | ::: models.api.files 2 | -------------------------------------------------------------------------------- /docs/reference/models/api/outputs.md: -------------------------------------------------------------------------------- 1 | ::: models.api.outputs 2 | -------------------------------------------------------------------------------- /docs/reference/models/api/projects.md: -------------------------------------------------------------------------------- 1 | ::: models.api.projects 2 | -------------------------------------------------------------------------------- /docs/reference/models/api/spaces.md: -------------------------------------------------------------------------------- 1 | ::: models.api.spaces 2 | -------------------------------------------------------------------------------- /docs/reference/models/api/users.md: -------------------------------------------------------------------------------- 1 | ::: models.api.users 2 | -------------------------------------------------------------------------------- /docs/reference/models/deltas/base.md: -------------------------------------------------------------------------------- 1 | ::: models.deltas.base 2 | -------------------------------------------------------------------------------- /docs/reference/models/deltas/delta_types/cell_contents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/docs/reference/models/deltas/delta_types/cell_contents.md -------------------------------------------------------------------------------- /docs/reference/models/deltas/delta_types/cell_execute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/docs/reference/models/deltas/delta_types/cell_execute.md -------------------------------------------------------------------------------- /docs/reference/models/deltas/delta_types/cell_metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/docs/reference/models/deltas/delta_types/cell_metadata.md -------------------------------------------------------------------------------- /docs/reference/models/deltas/delta_types/cell_output_collection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/docs/reference/models/deltas/delta_types/cell_output_collection.md -------------------------------------------------------------------------------- /docs/reference/models/deltas/delta_types/nb_cells.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/docs/reference/models/deltas/delta_types/nb_cells.md -------------------------------------------------------------------------------- /docs/reference/models/deltas/delta_types/nb_metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/docs/reference/models/deltas/delta_types/nb_metadata.md -------------------------------------------------------------------------------- /docs/reference/models/deltas/discriminators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/docs/reference/models/deltas/discriminators.md -------------------------------------------------------------------------------- /docs/reference/models/kernels.md: -------------------------------------------------------------------------------- 1 | ::: models.kernels 2 | -------------------------------------------------------------------------------- /docs/reference/models/notebook.md: -------------------------------------------------------------------------------- 1 | ::: models.notebook 2 | -------------------------------------------------------------------------------- /docs/reference/models/rtu/base.md: -------------------------------------------------------------------------------- 1 | ::: models.rtu.base 2 | -------------------------------------------------------------------------------- /docs/reference/models/rtu/channels/files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/docs/reference/models/rtu/channels/files.md -------------------------------------------------------------------------------- /docs/reference/models/rtu/channels/kernels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/docs/reference/models/rtu/channels/kernels.md -------------------------------------------------------------------------------- /docs/reference/models/rtu/channels/system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/docs/reference/models/rtu/channels/system.md -------------------------------------------------------------------------------- /docs/reference/models/rtu/discriminators.md: -------------------------------------------------------------------------------- 1 | ::: models.rtu.discriminators 2 | -------------------------------------------------------------------------------- /docs/reference/models/rtu/errors.md: -------------------------------------------------------------------------------- 1 | ::: models.rtu.errors 2 | -------------------------------------------------------------------------------- /docs/reference/notebook/builder.md: -------------------------------------------------------------------------------- 1 | ::: notebook.builder 2 | -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/screenshots/user_settings__api_tokens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/docs/screenshots/user_settings__api_tokens.png -------------------------------------------------------------------------------- /docs/screenshots/user_settings__api_tokens2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/docs/screenshots/user_settings__api_tokens2.png -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- 1 | Coming soon! -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /origami/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/origami/__init__.py -------------------------------------------------------------------------------- /origami/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/origami/cli.py -------------------------------------------------------------------------------- /origami/clients/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /origami/clients/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/origami/clients/api.py -------------------------------------------------------------------------------- /origami/clients/cache.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /origami/clients/rtu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/origami/clients/rtu.py -------------------------------------------------------------------------------- /origami/log_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/origami/log_utils.py -------------------------------------------------------------------------------- /origami/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /origami/models/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /origami/models/api/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/origami/models/api/base.py -------------------------------------------------------------------------------- /origami/models/api/datasources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/origami/models/api/datasources.py -------------------------------------------------------------------------------- /origami/models/api/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/origami/models/api/files.py -------------------------------------------------------------------------------- /origami/models/api/outputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/origami/models/api/outputs.py -------------------------------------------------------------------------------- /origami/models/api/projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/origami/models/api/projects.py -------------------------------------------------------------------------------- /origami/models/api/spaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/origami/models/api/spaces.py -------------------------------------------------------------------------------- /origami/models/api/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/origami/models/api/users.py -------------------------------------------------------------------------------- /origami/models/deltas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /origami/models/deltas/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/origami/models/deltas/base.py -------------------------------------------------------------------------------- /origami/models/deltas/delta_types/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /origami/models/deltas/delta_types/cell_contents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/origami/models/deltas/delta_types/cell_contents.py -------------------------------------------------------------------------------- /origami/models/deltas/delta_types/cell_execute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/origami/models/deltas/delta_types/cell_execute.py -------------------------------------------------------------------------------- /origami/models/deltas/delta_types/cell_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/origami/models/deltas/delta_types/cell_metadata.py -------------------------------------------------------------------------------- /origami/models/deltas/delta_types/cell_output_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/origami/models/deltas/delta_types/cell_output_collection.py -------------------------------------------------------------------------------- /origami/models/deltas/delta_types/nb_cells.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/origami/models/deltas/delta_types/nb_cells.py -------------------------------------------------------------------------------- /origami/models/deltas/delta_types/nb_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/origami/models/deltas/delta_types/nb_metadata.py -------------------------------------------------------------------------------- /origami/models/deltas/discriminators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/origami/models/deltas/discriminators.py -------------------------------------------------------------------------------- /origami/models/kernels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/origami/models/kernels.py -------------------------------------------------------------------------------- /origami/models/notebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/origami/models/notebook.py -------------------------------------------------------------------------------- /origami/models/rtu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /origami/models/rtu/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/origami/models/rtu/base.py -------------------------------------------------------------------------------- /origami/models/rtu/channels/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /origami/models/rtu/channels/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/origami/models/rtu/channels/files.py -------------------------------------------------------------------------------- /origami/models/rtu/channels/kernels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/origami/models/rtu/channels/kernels.py -------------------------------------------------------------------------------- /origami/models/rtu/channels/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/origami/models/rtu/channels/system.py -------------------------------------------------------------------------------- /origami/models/rtu/discriminators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/origami/models/rtu/discriminators.py -------------------------------------------------------------------------------- /origami/models/rtu/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/origami/models/rtu/errors.py -------------------------------------------------------------------------------- /origami/notebook/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /origami/notebook/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/origami/notebook/builder.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/setup.cfg -------------------------------------------------------------------------------- /tests/e2e/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/e2e/api/test_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/tests/e2e/api/test_files.py -------------------------------------------------------------------------------- /tests/e2e/api/test_projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/tests/e2e/api/test_projects.py -------------------------------------------------------------------------------- /tests/e2e/api/test_spaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/tests/e2e/api/test_spaces.py -------------------------------------------------------------------------------- /tests/e2e/api/test_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/tests/e2e/api/test_users.py -------------------------------------------------------------------------------- /tests/e2e/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/tests/e2e/conftest.py -------------------------------------------------------------------------------- /tests/e2e/rtu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/e2e/rtu/test_execution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/tests/e2e/rtu/test_execution.py -------------------------------------------------------------------------------- /tests/e2e/rtu/test_notebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/tests/e2e/rtu/test_notebook.py -------------------------------------------------------------------------------- /tests/unit/models/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/tests/unit/models/conftest.py -------------------------------------------------------------------------------- /tests/unit/models/test_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/tests/unit/models/test_files.py -------------------------------------------------------------------------------- /tests/unit/models/test_notebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/tests/unit/models/test_notebook.py -------------------------------------------------------------------------------- /tests/unit/models/test_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/tests/unit/models/test_project.py -------------------------------------------------------------------------------- /tests/unit/models/test_rtu_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/tests/unit/models/test_rtu_base.py -------------------------------------------------------------------------------- /tests/unit/models/test_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/tests/unit/models/test_space.py -------------------------------------------------------------------------------- /tests/unit/models/test_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/tests/unit/models/test_user.py -------------------------------------------------------------------------------- /tests/unit/test_sql_cells.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/tests/unit/test_sql_cells.py -------------------------------------------------------------------------------- /tests/unit/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noteable-io/origami/HEAD/tests/unit/test_version.py --------------------------------------------------------------------------------