Sep 29, 2021 | Azure Cloud, Python
Part 2: Form Table Extraction Buy Me a Coffee? Your support is much appreciated! Source Code: import json from azure.core.exceptions import ResourceNotFoundError from azure.core.credentials import AzureKeyCredential from azure.ai.formrecognizer import...
Sep 25, 2021 | PyQt5, PyQt6, Python
Buy Me a Coffee? Your support is much appreciated! Source Code: import sys from PyQt6.QtWidgets import QApplication, QWidget, QLineEdit, QPushButton, \ QGridLayout, QVBoxLayout class MyApp(QWidget): def __init__(self): super().__init__() self.layout =...
Sep 25, 2021 | PyQt5, PyQt6, Python
Buy Me a Coffee? Your support is much appreciated! Source Code: import sys from PyQt5.QtWidgets import QApplication, QWidget, \ QHBoxLayout, QVBoxLayout from PyQt5.QtCore import Qt, QPoint class MyApp(QWidget): def __init__(self): super().__init__()...
Sep 14, 2021 | Azure Cloud, Python
Buy Me a Coffee? Your support is much appreciated! Source Code: import json import azure.cognitiveservices.speech as speech API_KEY = ‘<API_KEY>’ ENDPOINT = ‘<ENDPOINT>’ media_file_path = ‘<audio file...
Sep 14, 2021 | Pandas, Python
Buy Me a Coffee? Your support is much appreciated! PayPal Me: https://www.paypal.me/jiejenn/5 Venmo: @Jie-Jenn Source Code: import pandas as pd import matplotlib.pyplot as plt df = pd.read_csv(‘data.csv’) df =...
Sep 13, 2021 | Python, Web Scraping
Buy Me a Coffee? Your support is much appreciated! PayPal Me: https://www.paypal.me/jiejenn/5 Venmo: @Jie-Jenn Source Code: import datetime import requests from bs4 import BeautifulSoup import pandas as pd # url =...