{"id":23953886,"url":"https://github.com/rahulkumar-fullstack/async-fastapi-mysql-api","last_synced_at":"2026-02-05T21:32:13.679Z","repository":{"id":270569770,"uuid":"910780147","full_name":"rahulkumar-fullstack/async-fastapi-mysql-api","owner":"rahulkumar-fullstack","description":"Asynchronous REST API built with FastAPI and MySQL for efficient user management.","archived":false,"fork":false,"pushed_at":"2025-01-01T15:16:08.000Z","size":18,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-27T01:38:32.899Z","etag":null,"topics":["async","asyncmy","crud","fastapi","mysql","rest-api","restful-api","sqlalchemy"],"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/rahulkumar-fullstack.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,"zenodo":null}},"created_at":"2025-01-01T12:02:19.000Z","updated_at":"2025-03-07T07:12:04.000Z","dependencies_parsed_at":null,"dependency_job_id":"8ac818d6-5591-498e-bce4-e5806702c289","html_url":"https://github.com/rahulkumar-fullstack/async-fastapi-mysql-api","commit_stats":null,"previous_names":["rahulkumar-fullstack/async-fastapi-mysql-api"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rahulkumar-fullstack/async-fastapi-mysql-api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rahulkumar-fullstack%2Fasync-fastapi-mysql-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rahulkumar-fullstack%2Fasync-fastapi-mysql-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rahulkumar-fullstack%2Fasync-fastapi-mysql-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rahulkumar-fullstack%2Fasync-fastapi-mysql-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rahulkumar-fullstack","download_url":"https://codeload.github.com/rahulkumar-fullstack/async-fastapi-mysql-api/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rahulkumar-fullstack%2Fasync-fastapi-mysql-api/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29135047,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-05T20:50:26.975Z","status":"ssl_error","status_checked_at":"2026-02-05T20:49:26.082Z","response_time":65,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["async","asyncmy","crud","fastapi","mysql","rest-api","restful-api","sqlalchemy"],"created_at":"2025-01-06T14:48:28.441Z","updated_at":"2026-02-05T21:32:13.656Z","avatar_url":"https://github.com/rahulkumar-fullstack.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Async FastAPI MySQL API\n\n![FastAPI](https://img.shields.io/badge/FastAPI-0078D7?style=for-the-badge\u0026logo=fastapi\u0026logoColor=white)  ![Python](https://img.shields.io/badge/Python-3776AB?style=for-the-badge\u0026logo=python\u0026logoColor=white)  ![SQLAlchemy](https://img.shields.io/badge/SQLAlchemy-BA2B00?style=for-the-badge\u0026logo=sqlalchemy\u0026logoColor=white)  ![Async Icon](https://img.shields.io/badge/Asyncmy-0078D7?style=for-the-badge\u0026logo=asyncapi\u0026logoColor=white)\n\n## Description\n\nAn **asynchronous REST API** built with **FastAPI** and **MySQL** as the database backend. This API provides CRUD operations for users and ensures high-performance, asynchronous database interactions.\n\n---\n\n### Features\n\n- ⚡ Fully asynchronous API using FastAPI\n- 🔗 Integration with MySQL using SQLAlchemy\n- 🌐 RESTful API for User CRUD operations\n\n---\n\n### Installation\n\n1. **Clone the repository**:\n\n   ```bash\n   git clone https://github.com/rahulkumar-fullstack/async-fastapi-mysql-api.git\n   cd async-fastapi-mysql-api\n\n2. **Create a virtual environment**:\n\n   ```bash\n   python -m venv venv\n   source venv/bin/activate  # Unix\n   .\\venv\\Scripts\\activate  # Windows\n\n3. **Install dependencies**:\n\n   ```bash\n   pip install -r requirements.txt\n   ```\n\n---\n\n### Usage\n\n1. **Start the FastAPI application**:\n\n   ```bash\n   uvicorn app.main:app --reload\n   ```\n\n2. **Access the API** at `http://127.0.0.1:8000`\n\n---\n\n### Endpoints\n\n- **Create User**: `POST /api/v1/users/`\n- **Get User**: `GET /api/v1/users/{user_id}`\n- **Update User**: `PUT /api/v1/users/{user_id}`\n- **Delete User**: `DELETE /api/v1/users/{user_id}`\n- **List Users**: `GET /api/v1/users/`\n\n---\n\n### Technologies\n\n- 🐍 **Python**: The programming language used.\n- 🔧 **FastAPI**: A modern web framework for building APIs.\n- 🌱 **MySQL**: Database system used for storage.\n- 🏗️ **SQLAlchemy**: ORM tool for managing the database interactions.\n- 🚘 **Asyncmy**: Async MySQL driver\n---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frahulkumar-fullstack%2Fasync-fastapi-mysql-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frahulkumar-fullstack%2Fasync-fastapi-mysql-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frahulkumar-fullstack%2Fasync-fastapi-mysql-api/lists"}