Category Python Modules

Modules is one of the best feature of Python. Except some core modules, you can install what you need and keep your Python setup smooth.

Send Emails Using Django

Django Send Email

In this article, we will learn to send emails using Django to users automatically via the Django mail library, an extension of the smtplib module of Python. What is SMTP? SMTP server stands for Simple Mail Transfer Protocol, which is…

Django Form Validation

In this article, we will learn about the Built-In Django Form Validation offered as well as the Django Custom Form Validations. Prerequisites for Django Form Validation Before moving forward with Form Validation, you will need to know what Django forms…

Top 5 Best Python GUI Libraries

Top 5 Python GUI Libraries

In this article, we will go through the top 5 Python GUI libraries that you can use in your projects. Keep reading to find out about them. What is a GUI? A GUI or a graphical user interface is an…

Django Logging – A Quick Set-Up Guide

Django LOGGING

In this article we will learn all about logging in Django logging!! Why does logging matter? Being a programmer, we write lots of code and hence will also end up having lots of errors. Now it is very time-consuming to…