Skip to content

Instantly share code, notes, and snippets.

@JanCoet
JanCoet / main.py
Created May 22, 2024 07:55 — forked from TheMuellenator/main.py
Solution for main.py for the Flight Club
import sheety
print("Welcome to Angela's Flight Club.\n \
We find the best flight deals and email them to you.")
first_name = input("What is your first name? ").title()
last_name = input("What is your last name? ").title()
email1 = "email1"
email2 = "email2"
@JanCoet
JanCoet / sheety.py
Created May 22, 2024 07:54 — forked from angelabauer/sheety.py
Solution for sheety.py for the Flight Club project
import requests
import os
BEARER = os.getenv("API_Bearer_Sheety_Repl.it")
USERNAME = os.getenv("API_Username_Sheety")
PROJECT = "flightDealsUsers"
SHEET = "users"
base_url = "https://api.sheety.co"