{"id":23893577,"url":"https://github.com/devlopersabbir/fast-crud-api","last_synced_at":"2026-04-18T03:32:35.516Z","repository":{"id":198840963,"uuid":"701644135","full_name":"devlopersabbir/fast-crud-api","owner":"devlopersabbir","description":"CRUD REST API with FastApi","archived":false,"fork":false,"pushed_at":"2023-10-11T17:42:57.000Z","size":12,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-23T06:15:21.435Z","etag":null,"topics":["api","crud","fast","fastapi","python","rest"],"latest_commit_sha":null,"homepage":"https://fastapi.tiangolo.com/","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/devlopersabbir.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,"governance":null}},"created_at":"2023-10-07T06:29:52.000Z","updated_at":"2023-10-07T07:30:54.000Z","dependencies_parsed_at":null,"dependency_job_id":"72b416b3-fa90-410a-911f-6098cb48a88a","html_url":"https://github.com/devlopersabbir/fast-crud-api","commit_stats":null,"previous_names":["devlopersabbir/fast-crud-api"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/devlopersabbir/fast-crud-api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devlopersabbir%2Ffast-crud-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devlopersabbir%2Ffast-crud-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devlopersabbir%2Ffast-crud-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devlopersabbir%2Ffast-crud-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devlopersabbir","download_url":"https://codeload.github.com/devlopersabbir/fast-crud-api/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devlopersabbir%2Ffast-crud-api/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31955712,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T00:39:45.007Z","status":"online","status_checked_at":"2026-04-18T02:00:07.018Z","response_time":103,"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":["api","crud","fast","fastapi","python","rest"],"created_at":"2025-01-04T14:28:00.438Z","updated_at":"2026-04-18T03:32:35.498Z","avatar_url":"https://github.com/devlopersabbir.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Python FastAPI\n\nSimple my learning documentation\n\n#### **Step 1**: import `FastAPI`\n\n```python\nfrom fastapi import FastAPI\n```\n\n`FastAPI` is a Python class that provides all the functionality for your API.\n\n#### **Step 2**: Create a `FastAPI` \"instance\"\n\n```python\napp = FastAPI()\n```\n\n- Here the app variable will be an \"instance\" of the class `FastAPI`\n- app varibale will help us to perform routing, controlling everything as like\n  the `express`\n- This will be the main point of interaction to create all your API.\n- And this `app` variable will help me to run our `uvicorn` application\n\n**Summary of `main.py` file**\n\n- Import FastAPI.\n- Create an app instance.\n- Write a path operation decorator (like `@app.get(\"/\")`).\n- Write a path operation function (like def root(): ... above).\n- Run the development server (like `uvicorn main:app --reload`).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevlopersabbir%2Ffast-crud-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevlopersabbir%2Ffast-crud-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevlopersabbir%2Ffast-crud-api/lists"}