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.
Source Code: Automate Google Sheets Autofilter with Sheets API in Python
Buy Me a Coffee? Your support is much appreciated! PayPal Me: https://www.paypal.me/jiejenn/5 Venmo: @Jie-Jenn Source Code: Adding a filter request_body = { 'requests': [ { 'setBasicFilter': { 'filter': { 'range': { 'sheetId': 0,...
Source Code: Embed Hyperlink in QTextBrowser 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, QWidget, QPushButton, QVBoxLayout, QTextBrowser from...
Source Code: Increase QCheckBox Indicator size | PyQt5 Tutorial
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, QCheckBox, QHBoxLayout class AppDemo(QWidget):...
Source Code: Update QCheckBox Widget Visual Properties When Hovering | PyQt5 Tutorial
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, QCheckBox, QHBoxLayout class AppDemo(QWidget):...
Source Code: Organize Widgets in a GroupBox | PyQt5 Tutorial
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 data import d from PyQt5.QtWidgets import QApplication, QWidget, QCheckBox, QGroupBox,...
Source Code: How to Sort QListWidget Numeric Values Correctly | PyQt5 Tutorial
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 random from PyQt5.QtWidgets import QApplication, QWidget, QListWidget, QListWidgetItem,...
Source Code: Detect Mouse Click Signal 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, QPushButton, QVBoxLayout from PyQt5.QtCore import Qt...
Source Code: Download Multiple Historical Stock Data From Yahoo Finance To Excel Using Python
Buy Me a Coffee? Your support is much appreciated! PayPal Me: https://www.paypal.me/jiejenn/5 Venmo: @Jie-Jenn Source Code: import time import datetime import pandas as pd tickers = ['TSLA', 'TWTR', 'MSFT', 'GOOG', 'AAPL'] interval = '1d'...
Source Code: How to upload and replace files in Google Drive with Python and Drive API
Buy Me a Coffee? Your support is much appreciated! PayPal Me: https://www.paypal.me/jiejenn/5 Venmo: @Jie-Jenn Source Code: from googleapiclient.http import MediaFileUpload from Google import Create_Service CLIENT_SECRET_FILE =...
Source Code: Creating a Tip Calculator App Using 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 PyQt5.QtWidgets import QApplication, QWidget, QPushButton, QLabel, QLineEdit, QTableWidget, QTableWidgetItem, QHeaderView, \...
