"OIM3640: GitHub settings"
if...elif...else
for
while
dict
person = {'name': 'Guido', 'age': 69 } print('Guido' in person)
'age'
person
'country'
'city': 'Belmont, CA'
list
tuple
set
data
Pride and Prejudice.txt
session16
analyze_book.py
An API is a set of protocols, tools, and standards for building software applications, that allows different applications to communicate with each other.
Example: Let's say you want to know the current price of Bitcoin
weather.py
OIM3640/resources/code
urllib.request
.env
OPENWEATHER_API_KEY=...
python-dotenv
python -m pip install python-dotenv
import os from dotenv import load_dotenv load_dotenv() APIKEY = os.getenv("OPENWEATHER_API_KEY")
.gitignore
What is an API? In English, please.
Rapid API Comics
YouTube - What is an API and how does it work? (In plain English)