Skip to content

Instantly share code, notes, and snippets.

@rapatil
rapatil / Automating Salesforce Data Extraction Using Python.ipynb
Last active September 6, 2024 20:36
Approach: Automating Salesforce Data Extraction Using Python
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@RamonWill
RamonWill / TkinterExcel.py
Last active April 4, 2024 13:49
The code from my video on how to view an excel file or Pandas Dataframe inside Tkinter (with comments)
# Youtube Link: https://www.youtube.com/watch?v=PgLjwl6Br0k
import tkinter as tk
from tkinter import filedialog, messagebox, ttk
import pandas as pd
# initalise the tkinter GUI
root = tk.Tk()