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.

Complete Basics of the Django Admin Site

Django Admin Site

Django comes with a very powerful admin interface. This takes up the information regarding models from models.py and reverts back a quick-simple model-centric interface. In the admin interface, the users can interact with the Model table and perform tasks like…

Tkinter Messagebox and RadioButton: A brief start

Tkinter Messagebox And Radiobutton

In this article, we will look into the Tkinter Messagebox and Radiobutton widgets of Tkinter. The tkinter package (“Tk interface”) is the standard Python interface to the Tk GUI toolkit. It improves the user interface of Python application as well…

Data Visualization using Python Bokeh

Data Visualization Using Bokeh

In this article, we will be looking into data visualization using Python Bokeh. Bokeh allows users to take in data in any format such as CSV, JSON, hard-coded data, or databases. We can create scatter plots, line charts, etc using…

Django Views – A Beginners Guide

Django Views

In this tutorial, we are going to discuss more on the Django views and what types of views we can have for our webpage. Also, we will get more information about what exactly we did in the views.py in our…

Multithreading in Python: An Easy Reference

Multithreading In Python

Multithreading in Python is a way of achieving multitasking in python using the concept of threads. What is a Thread? A thread is a component of any process managed by the operating system. The OS achieves parallelism or multitasking by…