Metadata-Version: 2.4
Name: fastapi-auto-restful
Version: 0.3.1
Summary: Auto-generate FastAPI CRUD routes with pagination, filtering, and async support
Author-email: Kai Huang <huangkai31@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/huangkai31/fastapi-auto-restful
Project-URL: Repository, https://github.com/huangkai31/fastapi-auto-restful
Classifier: Framework :: FastAPI
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: fastapi>=0.100.0
Requires-Dist: sqlalchemy>=2.0.0
Requires-Dist: pydantic>=2.0.0
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: httpx>=0.23.0; extra == "dev"
Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
Requires-Dist: aiosqlite>=0.19.0; extra == "dev"
Dynamic: license-file

# fastapi-auto-restful

Automatically generate RESTful CRUD APIs from your database tables.

## ✨ Features

- **Sync & Async** support (SQLAlchemy 2.0)
- **Pagination**: `{"items": [...], "total": 100, "skip": 0, "limit": 10}`
- **Query filtering**: `?name=John&age__gt=18`
- **Nested responses** for foreign keys
- Works with **PostgreSQL, MySQL, SQLite**

## 🚀 Install

```bash
pip install fastapi-auto-restful
