Skip to main content

Package to manage electronic invoice.

Project description

Digital-Invoice

Digital-Invoice is a package to write or reader e-invoice (UBL or factur-x format) from JSON data

JSON Format

{
    "bill": {
        "date": "2026-03-15",                             # date in iso-format
        "num": "ABC1234", 
        "origin": "XYZ9876", 
        "detail": [
            {
                "id": "123",
                "reference": "AAA001",
                "designation": "Article sending",
                "price": 12.35,                           # price without VAT
                "quantity": 2.0,
                "vat_rate": 10.0,                         # VAT in percent
                "reduce": 5.0,                            # reduce without VAT
                "total": 19.70,                           # total exclude tax
            }
        ],
        "vat_info": [
            {
                "calculate": 19.70,                       # sum of all detail with this rate
                "basic": 1.97,                            # VAT total for this rate
                "rate": 10.0,
            }
        ],
        "total": {
            "excltax": 19.70,                             # total without VAT
            "incltax": 21.67,                             # total with VAT
            "payed": 10.0,
            "topay": 11.67,
            "tax": 1.97
        },
    },
    "buyer": {
        "name": "L'acheteur de Lyon",
        "legal_ident": "123456789",
        "vat_ident": "FR123456789",
        "postalcode": "69002",
        "address": ["place de Bellecours"],
        "city": "LYON",
        "country_id": "FR",
        "email": "buyer@digital-invoice.net",
        "phone": "+339876543210",
    },
    "seller": {
        "name": "Le vendeur de MARSEILLE",
        "legal_ident": "987654321",
        "vat_ident": "FR987654321",
        "postalcode": "13001",
        "address": ["Vieux port","BP 1234"],
        "city": "MARSEILLE",
        "country_id": "FR",
        "email": "seller@digital-invoice.net",
        "phone": "+331234567890",
    },
    "currency_code": "EUR"
}

Writer

Example:

writer = WriterInvoice()
writer.run(eformat=WriterInvoice.facturX, data=invoice_data)
writer.saveInPDF(pdf_stream)
writer = WriterInvoice()
writer.run(eformat=WriterInvoice.UBL, data=invoice_data)
print(writer.content_xml)

Reader

Example:

reader = ReaderInvoice()
if reader.run(pdf_stream) == ReaderInvoice.facturX:
   print(reader.data)
reader = ReaderInvoice()
if reader.run("UBL.xml") == ReaderInvoice.UBL:
   print(reader.data)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

digital_invoice-0.9.3.1783090031-py3-none-any.whl (478.3 kB view details)

Uploaded Python 3

File details

Details for the file digital_invoice-0.9.3.1783090031-py3-none-any.whl.

File metadata

File hashes

Hashes for digital_invoice-0.9.3.1783090031-py3-none-any.whl
Algorithm Hash digest
SHA256 ac884d3aafb8031a53a174b4dbaa0100b446e62e38cc0dfc6d430b92ce690a50
MD5 525f079252a7c4a4d2445648cd14852d
BLAKE2b-256 9ec78be48d8d6c9167435ceccae6a25a4d7d89629400db30bd1a915592398ae4

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page