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.
Create a Python App To Navigate Python Modules
pyNavigator.py Check out Kite (free AI Coding Assistant) → Link theme CSS style file
Extract YouTube Video Info using YouTube Data 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:
Building a YouTube Comment Extractor app using Python (Based on PyQt5)
extractor_window.py (PyQt5 GUI) comment_extractor.py Google.py License
Google Geocoding API Tutorial For Python
Buy Me a Coffee? Your support is much appreciated! PayPal Me: https://www.paypal.me/jiejenn/5 Venmo: @Jie-Jenn Source Code:
Make Button Flashing | PyQt5 Tutorial
Buy Me a Coffee? Your support is much appreciated! PayPal Me: https://www.paypal.me/jiejenn/5 Venmo: @Jie-Jenn Source Code:
Salesforce API in Python | Download Attachments
Source Code: from pprint import pprint import json import os import requests import pandas as pd from simple_salesforce import Salesforce, SalesforceLogin, SFType username = '<username>' password = '<password>' security_token = '<security_token>'...
Web Scraping NBA Player of the Week Table with Python and BeautifulSoup
Source Code: import pandas as pd import requests from bs4 import BeautifulSoup url = 'https://basketball.realgm.com/nba/awards/by-type/Player-Of-The-Week/30' # table-989 response = requests.get(url) soup = BeautifulSoup(response.content, 'html.parser') table =...
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...
