Python Tutorial
Python is a verstile programming language that has gained a lot of attention and popularity. Using Python, you do things like develop web applications, desktop applications, task automation, artificial intelligence (AI), big data, data analytics, machine learning (ML), and many other things.
Python is really becoming as the leader in data science and data analytics. With so many open source libraries to choose from (Pandas, s
Create a Python Program to Track USPS Package Shipping Status
If you are a company or an individual who frequently shipping stuffs with United States Postal Service (USPS) then knowing how to create a program to automatically tracking packages for you might help ease some of the pain when you have to manually typing the tracking...
Read and Export a Dictionary Variable From and To a JSON file
If you write programs in Python, more likely than not, at one point you will have to either write a dictionary to a JSON file or read a dictionary from a JSON file. Fortunately, reading and dumping JSON files are super easy in Python. In this tutorial I will show you...
Renaming Multiple Files In Bulk With Sequence Numbers Assigned
Knowing how to renaming files and assign sequence number can be something very useful. In this tutorial we will learn how to use Python and the OS module to automate the file renaming task.
Matplotlib Lasso Selector Widget Demo
The Matplotlib's Lasso Selector widget lets you to make a s selection curve of an arbitrary shape.In this tutorial we will take an example of how to use the Lasso Selector Selector widget.
Automate Excel with Python and XlsxWriter Part 4: Writing Different Data Type
XlsxWriter is a Python module for creating Excel XLSX files. That means, the module will work with Excel 2007 and later. And unlike some other Python libraries and modules such as xlwings and win32com that only work on Windows, XlsxWriter is compatible with Mac OS and...
Automate Excel with Python and XlsxWriter Part 3 : Format Data
XlsxWriter is a Python module for creating Excel XLSX files. That means, the module will work with Excel 2007 and later. And unlike some other Python libraries and modules such as xlwings and win32com that only work on Windows, XlsxWriter is compatible with Mac OS and...
Automate Excel with Python and XlsxWriter Part 2: Create a Table
XlsxWriter is a Python module for creating Excel XLSX files. That means, the module will work with Excel 2007 and later. And unlike some other Python libraries and modules such as xlwings and win32com that only work on Windows, XlsxWriter is compatible with Mac OS and...
Create Excel File With XlsxWriter in Python Part 1: Getting Started
XlsxWriter is a Python module for creating Excel XLSX files. That means, the module will work with Excel 2007 and later. And unlike some other Python libraries and modules such as xlwings and win32com that only work on Windows, XlsxWriter is compatible with both Mac...
Automatically Resize Buttons with PyQt5 in Python
PyQt5 is a Python library lets you build different types of graphical user interface (GUI) based on the Qt GUI framework written in C++.Recently I got an email from a subscriber asking how do you automatically resize the buttons when a user change the window size.In...
How to Generate QR Code with Python
QR Code (Quick Response code), is a two-dimensional version of the vertical line stripe bar code that you see from retail packaging. QR Code provides quick access to access different type of information in the code QR Code is pretty widely use in almost all industries...