Skip to content

Instantly share code, notes, and snippets.

View ibis-equity's full-sized avatar

ibis-equity ibis-equity

View GitHub Profile
@ibis-equity
ibis-equity / app.py
Created January 21, 2026 15:40 — forked from WxBDM/app.py
A very basic REST API - Python Snacks
# To run this application, you'll need to install 3 packages:
# pip install pandas
# pip install fastapi
# pip install uvicorn
# In the command line to run the application, type `uvicorn app:app --reload`
# Note: if using uv:
# uv bare --init
# uv add pandas fastapi uvicorn
# uv run uvicorn app:app --reload