openUBL - Peruvian SUNAT Electronic Documents Library
Project description
openUBL
Peruvian SUNAT Electronic Documents Library — generate, sign, and validate UBL 2.1 XML for invoices, credit notes, debit notes, voided documents, summary documents, perceptions, and retentions.
Levantar openUBL
Start the development server and open Swagger UI:
uv run uvicorn openubl.main:app --reload
Navigate to http://localhost:8000/docs for interactive documentation.
Documentacion
La documentacion completa esta disponible en: https://darvin2c.github.io/openUBL
SDK Generation
The OpenAPI 3.1.0 schema is the single source of truth for all client SDKs.
Refresh the schema from the running FastAPI app:
uv run python scripts/export_openapi.py
Generate TypeScript types:
cd sdk/typescript && npm run generate
Generate other languages:
uv run python sdk/generate.py java go python csharp
Or directly with the OpenAPI Generator:
npx @openapitools/openapi-generator-cli generate -i openapi.json -g java -o sdk/java
TypeScript Usage
import { client, type Invoice } from "@openubl/sdk";
const invoice: Invoice = {
serie: "F001",
numero: 1,
proveedor: { ruc: "20100066603", razonSocial: "Softgreen S.A.C." },
cliente: { nombre: "Carlos", numeroDocumentoIdentidad: "12121212121", tipoDocumentoIdentidad: "6" },
detalles: [{ descripcion: "Item", cantidad: 10, precio: 100 }],
};
const { data } = await client.POST("/api/v1/invoice/create", { body: invoice });
console.log(data?.xml);
Project Structure
openubl/
├── src/openubl/ # Core library (models, renderer, signer, validator)
├── scripts/ # Development automation
├── sdk/ # Generated and hand-written SDKs
│ ├── typescript/ # TypeScript client with openapi-fetch
│ ├── generate.py # Multi-language generator orchestrator
│ └── README.md # Per-language usage examples
├── tests/ # pytest suite
├── openapi.json # Exported FastAPI schema (single source of truth)
└── pyproject.toml # Python project configuration
Development
Install dependencies:
uv sync
Run tests:
uv run pytest
Check that openapi.json is up to date:
uv run python scripts/check_sdk_sync.py
Releases
The project uses Semantic Versioning.
Flujo automático (recomendado)
Cada vez que mergeas un PR a main, puedes solicitar un release automático agregando un label al PR antes de mergearlo:
| Label | Color | Resultado |
|---|---|---|
release:patch |
#22c55e | Bugfix → 0.1.0 → 0.1.1 |
release:minor |
#f59e0b | Feature → 0.1.0 → 0.2.0 |
release:major |
#ef4444 | Breaking → 0.1.0 → 1.0.0 |
El label
release(color #3b82f6) se aplica automáticamente al PR de release generado por el workflow; no hace falta crearlo manualmente.
Qué pasa automáticamente:
- Al mergear el PR, un workflow crea un PR de release con el bump de versión ya aplicado.
- Tú revisas y mergeas el PR de release.
- Al mergear el PR de release, otro workflow crea automáticamente el tag
vX.Y.Z. - El tag dispara la publicación a npm (
@openubl/sdk) y PyPI (openubl).
Nada se pushea directo a main sin un PR. El flujo es seguro y auditable.
Flujo manual (fallback)
Si prefieres control total, usa el script local:
uv run python scripts/create_release.py 0.2.0
git push origin main
git push origin v0.2.0
Esto ejecuta bump_version.py, crea el commit release: v0.2.0 y el tag anotado v0.2.0.
Prerequisites
Configure your git email before manual releases:
git config user.email "darvin.2c@gmail.com"
Repository secrets required for CI publication:
NPM_TOKEN— npm access token with publish rights for@openublscope.PYPI_API_TOKEN— PyPI API token for theopenublproject.
Validate before releasing
uv run python scripts/check_sdk_sync.py
This verifies:
- All 7 version sources are identical.
openapi.jsonis up to date with the FastAPI schema.
Supported Documents
| Tipo | Schema | Endpoint |
|---|---|---|
| Factura (01) | Invoice |
POST /api/v1/invoice/create |
| Boleta (03) | Invoice (serie B###) |
POST /api/v1/invoice/create |
| Nota de Crédito (07) | CreditNote |
POST /api/v1/credit-note/create |
| Nota de Débito (08) | DebitNote |
POST /api/v1/debit-note/create |
| Anulaciones (RA) | VoidedDocuments |
POST /api/v1/voided-documents/create |
| Resumen Diario (RC) | SummaryDocuments |
POST /api/v1/summary-documents/create |
| Percepción (40) | Perception |
POST /api/v1/perception/create |
| Retención (20) | Retention |
POST /api/v1/retention/create |
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file openubl-0.1.0-py3-none-any.whl.
File metadata
- Download URL: openubl-0.1.0-py3-none-any.whl
- Upload date:
- Size: 33.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b3f3d2d1e655a12d867f112b76ab2d9e997005aff3bf0375a4845f61470ebb6b
|
|
| MD5 |
495109f6e86fa1ca248108dc8f457d16
|
|
| BLAKE2b-256 |
4d7846ee858275f14f494679a7bee9ed3c10805a6e4b04e12b109b8817a96bca
|