This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |