Categories

Web DevelopmentProgrammingDatabaseWindowsLinuxNetworkingMobile DevicesRaspberry PiPythonCJavaOtherSponsored

PYTHON Articles

Selecting, Slicing and Filtering data in a Pandas DataFrame

This article demonstrates how to select, subset and slice, index a Pandas DataFrame by row and column labels, by index position and using boolean conditions.

Python script to find files that contain a text string

Python program to search a text string in all files of a specified filetype in a directory.

Python script to ping all IP addresses in a network.

A simple and powerful Python script for network administrators to monitor the devices on a network by pinging every IP address on a subnet.

Python script to compare two text files

A simple python script to compare two text files line by line and output only the lines that are different.

Writing data from a Pandas Dataframe to a MySQL table

This article shows you how to write the data in a Pandas DataFrame to a MySQL table using the to_sql() function and SQLAlchemy toolkit.

Interacting with Jira using Python and REST API

Developers can create scripts/programs using Python and Jira REST API to access resources such as projects, issues, comments, users etc., from Jira Cloud and Server Platforms.

Data visualization in Jupyter Notebook using Pandas

This tutorial shows you how to visualize your data in Jupyter Notebook with the help of two Python libraries - Pandas and Matplotlib.

Using Dialects when reading and writing CSV in Python

Understand various CSV dialects in Python for reading and writing CSV files using the CSV module, discover options for managing and customizing dialects

Python Web scrapping - Step-by-Step guide and Example script

Web scraping with Python - Step-by-step guide on creating your first Python script to scrape a website.

Reading and Writing JSON data in Python

This article demonstrates how to read data from a JSON string or file and similarly how to write data in JSON format using json module in Python.