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
Copy videos from any YouTube playlist to your own playlist with Python and YouTube API
In this Python tutorial, we are going to learn how to use YouTube Data API to copy videos from any YouTube playlist (can be your own, other channels' playlist) to your own YouTube playlist. Buy Me a Coffee? Your support is much appreciated! PayPal Me:...
Keyboard Shortcut Assignment
In this PyQt5 tutorial, I want to revisit the topic "How to assign keyboard shortcuts" in more detail and with few more examples. Buy Me a Coffee? Your support is much appreciated! PayPal Me: https://www.paypal.me/jiejenn/5 Venmo: @Jie-Jenn Source Code: import sys...
Create hyperlinks | PyQt5 Tutorial
In this PyQt5 tutorial, we will learn how to create hyperlinks using QLabel widget. Buy Me a Coffee? Your support is much appreciated! PayPal Me: https://www.paypal.me/jiejenn/5 Venmo: @Jie-Jenn Source Code: import sys from PyQt5.QtWidgets import QApplication,...
Change QListWidget item color | PyQt5 Tutorial
In this PyQt5 tutorial, we will learn how to change QListWidget item font color using few lines of code in Python. Buy Me a Coffee? Your support is much appreciated! PayPal Me: https://www.paypal.me/jiejenn/5 Venmo: @Jie-Jenn Source Code: import sys from...
Reading Data From Google Sheets | Google Sheets API in Python (Part 4)
From last Google Sheets API in Python lesson, we learned how to write data to Google Sheets using Google Sheets API. In this lesson, we will be learning how to use Google Sheets API to read data from a Google Sheets file in Python. Buy Me a Coffee? Your support is...
Writing Data To Google Sheets | Google Sheets API in Python (Part 3)
From the last lesson, we learned how to create a new Google Sheets file using Google Sheets API. In this lesson, we are going to learn how to write data to existing worksheets. Buy Me a Coffee? Your support is much appreciated! PayPal Me:...
Creating Google Sheets File | Google Sheets API in Python (Part 2)
In part 2 of the Google Sheets API in Python series, we will learn how to use Google Sheets API to create a Google Sheets file along with configuring some useful default settings such as auto-calculation setting, time zone, default worksheets. Buy Me a Coffee? Your...
Getting Started | Google Sheets API in Python (Part 1)
Google Sheets API is one of the most useful and versatile Google APIs currently, giving the Sheets API is on version 4, the API has evolved coming from a long way. At the same time, because there are so many layers and properties involved, the Sheets API can take a...
Add, Copy, Remove Rows on a table widget | PyQt5 Tutorial
In this PyQt5 tutorial, I will be showing you how to add, copy, and remove rows on a QTableWidget. Buy Me a Coffee? Your support is much appreciated! PayPal Me: https://www.paypal.me/jiejenn/5 Venmo: @Jie-Jenn Source Code: import sys from PyQt5.QtWidgets import...
How to pass data from one window to another | PyQt5 Tutorial
In this PyQt5 tutorial, we are going to learn how to pass information from one window to another. Buy Me a Coffee? Your support is much appreciated! PayPal Me: https://www.paypal.me/jiejenn/5 Venmo: @Jie-Jenn Source Code: import sys from PyQt5.QtWidgets import...