Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 544 Bytes

File metadata and controls

13 lines (11 loc) · 544 Bytes

FastAPI Study

  • Create an API with FastAPI, where, using requests for simulate a request in API previously made available.
  • Using FastAPI for make available the infos of request.

Using the project

  1. Create a Virtual Ambient with python -m venv name_of_ambient
  2. Install dependencies contained in requirements.txt
    • pip3 install requests
    • pip3 install uvicorn
    • pip3 install fastapi
  3. Initialize the project with uvicorn main:app --reload

This project was built using the Alura platform.