Skip to content

enguy-hub/fastapi_basictutorial

Repository files navigation

Using FastAPI to Build Python Web APIs - Tutorial Blog from RealPython

Repository for the Using FastAPI to Build Python Web APIs tutorial blog on RealPython written by FastAPI's creator tiangolo

Try It Out

1. Clone the repo

  • HTTP:

    git clone https://github.com/enguy-hub/fastapi_basictutorial.git
    
  • SSH

    git clone ssh://git@github.com:enguy-hub/fastapi_basictutorial.git
    

2. Create and activate Python environment (conda or venv)

  • For CONDA

    • Create the environment with:

      conda env create --file env.yml
      
    • Activate the environment with:

      conda activate fastapienv
      
  • For VENV

    • Create the environment with:

      python3 -m venv fastapienv
      
    • Activate the environment with:

      source fastapienv/bin/activate
      
    • Install the dependencies with:

      pip install -r requirement.txt
      

3. Spin up FastAPI

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages