Skip to content

Instantly share code, notes, and snippets.

@alexfazio
alexfazio / firecrawl_funding_db_demo.ipynb
Last active September 15, 2025 08:18
firecrawl_funding_db_demo.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@TheMuellenator
TheMuellenator / main.py
Last active November 19, 2025 07:56 — forked from angelabauer/main.py
Day 38 L291 - Solution: Authenticate Your Sheety API
#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,