"OIM3640: GitHub settings"
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)
schedule
--- # Revisit [Quiz 4](https://gist.githubusercontent.com/lzblack/b9a66123d2fe51aa084d959ebcedb903/raw/b7fbfcab2043105b0021ed6bec1d519c5d1e6ccb/quiz4.py)