Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tomwalczak/fastapitest
https://github.com/tomwalczak/fastapitest
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/tomwalczak/fastapitest
- Owner: tomwalczak
- License: mit
- Created: 2023-02-20T14:40:09.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-20T14:40:11.000Z (almost 2 years ago)
- Last Synced: 2024-12-16T07:28:49.845Z (about 2 months ago)
- Language: Python
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
---
title: FastAPI
description: A FastAPI server
tags:
- fastapi
- python
---# FastAPI Example
This example starts up a [FastAPI](https://fastapi.tiangolo.com/) server.
[![Deploy on Railway](https://railway.app/button.svg)](https://railway.app/new/template/-NvLj4?referralCode=milo)
## ✨ Features- FastAPI
- Python 3## 💁♀️ How to use
- Deploy using the button 👆
- Clone locally and install packages with Pip using `pip install -r requirements.txt` or Poetry using `poetry install`
- Connect to your project using `railway link`
- Run locally using `uvicorn main:app --reload`## 📝 Notes
- To learn about how to use FastAPI with most of its features, you can visit the [FastAPI Documentation](https://fastapi.tiangolo.com/tutorial/).
- FastAPI provides automatic documentation to call and test your API directly from the browser. You can access it at `/docs` with [Swagger](https://github.com/swagger-api/swagger-ui) or at `/redoc` with [Redoc](https://github.com/Rebilly/ReDoc).