Skip to content

Instantly share code, notes, and snippets.

View oddrationale's full-sized avatar

Dariel Dato-on oddrationale

View GitHub Profile
@raveenb
raveenb / fastapi_inside_jupyter.md
Last active April 16, 2025 12:35
Run FastAPI inside Jupyter

How to Run FastAPI inside Jupyter

  • Ensure you have these installed and accessible from the notebook pyngrok, nest_asyncio, fastapi, uvicorn and other libs you want
%pip install pyngrok nest_asyncio fastapi uvicorn loguru
  • Create a FastAPI app
from fastapi import FastAPI