Running Python Django Project in Windows Operating System with .bat File
When developing projects with Django, the constant and annoying work is to restart the project. In this post, if you are a Windows user, you can easily run your project by creating a .bat file on your desktop. I use
Real-Time Application Development Using Websocket in Django
WebSocket is a computer communication protocol that provides a full duplex communication channel over a single TCP connection. All internet browsers have supported Websockets since 2011. Application development with Websocket is a popular topic. However, when developing a web application,
Importing and Exporting Data in Different Formats such as Excel, CSV, JSON in Django Applications
When we develop web applications with Django, we want to transfer our data to the database or to get the data from the database in a tabular form in different formats. The django-import-export library is a package that makes this
How to Make Dynamic Dropdown List with Ajax in Python Django?
In Django projects, we may have data like categories and subcategories. We can present this data in forms with drop-down lists in the user interface. In this post, I will explain how to dynamically get subcategories from server with ajax
Creating Custom 404 Page in Python Django
When we develop a web application with Django, the user may enter a url that does not exist. In this case, Django will present the user with a standard 404 page that is not stylish. Instead, we can create custom