diff --git a/docs/index.md b/docs/index.md index bb2129f6f..4bc5b7a3e 100644 --- a/docs/index.md +++ b/docs/index.md @@ -177,6 +177,7 @@ General guides to using REST framework. * [Browser enhancements][browser-enhancements] * [The Browsable API][browsableapi] * [REST, Hypermedia & HATEOAS][rest-hypermedia-hateoas] +* [Third Party Resources][third-party-resources] * [2.0 Announcement][rest-framework-2-announcement] * [2.2 Announcement][2.2-announcement] * [2.3 Announcement][2.3-announcement] @@ -300,6 +301,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. [browsableapi]: topics/browsable-api.md [rest-hypermedia-hateoas]: topics/rest-hypermedia-hateoas.md [contributing]: topics/contributing.md +[third-party-resources]: topics/third-party-resources.md [rest-framework-2-announcement]: topics/rest-framework-2-announcement.md [2.2-announcement]: topics/2.2-announcement.md [2.3-announcement]: topics/2.3-announcement.md diff --git a/docs/template.html b/docs/template.html index 749d0afe3..d5a47835f 100644 --- a/docs/template.html +++ b/docs/template.html @@ -101,6 +101,7 @@
  • Browser enhancements
  • The Browsable API
  • REST, Hypermedia & HATEOAS
  • +
  • Third Party Resources
  • 2.0 Announcement
  • 2.2 Announcement
  • 2.3 Announcement
  • diff --git a/docs/topics/third-party-resources.md b/docs/topics/third-party-resources.md new file mode 100644 index 000000000..caf30b88b --- /dev/null +++ b/docs/topics/third-party-resources.md @@ -0,0 +1,34 @@ +# Third Party Resources + +## Libraries and Extensions + +### Authentication + +* [Digest Authentication](https://github.com/juanriaza/django-rest-framework-digestauth) +* [Django OAuth Toolkit](https://github.com/evonove/django-oauth-toolkit) +* [Django OAuth2 Consumer](https://github.com/Rediker-Software/doac) + +### Permissions + +* [DRF Any Permissions](https://github.com/kevin-brown/drf-any-permissions) - alternative permission handling + +### Renderer + +* [django-rest-framework-csv](https://github.com/mjumbewu/django-rest-framework-csv) + +### Misc + +* [Django REST Framework Proxy](https://github.com/eofs/django-rest-framework-proxy) +* [Django REST Framework Docs](https://github.com/marcgibbons/django-rest-framework-docs) +* [ember-data-django-rest-adapter](https://github.com/toranb/ember-data-django-rest-adapter) +* [Django REST Framework GIS](https://github.com/dmeehan/django-rest-framework-gis) (@dmeehan) +* [Django REST Framework GIS](https://github.com/mjumbewu/django-rest-framework-gis) (@mjumbewu) +* [Django REST Framework Msgpack](https://github.com/juanriaza/django-rest-framework-msgpack) +* [gaiarestframework](https://github.com/AppsFuel/gaiarestframework) - utils collection + +## Tutorials + +## Articles + +* [Web API performance: profiling Django REST framework](http://dabapps.com/blog/api-performance-profiling-django-rest-framework/) +* [API Development with Django and Django REST Framework](https://bnotions.com/api-development-with-django-and-django-rest-framework/)