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 Key Stroke Detector App with PyQt5
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, QWidget, QKeySequenceEdit, QPushButton, QHBoxLayout from PyQt5.QtGui import QKeySequence...
Create an instant search feature to search data in your table in PyQt5
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, QWidget, QLineEdit, QTableView, QHeaderView, QVBoxLayout from PyQt5.QtCore import Qt,...
Google Calendar API in Python | Getting Started (Lesson #1)
Google Calendar, a very popular Google product millions of people use to track their events. Using Google Calendar API, we can automate or integrate Google Calendar with different apps for differnet purposes. You can use the Google Calendar API to find and view public...
Embed Matplotlib Graph in a PyQt5 application
Buy Me a Coffee? Your support is much appreciated! PayPal Me: https://www.paypal.me/jiejenn/5 Venmo: @Jie-Jenn Source Code: import sys import numpy as np import matplotlib.pyplot as plt from matplotlib.backends.backend_qt5agg import FigureCanvasQTAgg as FigureCanvas...
Display images in QTreeView widget in PyQt5
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, QMainWindow, QTreeView from PyQt5.QtCore import Qt from PyQt5.QtGui import QFont, QColor,...
Google Drive API in Python | Getting Started (Lesson #1)
Google Drive API allows you to create apps that leverage Google Drive cloud storage. You can develop applications that integrate with Google Drive, and create robust functionality in your application using Google Drive API. Check out Kite (free AI Coding Assistant) →...
Create a Pandas DataFrame editor with PyQt5
In this PyQt5 video, we are going to build a customized Pandas DataFrame editor to update a DataFrame dataset. Pros: - We can implement customized validations. - Easier to view the data. - Make data entry or data update task easy. - Doesn't require a lot of code Cons:...
Create a popup Window for a QListWidget item in PyQt5
In this PyQt5 tutorial, we are going to create a very basic window widet specifically for a QListWidget item (aka QListWidgetItem object). Buy Me a Coffee? Your support is much appreciated! PayPal Me: https://www.paypal.me/jiejenn/5 Venmo: @Jie-Jenn Source Code:...
How to enable and disable a QListWidget Item in PyQt5
In this PyQt5 tutorial, we are going to learn how to enable and disable a QListWidget item. 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,...
How to implement auto closing bracket feature in PyQt5
Auto-closing or self-closing, are some of the terms to describe when you insert a character (starting tag) that has a matched pair such as (, [, {, ", the feature will automatically insert the closing tag for you. In this# PyQt5 tutorial, we are going to learn how to...