Pydantic schemas and repository interfaces for invoice management
Project description
Pydantic Invoices
Type-safe Pydantic schemas and repository interfaces for invoice management systems.
Installation
pip install pydantic-invoices
# or
uv add pydantic-invoices
Usage
Using Schemas
from pydantic_invoices import Invoice, InvoiceCreate, Client, ClientCreate
from pydantic_invoices.schemas import InvoiceStatus, InvoiceType
from datetime import datetime
# Create invoice data
invoice_data = InvoiceCreate(
number="INV-001",
client_id=1,
company_id=1,
issue_date=datetime.now(),
due_date=datetime.now(),
status=InvoiceStatus.DRAFT,
type=InvoiceType.STANDARD,
payment_terms="Net 30",
lines=[],
)
# Validate and use
invoice = Invoice(id=1, **invoice_data.model_dump())
Invoice Statuses & Types
The library supports a strict state machine workflow:
- Statuses:
DRAFT,SENT,PAID,PARTIALLY_PAID,CANCELLED,REFUNDED,CREDITED. - Types:
STANDARD,CREDIT_NOTE. - Linking:
Credit Notescan be linked to original invoices viaoriginal_invoice_id.
Implementing Repository Interfaces
from pydantic_invoices.interfaces import InvoiceRepository, ClientRepository
from pydantic_invoices import Invoice, InvoiceCreate, Client
class MyInvoiceRepo(InvoiceRepository):
def create(self, entity: InvoiceCreate) -> Invoice:
# Your implementation
pass
def get_by_id(self, id: int) -> Invoice | None:
# Your implementation
pass
# ... implement other methods
Architecture
See System Diagram for a visual overview of the entities and their relationships.
Features
- ✅ Type-safe Pydantic v2 schemas
- ✅ Repository pattern interfaces
- ✅ No implementation dependencies
- ✅ Fully typed with mypy support
- ✅ Clean separation of concerns
- ✅ Support for Credit Notes and Strict Lifecycle
Schemas Included
Invoice,InvoiceCreate,InvoiceUpdateInvoiceLine,InvoiceLineCreateClient,ClientCreate,ClientUpdatePayment,PaymentCreateCompany,CompanyCreate,CompanyUpdateProduct,ProductCreate,ProductUpdatePaymentNote,PaymentNoteCreate,PaymentNoteUpdateAuditLog
Interfaces Included
BaseRepository- Generic CRUD operationsInvoiceRepository- Invoice-specific operationsClientRepository- Client managementPaymentRepository- Payment trackingCompanyRepository- Company managementProductRepository- Product catalogPaymentNoteRepository- Payment instructions
License
MIT
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pydantic_invoices-1.4.1.tar.gz
(16.5 kB
view details)
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 pydantic_invoices-1.4.1.tar.gz.
File metadata
- Download URL: pydantic_invoices-1.4.1.tar.gz
- Upload date:
- Size: 16.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
138a2702310917e3a54250a00231e511a6f3cf360e5293d598739edff0905c12
|
|
| MD5 |
23c1c7f8caf124461d33014810212dab
|
|
| BLAKE2b-256 |
cc29fda12569ddffefe053a6fe4f95b6cd0973c0cf34c1165018976ecabee0c7
|
File details
Details for the file pydantic_invoices-1.4.1-py3-none-any.whl.
File metadata
- Download URL: pydantic_invoices-1.4.1-py3-none-any.whl
- Upload date:
- Size: 18.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
24c52955f10f105e735f61e716ce94cf2753e734fc70cce2ab2b525609307ae3
|
|
| MD5 |
280c8c378b6e6975297e7078a7146919
|
|
| BLAKE2b-256 |
893f091d2ce3383de2a6cbb6d7a0e9185c3298af7429cbaef932fc8cf5ea800c
|