|
You are here |
www.valentinog.com | ||
| | | | |
quakkels.com
|
|
| | | | | Django is a Python framework that I've written about before. I've compared Django to ASP.NET MVC. But, I didn't go into much detail about how to actually use Django to create a data driven website. That's what I'll cover now. | |
| | | | |
bartlomiejmika.com
|
|
| | | | | Forget Axios or any other third-party JavaScript library pertaining to API calling, the purpose of this article is to explain how to utilize the basic XmlHttpRequest with your Django project. | |
| | | | |
builtwithdjango.com
|
|
| | | | | In this tutorial, we will go through the process of setting up the most basic Django project with Poetry. We will use that as a setup up for other posts and tutorials. | |
| | | | |
jinyuz.dev
|
|
| | | 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" | ||