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.

An introduction to Django Forms

Django Forms

Django Forms are a way to accept user input as text, images, or files from the web frontend. The straightforward example of forms that we came across was the Django admin site’s login page. Admin site took input text “username”…

Introduction to Django Static Files

Django Static Files

In our last article, we discussed Django templates. Now in this article, we are going to learn about another similar topic of Django static files. So now, if you go to any website, let’s say facebook.com, then you will see…

Tkinter Checkbox: An Easy Reference

Tkinter Checkbox

A tkinter checkbox can be created using the tkinter checkbutton widget. It allow users to select multiple options or choices from a number of different options. They are different from a radio button because in a radio button users can…