{"id":22840450,"url":"https://github.com/mbrsagor/fastAPICRUD","last_synced_at":"2025-08-10T23:31:55.424Z","repository":{"id":51059052,"uuid":"185353684","full_name":"mbrsagor/fastAPICRUD","owner":"mbrsagor","description":"Fast API CRUD backend web application","archived":false,"fork":false,"pushed_at":"2024-01-15T15:34:22.000Z","size":23,"stargazers_count":1,"open_issues_count":0,"forks_count":2,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-07-01T14:16:13.754Z","etag":null,"topics":["api-rest","fastapi","microservices","python3","rest"],"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/mbrsagor.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,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-05-07T08:10:52.000Z","updated_at":"2023-09-29T13:51:08.000Z","dependencies_parsed_at":"2022-08-27T08:41:03.008Z","dependency_job_id":"e3585d01-eea1-47b3-8ab4-5220a193cbbb","html_url":"https://github.com/mbrsagor/fastAPICRUD","commit_stats":{"total_commits":19,"total_committers":2,"mean_commits":9.5,"dds":0.1578947368421053,"last_synced_commit":"ddddb555acf63a2f16478bd00e1aadd8cbe76878"},"previous_names":["mbrsagor/djangorestutils"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mbrsagor/fastAPICRUD","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mbrsagor%2FfastAPICRUD","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mbrsagor%2FfastAPICRUD/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mbrsagor%2FfastAPICRUD/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mbrsagor%2FfastAPICRUD/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mbrsagor","download_url":"https://codeload.github.com/mbrsagor/fastAPICRUD/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mbrsagor%2FfastAPICRUD/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269805043,"owners_count":24477900,"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-08-10T02:00:08.965Z","response_time":71,"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-rest","fastapi","microservices","python3","rest"],"created_at":"2024-12-13T01:12:00.372Z","updated_at":"2025-08-10T23:31:55.139Z","avatar_url":"https://github.com/mbrsagor.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# fastAPICRUD\n\u003e Fast API CRUD backend web application.\n\n### Setup:\nIf you want to run the project in your local development server please follow the instruction.\n\n###### Open your terminal:\n\n- python 3.10\n- sqlalchemy\n\n```bash\ngit clone https://github.com/mbrsagor/fastAPICRUD.git\ncd fastAPICRUD\nvirtualenv venv --python=python3.10\nsource venv/bin/activate\npip install -r requirements.txt\nuvicorn src.main:app --host localhost --port 8000 --reload\n```\n\n#### Run docker::\n```bash\ndocker-compose up -d\n```\n\n###### An ORM for Python::\n```bash\npip install SQLAlchemy fastapi-utils\n```\n\n\n```python\nfrom typing import Union\n\nfrom fastapi import FastAPI\n\napp = FastAPI()\n\n\n@app.get(\"/\")\ndef read_root():\n    return {\"Hello\": \"World\"}\n\n\n@app.get(\"/items/{item_id}\")\ndef read_item(item_id: int, q: Union[str, None] = None):\n    return {\"item_id\": item_id, \"q\": q}\n```\n\n### Source:\n[Here is the blog, which I got from it.](https://codevoweb.com/build-a-crud-app-with-fastapi-and-sqlalchemy/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmbrsagor%2FfastAPICRUD","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmbrsagor%2FfastAPICRUD","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmbrsagor%2FfastAPICRUD/lists"}