├── .gitignore ├── API-Guide ├── Authentication.md ├── Content-negotiation.md ├── Exceptions.md ├── Filtering.md ├── Format-suffixes.md ├── Generic-views.md ├── Metadata.md ├── Pagination.md ├── Parsers.md ├── Permissions.md ├── Renderers.md ├── Requests.md ├── Responses.md ├── Returning-URLs.md ├── Routers.md ├── Schemas.md ├── Serializer-fields.md ├── Serializer-relations.md ├── Serializers.md ├── Settings.md ├── Status-Codes.md ├── Testing.md ├── Throttling.md ├── Validators.md ├── Versioning.md ├── ViewSets.md └── Views.md ├── Community ├── 3.0_Announcement.md ├── 3.1_Announcement.md ├── 3.2_Announcement.md ├── 3.3_Announcement.md ├── 3.4_Announcement.md ├── 3.5_Announcement.md ├── 3.6_Announcement.md ├── 3.7_Announcement.md ├── 3.8_Announcement.md ├── 3.9_Announcement.md ├── Contributing_to_REST_framework.md ├── Funding.md ├── Jobs.md ├── Kickstarter_Announcement.md ├── Mozilla_Grant.md ├── Project_management.md ├── Release_Notes.md ├── Third_Party_Packages.md └── Tutorials_and_Resources.md ├── Image └── api-docs.gif ├── README.md ├── Topics ├── AJAX,_CSRF_&_CORS.md ├── API_Clients.md ├── Browser_enhancements.md ├── Documenting_your_API.md ├── HTML_&_Forms.md ├── Internationalization.md ├── REST,_Hypermedia_&_HATEOAS.md └── The_Browsable_API.md └── Tutorial ├── Authentication-and-Permissions.md ├── Class-based-views.md ├── Quickstart.md ├── Relationships-and-Hyperlinked-APIs.md ├── Requests-and-Responses.md ├── Schemas-and-client_libraries.md ├── Serialization.md └── ViewSets-and-Routers.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/.gitignore -------------------------------------------------------------------------------- /API-Guide/Authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/API-Guide/Authentication.md -------------------------------------------------------------------------------- /API-Guide/Content-negotiation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/API-Guide/Content-negotiation.md -------------------------------------------------------------------------------- /API-Guide/Exceptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/API-Guide/Exceptions.md -------------------------------------------------------------------------------- /API-Guide/Filtering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/API-Guide/Filtering.md -------------------------------------------------------------------------------- /API-Guide/Format-suffixes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/API-Guide/Format-suffixes.md -------------------------------------------------------------------------------- /API-Guide/Generic-views.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/API-Guide/Generic-views.md -------------------------------------------------------------------------------- /API-Guide/Metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/API-Guide/Metadata.md -------------------------------------------------------------------------------- /API-Guide/Pagination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/API-Guide/Pagination.md -------------------------------------------------------------------------------- /API-Guide/Parsers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/API-Guide/Parsers.md -------------------------------------------------------------------------------- /API-Guide/Permissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/API-Guide/Permissions.md -------------------------------------------------------------------------------- /API-Guide/Renderers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/API-Guide/Renderers.md -------------------------------------------------------------------------------- /API-Guide/Requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/API-Guide/Requests.md -------------------------------------------------------------------------------- /API-Guide/Responses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/API-Guide/Responses.md -------------------------------------------------------------------------------- /API-Guide/Returning-URLs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/API-Guide/Returning-URLs.md -------------------------------------------------------------------------------- /API-Guide/Routers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/API-Guide/Routers.md -------------------------------------------------------------------------------- /API-Guide/Schemas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/API-Guide/Schemas.md -------------------------------------------------------------------------------- /API-Guide/Serializer-fields.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/API-Guide/Serializer-fields.md -------------------------------------------------------------------------------- /API-Guide/Serializer-relations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/API-Guide/Serializer-relations.md -------------------------------------------------------------------------------- /API-Guide/Serializers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/API-Guide/Serializers.md -------------------------------------------------------------------------------- /API-Guide/Settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/API-Guide/Settings.md -------------------------------------------------------------------------------- /API-Guide/Status-Codes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/API-Guide/Status-Codes.md -------------------------------------------------------------------------------- /API-Guide/Testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/API-Guide/Testing.md -------------------------------------------------------------------------------- /API-Guide/Throttling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/API-Guide/Throttling.md -------------------------------------------------------------------------------- /API-Guide/Validators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/API-Guide/Validators.md -------------------------------------------------------------------------------- /API-Guide/Versioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/API-Guide/Versioning.md -------------------------------------------------------------------------------- /API-Guide/ViewSets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/API-Guide/ViewSets.md -------------------------------------------------------------------------------- /API-Guide/Views.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/API-Guide/Views.md -------------------------------------------------------------------------------- /Community/3.0_Announcement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/Community/3.0_Announcement.md -------------------------------------------------------------------------------- /Community/3.1_Announcement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/Community/3.1_Announcement.md -------------------------------------------------------------------------------- /Community/3.2_Announcement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/Community/3.2_Announcement.md -------------------------------------------------------------------------------- /Community/3.3_Announcement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/Community/3.3_Announcement.md -------------------------------------------------------------------------------- /Community/3.4_Announcement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/Community/3.4_Announcement.md -------------------------------------------------------------------------------- /Community/3.5_Announcement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/Community/3.5_Announcement.md -------------------------------------------------------------------------------- /Community/3.6_Announcement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/Community/3.6_Announcement.md -------------------------------------------------------------------------------- /Community/3.7_Announcement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/Community/3.7_Announcement.md -------------------------------------------------------------------------------- /Community/3.8_Announcement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/Community/3.8_Announcement.md -------------------------------------------------------------------------------- /Community/3.9_Announcement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/Community/3.9_Announcement.md -------------------------------------------------------------------------------- /Community/Contributing_to_REST_framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/Community/Contributing_to_REST_framework.md -------------------------------------------------------------------------------- /Community/Funding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/Community/Funding.md -------------------------------------------------------------------------------- /Community/Jobs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/Community/Jobs.md -------------------------------------------------------------------------------- /Community/Kickstarter_Announcement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/Community/Kickstarter_Announcement.md -------------------------------------------------------------------------------- /Community/Mozilla_Grant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/Community/Mozilla_Grant.md -------------------------------------------------------------------------------- /Community/Project_management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/Community/Project_management.md -------------------------------------------------------------------------------- /Community/Release_Notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/Community/Release_Notes.md -------------------------------------------------------------------------------- /Community/Third_Party_Packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/Community/Third_Party_Packages.md -------------------------------------------------------------------------------- /Community/Tutorials_and_Resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/Community/Tutorials_and_Resources.md -------------------------------------------------------------------------------- /Image/api-docs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/Image/api-docs.gif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/README.md -------------------------------------------------------------------------------- /Topics/AJAX,_CSRF_&_CORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/Topics/AJAX,_CSRF_&_CORS.md -------------------------------------------------------------------------------- /Topics/API_Clients.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/Topics/API_Clients.md -------------------------------------------------------------------------------- /Topics/Browser_enhancements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/Topics/Browser_enhancements.md -------------------------------------------------------------------------------- /Topics/Documenting_your_API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/Topics/Documenting_your_API.md -------------------------------------------------------------------------------- /Topics/HTML_&_Forms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/Topics/HTML_&_Forms.md -------------------------------------------------------------------------------- /Topics/Internationalization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/Topics/Internationalization.md -------------------------------------------------------------------------------- /Topics/REST,_Hypermedia_&_HATEOAS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/Topics/REST,_Hypermedia_&_HATEOAS.md -------------------------------------------------------------------------------- /Topics/The_Browsable_API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/Topics/The_Browsable_API.md -------------------------------------------------------------------------------- /Tutorial/Authentication-and-Permissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/Tutorial/Authentication-and-Permissions.md -------------------------------------------------------------------------------- /Tutorial/Class-based-views.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/Tutorial/Class-based-views.md -------------------------------------------------------------------------------- /Tutorial/Quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/Tutorial/Quickstart.md -------------------------------------------------------------------------------- /Tutorial/Relationships-and-Hyperlinked-APIs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/Tutorial/Relationships-and-Hyperlinked-APIs.md -------------------------------------------------------------------------------- /Tutorial/Requests-and-Responses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/Tutorial/Requests-and-Responses.md -------------------------------------------------------------------------------- /Tutorial/Schemas-and-client_libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/Tutorial/Schemas-and-client_libraries.md -------------------------------------------------------------------------------- /Tutorial/Serialization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/Tutorial/Serialization.md -------------------------------------------------------------------------------- /Tutorial/ViewSets-and-Routers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangweiren/Django-REST-framework-documentation/HEAD/Tutorial/ViewSets-and-Routers.md --------------------------------------------------------------------------------