Skip to content

Instantly share code, notes, and snippets.

@TheMuellenator
TheMuellenator / main.py
Last active June 2, 2024 00:42 — forked from angelabauer/main.py
Day 38 Step 5 L335 - Solution
#No Authentication
sheet_response = requests.post(sheet_endpoint, json=sheet_inputs)
#Basic Authentication
sheet_response = requests.post(
sheet_endpoint,
json=sheet_inputs,
auth=(
YOUR USERNAME,
YOUR PASSWORD,