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, scikit-learn, NumPy, Matplotlib), learning data analysis in Python just got so much easier.
Build a Desktop App to Lookup Daily Currency Exchange Rates
In this exercise, we will be building a simple desktop application to look up today's currency exchange rates using PyQt5 and Python. This tutorial is intended for intermediate Python developers. For beginners/inexperienced Python developers, you can benefit greatly...
Create a Google Photos Upload Application From Scratch with PyQt5 and Google Photos API
In this video, I am going to share how I build a Google Photos Upload Application from scratch PROTOTYPE with PyQt5 framework and Google Photos API in Python. As someone who uses Google Photos service almost daily, I was looking for a quick solution to upload my...
Create a Python program to download file from the web | Python Tutorial
In this tutorial, we will be creating a simple Python script to download files from the web. Buy Me a Coffee? Your support is much appreciated! PayPal Me: https://www.paypal.me/jiejenn/5 Venmo: @Jie-Jenn Source Code: import requests downloadUrl =...
Web Scraping Tesla Charging Station Location Info | Python Tutorial
In this lesson, I am going to show you how to web scraping Tesla's charging station location info (address, phone number, station name) from Tesla's website with BeautifulSoup library in Python. This is an exercise suits for all level of Python developers; whether if...
Upload Media Items | Google Photos API and Python (Part 4)
In this lesson (part 4), I will go through each step on how to use batchCreate method to add media items to your Google Photos account. Buy Me a Coffee? Your support is much appreciated! PayPal Me: https://www.paypal.me/jiejenn/5 Venmo: @Jie-Jenn demo_mediaItems.py...
MediaItems Resource | Google Photos API and Python (Part 3)
In part 3 of the Google Photos API and Python tutorial series, we will be learning how to use mediaItems resource to access and manage your media item information. Buy Me a Coffee? Your support is much appreciated! PayPal Me: https://www.paypal.me/jiejenn/5 Venmo:...
Albums Resource | Google Photos API and Python (Part 2)
In part 2 of the Google Photos API and Python tutorial series, we will be learning how to use methods of Albums resource. Buy Me a Coffee? Your support is much appreciated! PayPal Me: https://www.paypal.me/jiejenn/5 Venmo: @Jie-Jenn demo_albums.py from...
Getting Started with Google Photos API and Python (Part 1)
In this Google Photos API and Python tutorial series, I will be covering how to use the Google Photos API in Python. The Photos API has 3 main resources. You can think each resource as a class for a specific purpose. And for each resource, I will make an individual...
Create and assign keyboard shortcuts to your PyQt Application | PyQt5 Tutorial
In this lesson, we are going to learn how to create and assign multiple keyboard shortcuts to your PyQt5 application in Python. The QShortcut class provides a way of connecting keyboard shortcuts to Qt's signals and slots mechanism, so that objects can be informed...
Example of how to create chart animation with matplotlib in Python #2 | Matplotlib tutorial
In this lesson, we are going to do another exercise how to create chart animation using matplotlib in Python. Buy Me a Coffee? Your support is much appreciated! PayPal Me: https://www.paypal.me/jiejenn/5 Venmo: @Jie-Jenn Python Code import numpy as np import...
