gitextract_s0pt2_8x/ ├── .files_cache.json ├── .github/ │ └── workflows/ │ ├── check_all_temp_data_cleared.yml │ └── check_source_for_changes.yml ├── .gitignore ├── .scripts/ │ ├── commit_changes.py │ └── monitor_repository.py ├── README.md ├── SUMMARY.md ├── api-guide/ │ ├── authentication.md │ ├── caching.md │ ├── content-negotiation.md │ ├── exceptions.md │ ├── fields.md │ ├── filtering.md │ ├── format-suffixes.md │ ├── generic-views.md │ ├── metadata.md │ ├── pagination.md │ ├── parsers.md │ ├── permissions.md │ ├── relations.md │ ├── renderers.md │ ├── requests.md │ ├── responses.md │ ├── reverse.md │ ├── routers.md │ ├── schemas.md │ ├── serializers.md │ ├── settings.md │ ├── status-codes.md │ ├── testing.md │ ├── throttling.md │ ├── validators.md │ ├── versioning.md │ ├── views.md │ └── viewsets.md ├── monitoring_config.toml ├── quickstart.md ├── topics/ │ ├── ajax-csrf-cors.md │ ├── browsable-api.md │ ├── browser-enhancements.md │ ├── documenting-your-api.md │ ├── html-and-forms.md │ ├── internationalization.md │ ├── rest-hypermedia-hateoas.md │ └── writable-nested-serializers.md ├── topics.md └── tutorial/ ├── 1-serialization.md ├── 2-requests-and-responses.md ├── 3-class-based-views.md ├── 4-authentication-and-permissions.md ├── 5-relationships-and-hyperlinked-apis.md └── 6-viewsets-and-routers.md