Skip to content

Latest commit

 

History

History
45 lines (27 loc) · 1.48 KB

README.md

File metadata and controls

45 lines (27 loc) · 1.48 KB

Learning FastAPI on Hard Mode

Canberra Python:

Link to PDF Slide deck: https://drive.google.com/file/d/1UWQw4V3IbU6cm2azKfF2ohRKL5w67XW7/view?usp=sharing

Link to recording of PyConAU 2023 presentation: http://youtu.be/UlhLRp5mbrU

PyConAU 2023 talk program: https://2023.pycon.org.au/program/SBZNPD/

title.png

Credit: Geoscience Australia visualisation credit to Jonah Sullivan (cheers buddy!)

Per the instructions in the talk itself:

pip install fastapi
pip install uvicorn

uvicorn app:app --reload
INFO:  Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
INFO:  Started reloader process [28720]
INFO:  Started server process [28722]
INFO:  Waiting for application startup.
INFO:  Application startup complete.

http://localhost:8000

This is the whole thing, a self contained little repo <3

Grateful to all the people who have put in the time that lets me even use these tools and talk about this stuff.

On repo housekeeping: keeping as tidy as possible but not making a huge effort to keep repo clean, leaving a bunch of mistakes and workings in as there's not tremendous value in spending time cleaning it up once the talk is cooked.