Metadata-Version: 2.4
Name: apiforge-tools-godzilla
Version: 0.1.0
Summary: Herramienta profesional para generar APIs con FastAPI y SQLAlchemy
Author-email: Chedtofsky <kcostilla2012@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/Chedtofsky/apiforge
Project-URL: Repository, https://github.com/Chedtofsky/apiforge
Project-URL: Issues, https://github.com/Chedtofsky/apiforge/issues
Keywords: fastapi,api,generator,cli,rest,sqlalchemy,apiforge
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Code Generators
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Framework :: FastAPI
Description-Content-Type: text/markdown
License-File: LICENSE
License-File: LICENSE.md
Requires-Dist: typer>=0.9.0
Requires-Dist: fastapi>=0.100.0
Requires-Dist: uvicorn[standard]>=0.20.0
Requires-Dist: sqlalchemy>=2.0.0
Requires-Dist: jinja2>=3.0.0
Requires-Dist: python-jose[cryptography]>=3.3.0
Requires-Dist: passlib[bcrypt]>=1.7.0
Requires-Dist: slowapi>=0.1.5
Requires-Dist: pytest>=7.0.0
Requires-Dist: httpx>=0.24.0
Requires-Dist: pydantic-settings>=2.0.0
Requires-Dist: pyyaml>=6.0
Provides-Extra: dev
Requires-Dist: pytest; extra == "dev"
Requires-Dist: black; extra == "dev"
Requires-Dist: flake8; extra == "dev"
Requires-Dist: mypy; extra == "dev"
Dynamic: license-file

# APIForge

🚀 Herramienta profesional para generar APIs REST completas con FastAPI, SQLAlchemy y más.

## Características

- ✨ Generación de proyectos completos
- 🔐 Autenticación JWT opcional
- 🛡️ Control de consumo (rate limiting)
- 🧪 Tests automatizados
- 📦 Estructura modular
- 📝 Configuración desde YAML/JSON
- 👷 Añadir entidades a proyectos existentes

## Instalación

```bash
pip install apiforge
```

<<<<<<< HEAD
Uso
=======
## Uso
>>>>>>> ac12eacadf024ac478518640500a8e698179e52b

# Crear un nuevo proyecto

apiforge create-project --name mi_api --db sqlite --jwt --entity User=name:str,email:str

# Añadir entidad a proyecto existente

apiforge add-entity -e Post=title:str,content:str ./mi_api

# Generar desde configuración

apiforge generate-from-config config.yaml

<<<<<<< HEAD
Comandos
=======
## Comandos
>>>>>>> ac12eacadf024ac478518640500a8e698179e52b

- create-project: Genera un nuevo proyecto API
- add-entity: Añade una entidad a un proyecto existente
- generate-from-config: Genera desde archivo de configuración
<<<<<<< HEAD
  --help: Muestra ayuda detallada

Configuración
Soporta archivos .yaml y .json:
=======
-  --help: Muestra ayuda detallada

## Configuración
Soporta archivos .yaml y .json:

## Yaml
name: "mi_api"
database: "postgresql"
jwt: true
entities:
  - name: "User"
    fields:
      name: "str"
      email: "str"
>>>>>>> ac12eacadf024ac478518640500a8e698179e52b
