Posts by Aditi Deo
Author Biographical Info: Not available
For any website, it is essential to authenticate the user to verify their identity. Therefore, in this tutorial, we will learn to setup login and registration system using MySQL in.... Read More
Django provides a default database called SQLite which is an inbuilt database. But sometimes we might choose to connect popular databases such as MySQL to the Django framework to m.... Read More
Sometimes, packages in Python can get outdated so there is a need to update the packages. Also for security and performance issues, we need to update the packages so that we can fi.... Read More
Models in Django are objects that have specific attributes and functions. They are used to represent and manage data in the database. Using Django we can easily create, update, o.... Read More
In many situations, we need to generate random boolean values in Python. It is similar to flipping a coin to get either heads or tails. We need random values to generate test cases.... Read More
Sometimes, we can have huge Excel or CSV files with many rows and columns. In this case, loading such files directly in Python can cause the interpreter to crash. Thus, we can make.... Read More
Suppose whenever a user registers himself to a given website, we want the user profile to be automatically created. Or consider when a user profile is deleted, we want to notify th.... Read More
It is not easily possible for humans to read the various kinds of JSON data that are available on the internet. Therefore, Python has provided several libraries and methods through.... Read More