├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .pre-commit-hooks.yaml ├── LICENSE ├── README.md ├── pytest.ini ├── requirements.txt ├── setup.py ├── src └── blackbook │ ├── __init__.py │ ├── __main__.py │ └── version.py └── tests ├── data ├── formatted │ ├── empty.ipynb │ ├── no_cells.ipynb │ └── spaces.ipynb └── unformatted │ └── spaces.ipynb ├── test_format_notebook_content.py ├── test_gen_notebook_files_in_dir.py ├── test_main.py └── test_version.py /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoleta-v3/blackbook/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoleta-v3/blackbook/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-hooks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoleta-v3/blackbook/HEAD/.pre-commit-hooks.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoleta-v3/blackbook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoleta-v3/blackbook/HEAD/README.md -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoleta-v3/blackbook/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | black>=19.3b0 2 | loguru>=0.2.5 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoleta-v3/blackbook/HEAD/setup.py -------------------------------------------------------------------------------- /src/blackbook/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoleta-v3/blackbook/HEAD/src/blackbook/__init__.py -------------------------------------------------------------------------------- /src/blackbook/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoleta-v3/blackbook/HEAD/src/blackbook/__main__.py -------------------------------------------------------------------------------- /src/blackbook/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.0.6" 2 | -------------------------------------------------------------------------------- /tests/data/formatted/empty.ipynb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/formatted/no_cells.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoleta-v3/blackbook/HEAD/tests/data/formatted/no_cells.ipynb -------------------------------------------------------------------------------- /tests/data/formatted/spaces.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoleta-v3/blackbook/HEAD/tests/data/formatted/spaces.ipynb -------------------------------------------------------------------------------- /tests/data/unformatted/spaces.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoleta-v3/blackbook/HEAD/tests/data/unformatted/spaces.ipynb -------------------------------------------------------------------------------- /tests/test_format_notebook_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoleta-v3/blackbook/HEAD/tests/test_format_notebook_content.py -------------------------------------------------------------------------------- /tests/test_gen_notebook_files_in_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoleta-v3/blackbook/HEAD/tests/test_gen_notebook_files_in_dir.py -------------------------------------------------------------------------------- /tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoleta-v3/blackbook/HEAD/tests/test_main.py -------------------------------------------------------------------------------- /tests/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nikoleta-v3/blackbook/HEAD/tests/test_version.py --------------------------------------------------------------------------------