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
Web Scrapping Exercise For Beginners (Python + BeautifulSoup)
Check out Kite (free AI Coding Assistant) → Link
Download PyQt5 Module Navigation Utility
Download Link (4K version) --> Download Download Link (1080p) --> Download Source Code
How to save Matplotlib chart as MP4 file
Check out Kite (free AI Coding Assistant) → Link Source Code:
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
Check out Kite (free AI Coding Assistant) → Link 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 =...