Explore >> Select a destination


You are here

www.django-rest-framework.org
| | www.mattlayman.com
4.4 parsecs away

Travel
| | Django has a new authorization option with django-denied. This new package makes authorization checks required for all of your views in your Django app.
| | jinyuz.dev
4.7 parsecs away

Travel
| | Often, I forget how to display the raw SQL of a queryset in Django. This is a quick and easy example of how to do it from django.contrib.auth.models import User qs = User.objects.all() print(qs.query) SELECT "auth_user"."id", "auth_user"."password", "auth_user"."last_login", "auth_user"."is_superuser", "auth_user"."username", "auth_user"."first_name", "auth_user"."last_name", "auth_user"."email", "auth_user"."is_staff", "auth_user"."is_active", "auth_user"."date_joined" FROM "auth_user"
| | keepsimple.dev
4.1 parsecs away

Travel
| | In this tutorial we will be setting up authentication for our GeoIP API
| | www.valentinog.com
16.0 parsecs away

Travel
| How to create a Django REST API? How to structure a Django project with React? Here's a practical introduction to Django REST with React. (Django 3)