Tag: Python Tutorial
This training is for Python Beginners and Experts. We tried you to provide best python tutorial by explaining lots of examples and videos. Python tutorial will help you to code from scratch and give good knowledge on Python Programming Language.
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 […]
KNN Algorithm in Machine Learning
Last updated on 26th November 2022 by Madderla Saikumar | Category: Data Science & ML, Machine Learning, Python Tutorial
Algorithms drive the Machine Learning world Among them, there’s an algorithm often labeled as lazy. But it’s quite a performer when it comes to classifying data points. It’s called the k-nearest neighbours algorithm and is often quoted as one of the most important machine learning algorithms. The k-nearest neighbours (KNN) algorithm is a data classification method for estimating the […]
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 […]
How to change password of superuser in Django
Last updated on 1st November 2022 by Madderla Saikumar | Category: Django Tutorial
Hello Coders! In this Blog, we will learn how to change the password of the superuser on a Django project. Django stores passwords in a complex, crypted way, and because of this, we cannot directly manipulate the password of the user. However, there are several ways to change the superuser’s password. How to create superuser […]
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 Manage SQLite Database in VS code
Last updated on 26th September 2022 by Madderla Saikumar | Category: DBMS, Django Tutorial
we face some problems while working and some among them are Handling SQLite databases and managing the database. In managing database the common problems are switching between tabs and because of complexity databases it become difficult to manage the database. The advantages of the SQLite in VS code is in the following link https://www.sqlite.org/index.html For […]
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 Crop images using Django Site
Last updated on 15th July 2022 by Madderla Saikumar | Category: Django Tutorial
Cropping images is common use case in a Web application. For example, some applications let you upload a picture for profile. In addition, it usually also let you crop image for a better result. But, when dealing with image processing we need to install a few dependencies, both in the front-end and in the back-end […]