LuisLuii /
fastapi-crud-template-generator
This is a code generator that allows you to use SQLAlchemy schema to quickly build a FastApi project template with CRUD Api routers and validation models.
62/100 healthLoading repository data…
antonio-pedro99 / repository
This project is just a showcase on how to use Python as backend for flutter application and deploy them using heroku.
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
This project is just a showcase on how to use Python as backend for flutter application and deploy them using heroku.
To build the backend, I used FastAPI which is a modern, fast (high-performance), web framework for building APIs with Python 3.6+ based on standard Python type hints. FastAPI has many features and the keys one are fast, fast to code, fewer bugs, intuitive, easy, Short, Robust. It is very easy to design and document APIs with FastAPI, that is one of the reason I like it. Fast API also supports ORMs, and in this app we used Sqlalchemy our SQLite database.
Reading: https://fastapi.tiangolo.com/
Heroku is a cloud platform as a service supporting several programming languages. One of the first cloud platforms(read more https://en.wikipedia.org/wiki/Heroku).
This a very simple notes app and the strutect of the notes are as follows:
Notes:
our SQL looks like
CREATE TABLE notes ( id int not null primary key auto_increment, text varchar(255) not null, completed boolean not null default 0 );
URL_HOST/notes/ create a new note
URL_HOST/notes/ get all notes
URL_HOST can be your localhost(in development) or your heroku-project-name-herokuapp.com/ (in production)
FastAPI is very useful when it comes to documentation of your api, through Swagger you will be able to have your API's docs without any effort

Selected from shared topics, language and repository description—not editorial ratings.
LuisLuii /
This is a code generator that allows you to use SQLAlchemy schema to quickly build a FastApi project template with CRUD Api routers and validation models.
62/100 healthkumark99 /
This is a mini project on FastAPI as a backend API and Jinja2 Template with Bootstrap5 and MongoDB as the Database.
46/100 healthDKAbir111 /
This is a simple FastAPI CRUD API project created for learning backend development with Python and FastAPI.
Alxcccc /
This is a RESTful API designed for a personal blogging platform.
31/100 healthsougate-ghosh /
This is my local python env setup
42/100 healthmksifat101 /
This is a CRUD Project using FastAPI & Python
34/100 health