Mar 16, 2021 | Matplotlib, Python
Buy Me a Coffee? Your support is much appreciated! PayPal Me: https://www.paypal.me/jiejenn/5 Venmo: @Jie-Jenn import numpy as np import matplotlib.pyplot as plt def format_number(data_value, indx): if data_value >= 1_000_000: formatter =...
Mar 16, 2021 | PyQt5, Python
Buy Me a Coffee? Your support is much appreciated! PayPal Me: https://www.paypal.me/jiejenn/5 Venmo: @Jie-Jenn import sys from PyQt5.QtWidgets import QApplication, QWidget, QMenu, QListWidget, QVBoxLayout from PyQt5.QtCore import QEvent, Qt class MyApp(QWidget):...
Mar 9, 2021 | Google Sheets API, Python
In this tutorial, we are going to learn how to export data to Google Sheets from Microsoft SQL Server using Python. Buy Me a Coffee? Your support is much appreciated! PayPal Me: https://www.paypal.me/jiejenn/5 Venmo: @Jie-Jenn from Google import Create_Service #...
Mar 7, 2021 | PyQt5, Python
Buy Me a Coffee? Your support is much appreciated! PayPal Me: https://www.paypal.me/jiejenn/5 Venmo: @Jie-Jenn import sys import time from PyQt5.QtWidgets import QApplication, QWidget, QProgressBar, QPushButton, QVBoxLayout class AppDemo(QWidget): def...
Mar 7, 2021 | PyQt5, Python
Buy Me a Coffee? Your support is much appreciated! PayPal Me: https://www.paypal.me/jiejenn/5 Venmo: @Jie-Jenn import sys import os from PyQt5.QtWidgets import QApplication, QWidget, QComboBox, QPushButton, QFileDialog, QVBoxLayout class MyApp(QWidget): def...
Mar 7, 2021 | Google Sheets API, Python
In this tutorial, we are going to learn how to import data to Microsoft SQL Server from Google Sheets using Python. Buy Me a Coffee? Your support is much appreciated! PayPal Me: https://www.paypal.me/jiejenn/5 Venmo: @Jie-Jenn import pandas as pd # pip install pandas...