Category: Django

  • URL Fields in Serializers – Django REST Framework

    When building an API with Django Rest Framework, serializers play a crucial role in defining how data is serialized and deserialized. One of the key features of serializers is the ability to define URL fields, which allow us to link to related objects and resources. In this article, we’ll explore the concept of URL fields…

  • Relational Fields in Django Models

    Django is a popular web framework for building web applications in Python. It offers a range of powerful features and tools for developers to build high-quality applications with ease. The robust object-relational mapping (ORM) framework is one of Django’s key characteristics. Instead of writing intricate SQL queries, the ORM framework enables developers to communicate with…

  • Dokku Django

    What is Dokku? Dokku is an open-source project released in 2013 that aimed to make it easy to set up a docker-based application hosting platform. Dokku is written in ruby and uses docker to manage applications and containers. Dokku is a container-based deployment platform for applications running in Docker containers. It is similar to Heroku,…

  • Fixtures in Django

    In this tutorial, we are discussing Fixtures in Django. If you are working with Django, pytest fixtures can help you write tests for your models that are easy to maintain. Writing accurate assessments is a key step to a successful app, and fixtures are a key part of making you look at the suite efficiently…

  • ToDo Webapp using Django

    A high-level Web application platform called Django enables quick development and straightforward, practical design. We’ll build a to-do app today to help you get the hang of Django. Similar to Google Keep or Evernote, this web software allows users to create notes. Modules Necessary: Start the server by entering the following command into the terminal.…

  • Django News App

    We can build server-side web apps using the high-level Python framework called Django. In this tutorial, we’ll look at how to use Django to build a News application. We’ll be using the News Api to retrieve all of the headline news. Visit news api to learn more about the api. The powerful and adaptable Django…

  • How to use F() Expression

    In this tutorial, we will learn about the query expression, the F expression, and how to use it in the QuerySet. Let’s have a brief introduction to Query Expressions. What is query expression? Query expression signifies the value or a computational that can be a part of an update, create, filter, order by, annotation or…

  • How to connect MySQL to Django

    The Database is the essential component of the web application to store and organize the data. Whenever we develop an application/website, we need to choose a suitable database that makes it more interactive. Django comes with a built-in SQLite database. However, we can use the various databases in Django. Below are the lists of databases…

  • Django Shortcuts

    Django shortcuts module is a collection of helper functions that are generally used in view function/classes. There are many shortcuts available in module django.shortcuts. In other words, these function /classes introduce controlled coupling for convenience’s sake. render() It combines a given template with a dictionary and returns the HttpResponse object with that rendered text. Following is the syntax…

  • How to use Django Widget Tweaks

    Django provides a simple way to create the form. There are multiple ways to create the forms, but Django built-in form is strongly recommended. Because it will automate a good amount of work and provide stable and secure functionality. But the problem with the Django built-in form is that it doesn’t allow easily let us…