Jan 13, 2023 | Google Vision API, Python
Buy Me a Coffee? Your support is much appreciated! Source Code import io from collections import namedtuple from PIL import Image, ImageDraw, ImageFont from google.cloud import vision def prepare_image_local(image_path): try: # Loads the image into memory with...
Jan 9, 2023 | MS Graph API, Python
Buy Me a Coffee? Your support is much appreciated! Source Code import requests from ms_graph import generate_access_token, GRAPH_API_ENDPOINT APP_ID = ‘<APP ID>’ SCOPES = [‘Mail.Send’] access_token =...
Dec 28, 2022 | Matplotlib, Python
Buy Me a Coffee? Your support is much appreciated! demo.py import numpy as np import pandas as pd import matplotlib.pyplot as plt df = pd.read_csv(‘data.csv’, index_col=0) indx_order = np.arange(df.shape[0]) averages = {} averages[‘Math...
Dec 26, 2022 | Matplotlib, Python
Buy Me a Coffee? Your support is much appreciated! demo.py import numpy as np import matplotlib.pyplot as plt # prepare the data x_data = (20, 35, 30, 25, -28) y_data = (25, 32, 35, 20, -22) n = len(x_data) x_location = np.arange(n) bar_width = 0.35 fig, ax =...
Dec 18, 2022 | Matplotlib, PyQt5, PyQt6, Python
Buy Me a Coffee? Your support is much appreciated! demo.py import sys import os from PyQt6.QtWidgets import (QApplication, QWidget, QPushButton, QTextEdit, QComboBox, QFileDialog, QHBoxLayout, QVBoxLayout) class MyApp(QWidget): def __init__(self):...