Posts by Anand Jaiswal
Author Biographical Info: Not available
In this tutorial, we will learn how to upload a file to a specific folder using Django. Steps to Follow: Create a project and start an app. Create a forms.py file in the app. Creat.... Read More
In this tutorial, we will learn how to create dynamic PDF in Django. Steps to follow: 1. Start your Django project. 2. Start your app inside the project named codespeedy. 3. Define.... Read More
In this tutorial, we will learn how to change or set timezones in Django. In the new version of Django, it’s very easy to change the timezone. In settings.py of your project,.... Read More
In this tutorial, we will learn how to call an external javascript function in a Django template. Steps to perform this task:- Create Project Start an app Create an HTML file Creat.... Read More
In this tutorial, we will discuss how to redirect with parameters in Django. To know more about Redirect click on the given link – Redirect in Django Redirect With Parameter.... Read More
In this tutorial, we will learn how to get the user’s IP address using Django. To understand this let’s learn about IP-Address. Find IP Address in Django The IP address is the address that distinguishes one network on the internet from another. IP Address or Internet Protocol Address. It is a unique identifier that is […] Read More
In this, we will discuss how to enable CORS headers in Django. What is CORS? CORS stands for Cross-Origin Resource Sharing. CORS is a mechanism that enables interaction with resour.... Read More
In this tutorial, we will learn how to exclude one or multiple objects from Django Queryset. To learn more about Querysets click on the link given below:- What is Django QuerySet a.... Read More