{"id":17059600,"url":"https://github.com/antonio-pedro99/fastapi_notes","last_synced_at":"2025-10-24T22:36:54.211Z","repository":{"id":48936844,"uuid":"369546602","full_name":"antonio-pedro99/fastapi_notes","owner":"antonio-pedro99","description":"This project is just a showcase on how to use Python as backend for flutter application and deploy them using heroku.","archived":false,"fork":false,"pushed_at":"2022-07-26T15:32:45.000Z","size":25,"stargazers_count":17,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-14T11:37:39.511Z","etag":null,"topics":["fastapi","fastapi-crud","fastapi-sqlalchemy","orm","python","restful-api","sqlite-database"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/antonio-pedro99.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-05-21T13:36:25.000Z","updated_at":"2025-02-07T17:29:53.000Z","dependencies_parsed_at":"2022-09-24T00:40:15.403Z","dependency_job_id":null,"html_url":"https://github.com/antonio-pedro99/fastapi_notes","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/antonio-pedro99/fastapi_notes","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antonio-pedro99%2Ffastapi_notes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antonio-pedro99%2Ffastapi_notes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antonio-pedro99%2Ffastapi_notes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antonio-pedro99%2Ffastapi_notes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/antonio-pedro99","download_url":"https://codeload.github.com/antonio-pedro99/fastapi_notes/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antonio-pedro99%2Ffastapi_notes/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":280878347,"owners_count":26406641,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-24T02:00:06.418Z","response_time":73,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["fastapi","fastapi-crud","fastapi-sqlalchemy","orm","python","restful-api","sqlite-database"],"created_at":"2024-10-14T10:34:55.710Z","updated_at":"2025-10-24T22:36:54.181Z","avatar_url":"https://github.com/antonio-pedro99.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FastAPI + Flutter + Heroku\n\nThis project is just a showcase on how to use Python as backend for flutter application and deploy them using heroku.\n\n##### This project was mentioned on https://github.com/antonio-pedro99/fastapi_example  \n\n## FastAPI\n\nTo 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.\nFastAPI 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.\n\nReading: https://fastapi.tiangolo.com/\n\n## Heroku\n\nHeroku 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).\n\n## Backend anatomy\n\nThis a very simple notes app and the strutect of the notes are as follows:\n\nNotes:\n  - id : integer value\n  - text: string value\n  - completed: boolean value\n \n ### SQL \n our SQL looks like\n\n CREATE TABLE notes (\n      id int not null primary key auto_increment,\n      text varchar(255) not null,\n      completed boolean not null default 0\n );\n \n## Endpoints \n\n### Post\n  URL_HOST/notes/  create a new note\n  \n### Get\n  URL_HOST/notes/  get all notes\n  \n URL_HOST can be your localhost(in development) or your heroku-project-name-herokuapp.com/ (in production)\n \n ### FastAPI Swagger Ui\n \n 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\n \n ![image](https://user-images.githubusercontent.com/42675180/159958799-ae5ae91a-a062-49d2-b99e-138cd87531cb.png)\n\n \n\n\n \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fantonio-pedro99%2Ffastapi_notes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fantonio-pedro99%2Ffastapi_notes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fantonio-pedro99%2Ffastapi_notes/lists"}