Tag: django
Post Method In Django REST Framework
Last updated on 20th December 2022 by Madderla Saikumar | Category: Django Tutorial
Django REST framework (DRF) is a powerful and flexible toolkit for building web APIs. In this tutorial, we’ll learn how to build a CRUD API in just 15 minutes using the Django REST framework. To build our sample to-do list application, we’ll start by setting up the Django REST framework in a Django project, followed […]
Get Method in Django REST Framework
Last updated on 16th December 2022 by Madderla Saikumar | Category: Django Tutorial
Django REST framework (DRF) is a powerful and flexible toolkit for building web APIs. In this tutorial, we’ll learn how to build a CRUD API in just 15 minutes using the Django REST framework. To build our sample to-do list application, we’ll start by setting up the Django REST framework in a Django project, followed […]
Admin Page Customization In Django
Last updated on 12th December 2022 by Madderla Saikumar | Category: Django Tutorial
The Django framework comes with a powerful administrative tool called admin. You can use it out of the box to quickly add, delete, or edit any database model from a web interface. But with a little extra code, you can customize the Django admin to take your admin capabilities to the next level In this tutorial we are going […]
How to use HTML pages in Django
Last updated on 6th December 2022 by Madderla Saikumar | Category: Django Tutorial
We are going to explore how to render the HTML templates in Django using Templates folder. Django is written in Python and is different than how things work in say PHP for example. In PHP we can mix PHP with HTML to output web pages. Django and Python work a little differently. In Django, we […]
How to enable 2FA in the Django admin
Last updated on 15th November 2022 by Madderla Saikumar | Category: Django Tutorial
Now a days everyone has a smartphone, this type of 2FA setup is basically now free and accessible to everyone. You can easily install a 2FA client app like Google Authenticator or Twilio Authy on your phone. Many websites also now support it and will probably become more and more common as it does improve security significantly. On the server […]
How To Access Pc Django Server In Android
Last updated on 7th November 2022 by Madderla Saikumar | Category: Django Tutorial
Django is an extremely popular and fully featured server-side web framework, written in Python. This module shows you why Django is one of the most popular web server frameworks, how to set up a development environment, and how to start using it to create your own web applications Django server is mostly run on computers but when […]
Django Form Template Layout
Last updated on 7th October 2022 by Varsha | Category: Django Tutorial, Python Tutorial
In this tutorial, we will attempt to comprehend how to use HTML Forms in Django to create forms that collect user information and produce a simple template layout. A form in HTML is a collection of components contained within the <form> tag. These components enable the user to enter values, selection options, and other information, […]
Simple YouTube video downloader using Django
Last updated on 1st November 2022 by Madderla Saikumar | Category: Django Tutorial
Hello Coders! This tutorial will show you how to create a sample application that downloads YouTube videos. We Can do this by a small project through python and Django.YouTube Video downloader provides a GUI interface for cli based yt-downloader library for Linux systems. It has all features such as YTD or any other popular video […]
How To Migrate File In Django
Last updated on 25th September 2022 by Madderla Saikumar | Category: Django Tutorial
Python’s Django web framework Django abstracts away much of the complexity when building web applications. One of its key features is to dynamically interact with a given database on a user’s behalf and takes care of many low-level functions that can slow the development process . What is migrations in Django Migrations are Django’s way of propagating […]
How to create Weather App in Django?
Last updated on 13th July 2022 by Labdh Purohit | Category: Django Tutorial
In this Tutorial, We will create Weather app in Django using OpenWeatherMap’s Weather API(Application Programming Interface). This API is free and fastest API from OpenWeatherMap. This API will give us the access of Weather Data. Weather API’s free plan allow users up to 60 calls per minute. For GitHub Repository Scroll Down. Installation First, We […]