Posts by Anand Jaiswal

Author Biographical Info: Not available

Upload file to a specific folder in Django

By Anand Jaiswal

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

Create PDF file in Django Dynamically

By Anand Jaiswal

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

How to change Timezone in Django

By Anand Jaiswal

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

How to call an external JavaScript function in a Django template

By Anand Jaiswal

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

Redirect with parameters in Django

By Anand Jaiswal

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

How to Get the User IP Address using Django

How to Get the User IP Address using Django

By Anand Jaiswal | March 12, 2022

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

How to enable CORS headers in Django

By Anand Jaiswal

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

Exclude one or multiple objects from Django Queryset

By Anand Jaiswal

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

Related Posts