gitextract_oq4ufw3w/ ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ └── workflows/ │ ├── contributing.yml │ ├── python-ci.yml │ └── python-publish.yml ├── .gitignore ├── .readthedocs.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── docs/ │ ├── activation.md │ ├── changelog.md │ ├── contributing.md │ ├── index.md │ ├── installation.md │ ├── pycharm.md │ ├── reference/ │ │ ├── index.md │ │ └── plus.md │ ├── releasing.md │ └── usage.ipynb ├── mkdocs.yml ├── pyproject.toml ├── src/ │ └── dj_notebook/ │ ├── __init__.py │ ├── config_helper.py │ └── shell_plus.py ├── tests/ │ ├── __init__.py │ ├── config_debug_false.py │ ├── config_test_harness.py │ ├── django_test_project/ │ │ ├── book_outlet/ │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── migrations/ │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_book_author_book_is_bestselling_alter_book_rating.py │ │ │ │ ├── 0003_book_slug.py │ │ │ │ ├── 0004_author_alter_book_slug_alter_book_author.py │ │ │ │ ├── 0005_alter_book_author.py │ │ │ │ ├── 0006_address_author_address.py │ │ │ │ ├── 0007_country_alter_address_options_and_more.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── templates/ │ │ │ │ └── book_outlet/ │ │ │ │ ├── base.html │ │ │ │ ├── book_detail.html │ │ │ │ └── index.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── book_store/ │ │ │ ├── __init__.py │ │ │ ├── asgi.py │ │ │ ├── settings.py │ │ │ ├── urls.py │ │ │ └── wsgi.py │ │ ├── data.sqlite3 │ │ ├── example_fk.ipynb │ │ ├── example_long_form.ipynb │ │ ├── example_mermaid.ipynb │ │ ├── example_print.ipynb │ │ ├── example_short_form.ipynb │ │ └── manage.py │ ├── env.django_settings_module │ ├── fake_manage_alias_environ.py │ ├── fake_manage_fully_qualified.py │ ├── fake_manage_import_environ.py │ ├── fake_other_environ_and_real_environ_setdefault.py │ ├── fake_other_environ_setdefault.py │ ├── sample.csv │ ├── test_config_helper.py │ └── test_dj_notebook.py └── utils/ └── update_changelog.py