Categories
Python

How to Use Python SimpleHTTPServer

The main task of the webserver is to handle the HTTP requests from the client. It waits for the HTTP […]

Categories
Python

Web Scraping with Python – How to Scrape Data from Twitter using Tweepy and Snscrape

If you are a data enthusiast, you’ll likely agree that one of the richest sources of real-world data is social […]

Categories
Python

Run Python Script – How to Execute Python Shell Commands in the Terminal

When you’re starting out learning a new programming language, your very first program is likely to be one that prints […]

Categories
Python

Python While Loop Tutorial – Do While True Example Statement

Loops are a sequence of instructions executed until a condition is satisfied. Let’s look at how while loops work in […]

Categories
Python

How to Get the Current Time in Python with Datetime

In your Python applications, you might want to work with time to add functionalities like timestamps, check the time of […]

Categories
Python

How to Use PyScript – A Python Frontend Framework

Python has grown in popularity immensely in recent years. It has a wide range of applications, from its most popular […]

Categories
Python

How To Install Python 3 and Set Up a Programming Environment on an Ubuntu 20.04 Server

Introduction The Python programming language is an increasingly popular choice for both beginners and experienced developers. Flexible and versatile, Python […]

Categories
Python

How To Set Up uWSGI and Nginx to Serve Python Apps on Ubuntu 14.04

Introduction In this guide, we will be setting up a simple WSGI application served by uWSGI. We will use the […]

Categories
Python

How To Serve Flask Applications with Gunicorn and Nginx on Ubuntu 22.04

A previous version of this tutorial was written by Kathleen Juell. Introduction In this guide, you will build a Python […]

Categories
Python

Break in Python – Nested For Loop Break if Condition Met Example

Loops in programming let us execute a set of instructions/block of code continuously until a certain condition is met. We […]