├── .bumpversion.cfg ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .readthedocs.yaml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DEVELOPMENT_GUIDE.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── RELEASING.md ├── binder ├── ResultsDemo.ipynb ├── highlight_dates.ipynb ├── reglue_highlight_dates.ipynb └── requirements.txt ├── docs ├── Makefile ├── UPDATE.md ├── _static │ ├── custom.css │ └── images │ │ ├── papermill.png │ │ └── scrapbook-logo.png ├── _templates │ ├── navigation.html │ ├── page.html │ └── relations.html ├── conf.py ├── deprecation-papermill.rst ├── index.rst ├── installation.rst ├── make.bat ├── models.rst ├── reference │ ├── modules.rst │ ├── scrapbook.rst │ └── scrapbook.tests.rst ├── requirements-doc.txt ├── usage-glue.rst ├── usage-read-notebook.rst └── usage-read-notebooks.rst ├── pytest.ini ├── requirements-dev.txt ├── requirements.txt ├── scrapbook ├── __init__.py ├── api.py ├── encoders.py ├── exceptions.py ├── log.py ├── models.py ├── schemas.py ├── schemas │ └── scrap.v1.json ├── scraps.py ├── tests │ ├── __init__.py │ ├── fixtures │ │ └── tiny.png │ ├── notebooks │ │ ├── collection │ │ │ ├── result1.ipynb │ │ │ └── result2.ipynb │ │ ├── record.ipynb │ │ └── result_no_exec.ipynb │ ├── test_api.py │ ├── test_encoders.py │ ├── test_notebooks.py │ ├── test_scrapbooks.py │ ├── test_scraps.py │ └── test_utils.py ├── utils.py └── version.py ├── setup.cfg ├── setup.py └── tox.ini /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEVELOPMENT_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/DEVELOPMENT_GUIDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/RELEASING.md -------------------------------------------------------------------------------- /binder/ResultsDemo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/binder/ResultsDemo.ipynb -------------------------------------------------------------------------------- /binder/highlight_dates.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/binder/highlight_dates.ipynb -------------------------------------------------------------------------------- /binder/reglue_highlight_dates.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/binder/reglue_highlight_dates.ipynb -------------------------------------------------------------------------------- /binder/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/binder/requirements.txt -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/UPDATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/docs/UPDATE.md -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/docs/_static/custom.css -------------------------------------------------------------------------------- /docs/_static/images/papermill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/docs/_static/images/papermill.png -------------------------------------------------------------------------------- /docs/_static/images/scrapbook-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/docs/_static/images/scrapbook-logo.png -------------------------------------------------------------------------------- /docs/_templates/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/docs/_templates/navigation.html -------------------------------------------------------------------------------- /docs/_templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/docs/_templates/page.html -------------------------------------------------------------------------------- /docs/_templates/relations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/docs/_templates/relations.html -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/deprecation-papermill.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/docs/deprecation-papermill.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/docs/models.rst -------------------------------------------------------------------------------- /docs/reference/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/docs/reference/modules.rst -------------------------------------------------------------------------------- /docs/reference/scrapbook.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/docs/reference/scrapbook.rst -------------------------------------------------------------------------------- /docs/reference/scrapbook.tests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/docs/reference/scrapbook.tests.rst -------------------------------------------------------------------------------- /docs/requirements-doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/docs/requirements-doc.txt -------------------------------------------------------------------------------- /docs/usage-glue.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/docs/usage-glue.rst -------------------------------------------------------------------------------- /docs/usage-read-notebook.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/docs/usage-read-notebook.rst -------------------------------------------------------------------------------- /docs/usage-read-notebooks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/docs/usage-read-notebooks.rst -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pandas 2 | papermill 3 | jsonschema 4 | ipython 5 | pyarrow 6 | -------------------------------------------------------------------------------- /scrapbook/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/scrapbook/__init__.py -------------------------------------------------------------------------------- /scrapbook/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/scrapbook/api.py -------------------------------------------------------------------------------- /scrapbook/encoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/scrapbook/encoders.py -------------------------------------------------------------------------------- /scrapbook/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/scrapbook/exceptions.py -------------------------------------------------------------------------------- /scrapbook/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/scrapbook/log.py -------------------------------------------------------------------------------- /scrapbook/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/scrapbook/models.py -------------------------------------------------------------------------------- /scrapbook/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/scrapbook/schemas.py -------------------------------------------------------------------------------- /scrapbook/schemas/scrap.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/scrapbook/schemas/scrap.v1.json -------------------------------------------------------------------------------- /scrapbook/scraps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/scrapbook/scraps.py -------------------------------------------------------------------------------- /scrapbook/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/scrapbook/tests/__init__.py -------------------------------------------------------------------------------- /scrapbook/tests/fixtures/tiny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/scrapbook/tests/fixtures/tiny.png -------------------------------------------------------------------------------- /scrapbook/tests/notebooks/collection/result1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/scrapbook/tests/notebooks/collection/result1.ipynb -------------------------------------------------------------------------------- /scrapbook/tests/notebooks/collection/result2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/scrapbook/tests/notebooks/collection/result2.ipynb -------------------------------------------------------------------------------- /scrapbook/tests/notebooks/record.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/scrapbook/tests/notebooks/record.ipynb -------------------------------------------------------------------------------- /scrapbook/tests/notebooks/result_no_exec.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/scrapbook/tests/notebooks/result_no_exec.ipynb -------------------------------------------------------------------------------- /scrapbook/tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/scrapbook/tests/test_api.py -------------------------------------------------------------------------------- /scrapbook/tests/test_encoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/scrapbook/tests/test_encoders.py -------------------------------------------------------------------------------- /scrapbook/tests/test_notebooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/scrapbook/tests/test_notebooks.py -------------------------------------------------------------------------------- /scrapbook/tests/test_scrapbooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/scrapbook/tests/test_scrapbooks.py -------------------------------------------------------------------------------- /scrapbook/tests/test_scraps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/scrapbook/tests/test_scraps.py -------------------------------------------------------------------------------- /scrapbook/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/scrapbook/tests/test_utils.py -------------------------------------------------------------------------------- /scrapbook/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/scrapbook/utils.py -------------------------------------------------------------------------------- /scrapbook/version.py: -------------------------------------------------------------------------------- 1 | version = "0.5.0" 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/scrapbook/HEAD/tox.ini --------------------------------------------------------------------------------