Name | pyfactx JSON |
Version |
0.6.3
JSON |
| download |
home_page | None |
Summary | Python package using Pydantic models to generate FacturX-compliant documents |
upload_time | 2025-08-07 15:40:47 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.12 |
license | None |
keywords |
factur-x
invoicing
en16931
e-invoicing
xml
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# PyFactX
**PyFactX** is a Python library that leverages [Pydantic](https://docs.pydantic.dev/) models to generate fully
compliant [Factur-X](https://www.factur-x.org/) (EN 16931) e-invoices. This library generates a structured XML file,
suitable for machine processing, which can then be embedded in a hybrid PDF A/3 electronic invoice for full compliance
with the European e-invoicing standards.
---
## β¨ Features
- β
Full support for **EN 16931** compliant Factur-X invoices
- π¦ Clean and robust **Pydantic models** for structured invoice data
- π§Ύ Generates **Factur-X-compliant XML** from Python dictionaries or Pydantic models
- πͺπΊ Compatible with European e-invoicing standards
- π Can be easily embedded into PDF invoices (e.g., via [facturelibre](https://github.com/vartur/facturelibre))
---
## π¦ Installation
```bash
pip install pyfactx
```
## β
Compliance
PyFactX aims for full compliance with the following:
* Factur-X **_MINIMUM_**, **_BASIC_WL_**, **_BASIC_** AND **_EN16931_** invoice profiles
* Schematron validation support
## π Quick Start
```python
import datetime
from lxml import etree as ET
from src.pyfactx.BinaryObject import BinaryObject
from src.pyfactx.DocumentLineDocument import DocumentLineDocument
from src.pyfactx.DocumentTypeCode import DocumentTypeCode
from src.pyfactx.ExchangedDocument import ExchangedDocument
from src.pyfactx.FacturXData import FacturXData
from src.pyfactx.ExchangedDocumentContext import ExchangedDocumentContext
from src.pyfactx.FacturXGenerator import FacturXGenerator
from src.pyfactx.HeaderTradeAgreement import HeaderTradeAgreement
from src.pyfactx.HeaderTradeDelivery import HeaderTradeDelivery
from src.pyfactx.HeaderTradeSettlement import HeaderTradeSettlement
from src.pyfactx.InvoiceProfile import InvoiceProfile
from src.pyfactx.InvoiceTypeCode import InvoiceTypeCode
from src.pyfactx.LineTradeAgreement import LineTradeAgreement
from src.pyfactx.LineTradeDelivery import LineTradeDelivery
from src.pyfactx.LineTradeSettlement import LineTradeSettlement
from src.pyfactx.Note import Note
from src.pyfactx.PaymentMeansCode import PaymentMeansCode
from src.pyfactx.ProcuringProject import ProcuringProject
from src.pyfactx.ReferencedDocument import ReferencedDocument
from src.pyfactx.SupplyChainEvent import SupplyChainEvent
from src.pyfactx.SupplyChainTradeLineItem import SupplyChainTradeLineItem
from src.pyfactx.SupplyChainTradeTransaction import SupplyChainTradeTransaction
from src.pyfactx.TaxCategoryCode import TaxCategoryCode
from src.pyfactx.TaxTypeCode import TaxTypeCode
from src.pyfactx.TradeContact import TradeContact
from src.pyfactx.TradeParty import TradeParty
from src.pyfactx.TradePaymentTerms import TradePaymentTerms
from src.pyfactx.TradePrice import TradePrice
from src.pyfactx.TradeProduct import TradeProduct
from src.pyfactx.TradeSettlementHeaderMonetarySummation import TradeSettlementHeaderMonetarySummation
from src.pyfactx.TradeAddress import TradeAddress
from src.pyfactx.LegalOrganization import LegalOrganization
from src.pyfactx.TradeSettlementLineMonetarySummation import TradeSettlementLineMonetarySummation
from src.pyfactx.TradeSettlementPaymentMeans import TradeSettlementPaymentMeans
from src.pyfactx.TradeTax import TradeTax
from src.pyfactx.UnitCode import UnitCode
from src.pyfactx.UniversalCommunication import UniversalCommunication
doc_context = ExchangedDocumentContext(business_process_specified_document_context_parameter="MyBusiness",
guideline_specified_document_context_parameter=InvoiceProfile.EN16931)
document = ExchangedDocument(id="INV-ABCDEF",
type_code=InvoiceTypeCode.COMMERCIAL_INVOICE,
issue_date_time=datetime.datetime(year=2025, month=4, day=25),
included_notes=[Note(content="Sausages", subject_code="AAA"),
Note(content="RCS Paris 123 456 789", subject_code="ABL")])
trade_address = TradeAddress(postcode="75001", line_one="1 rue des Baguettes", line_two="4Γ¨ Γ©tage",
line_three="Appartement 48", city="Paris", country="FR",
country_subdivision="Γle de France")
legal_org = LegalOrganization(id="123456789", trading_business_name="Saucisses & Co")
trade_contact = TradeContact(person_name="John Contact", department_name="Macro Data Refinement",
telephone_universal_communication=UniversalCommunication(complete_number="01 23 45 67 89"),
email_uri_universal_communication=UniversalCommunication(uri_id="john@macrodata.com"))
seller = TradeParty(ids=["abc", "def", "ghi"], global_ids=[("0088", "587451236587"), ("0009", "12345678200077")],
name="John Seller",
description="Self-employed sausage craftsman",
specified_legal_organisation=legal_org, trade_address=trade_address,
specified_tax_registration="FR123456789",
defined_trade_contact=trade_contact,
uri_universal_communication=UniversalCommunication(uri_id="john@saucissesandco.fr"))
buyer = TradeParty(ids=["abc"], global_ids=[("0088", "587451236588")],
name="John Buyer",
specified_legal_organisation=legal_org, trade_address=trade_address,
specified_tax_registration="FR123456788",
defined_trade_contact=trade_contact,
uri_universal_communication=UniversalCommunication(uri_id="john@gmail.com"))
ship_to = TradeParty(ids=["abc"], global_ids=[("0088", "587451236588")],
name="John Shipping",
trade_address=trade_address)
tax_rep = TradeParty(name="John Tax",
trade_address=trade_address,
specified_tax_registration="FR123456788")
payee = TradeParty(name="John Payee")
monetary_summation = TradeSettlementHeaderMonetarySummation(tax_basis_total_amount=100.0, tax_total_amount=4.90,
grand_total_amount=104.90, due_payable_amount=104.90,
line_total_amount=100.0, charge_total_amount=0.0,
allowance_total_amount=0.0, rounding_amount=0.0,
tax_currency_code="EUR", total_prepaid_amount=0.0)
applicable_trade_tax = TradeTax(calculated_amount=4.90, type_code=TaxTypeCode.VALUE_ADDED_TAX, basis_amount=100.0,
category_code=TaxCategoryCode.STANDARD_RATE, rate_applicable_percent=4.90)
payment_means = [TradeSettlementPaymentMeans(payment_means_code=PaymentMeansCode.CASH),
TradeSettlementPaymentMeans(payment_means_code=PaymentMeansCode.SEPA_CREDIT_TRANSFER)]
ref_doc = ReferencedDocument(issuer_assigned_id="123", uri_id="urn:abc:def", line_id="1",
type_code=DocumentTypeCode.RELATED_DOCUMENT, name="Example",
attachment_binary_object=BinaryObject(content_b64="1561561561561", mime_code="image/jpeg",
filename="cat.jpeg"), reference_type_code="123",
issue_date=datetime.datetime(year=2025, month=3, day=1))
ref_doc2 = ReferencedDocument(issuer_assigned_id="123")
ref_doc3 = ReferencedDocument(issuer_assigned_id="123", uri_id="urn:abc:def",
type_code=DocumentTypeCode.RELATED_DOCUMENT, name="Example",
attachment_binary_object=BinaryObject(content_b64="1561561561561", mime_code="image/jpeg",
filename="cat.jpeg"))
trade_agreement = HeaderTradeAgreement(seller_trade_party=seller, buyer_trade_party=buyer,
seller_tax_representative_trade_party=tax_rep,
seller_order_referenced_document=ref_doc2,
buyer_order_referenced_document=ref_doc2,
contract_referenced_document=ref_doc2,
additional_referenced_documents=[ref_doc3, ref_doc3],
specified_procuring_project=ProcuringProject(id="abc", name="My Project"))
trade_payment_terms = TradePaymentTerms(due_date=datetime.datetime(year=2025, month=4, day=30))
trade_delivery = HeaderTradeDelivery(ship_to_trade_party=ship_to, actual_delivery_supply_chain_event=SupplyChainEvent(
occurrence_date=datetime.datetime(year=2025, month=3, day=1)), despatch_advice_referenced_document=ref_doc2,
receiving_advice_referenced_document=ref_doc2)
trade_settlement = HeaderTradeSettlement(creditor_reference_id="abc", payment_reference="eznfoezf",
invoice_currency_code="EUR",
payee_trade_party=payee,
applicable_trade_tax=[applicable_trade_tax],
specified_trade_settlement_payment_means=payment_means,
specified_trade_payment_terms=trade_payment_terms,
specified_trade_settlement_header_monetary_summation=monetary_summation)
line_item_1 = SupplyChainTradeLineItem(associated_document_line_document=DocumentLineDocument(line_id=1),
specified_trade_product=TradeProduct(name="Vegetarian sausage"),
specified_line_trade_agreement=LineTradeAgreement(
net_price_product_trade_price=TradePrice(charge_amount=10.0,
unit=UnitCode.ONE)),
specified_line_trade_delivery=LineTradeDelivery(billed_quantity=10,
unit=UnitCode.ONE),
specified_line_trade_settlement=LineTradeSettlement(
applicable_trade_tax=TradeTax(type_code=TaxTypeCode.VALUE_ADDED_TAX,
category_code=TaxCategoryCode.STANDARD_RATE,
rate_applicable_percent=4.9),
specified_trade_settlement_line_monetary_summation=TradeSettlementLineMonetarySummation(
line_total_amount=100)))
transaction = SupplyChainTradeTransaction(included_supply_chain_trade_line_items=[line_item_1],
applicable_header_trade_agreement=trade_agreement,
applicable_header_trade_delivery=trade_delivery,
applicable_header_trade_settlement=trade_settlement)
facturx_data = FacturXData(exchanged_document_context=doc_context, exchanged_document=document,
supply_chain_transaction=transaction)
if __name__ == '__main__':
xml = FacturXGenerator.generate(facturx_data, InvoiceProfile.BASIC)
xml_string = ET.tostring(xml, pretty_print=True, encoding='utf-8').decode('utf-8')
print(xml_string)
```
## π€ Contributing
Contributions are welcome! Feel free to submit issues, bug reports, or pull requests.
## π License
This project is licensed under the MIT License. See [LICENSE](./LICENSE) for details.
## π§Ύ About Factur-X
Factur-X is the Franco-German standard for hybrid electronic invoices, combining PDF and XML to meet the requirements of
both businesses and tax authorities across the EU.
Learn more at: https://www.factur-x.org/
Raw data
{
"_id": null,
"home_page": null,
"name": "pyfactx",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.12",
"maintainer_email": null,
"keywords": "factur-x, invoicing, EN16931, e-invoicing, xml",
"author": null,
"author_email": "Vincent Artur <6145191+vartur@users.noreply.github.com>",
"download_url": "https://files.pythonhosted.org/packages/ce/d1/dbaaafd63bb51dd6cb259325f97f98a088da194839afac2232d19aa03368/pyfactx-0.6.3.tar.gz",
"platform": null,
"description": "# PyFactX\n\n**PyFactX** is a Python library that leverages [Pydantic](https://docs.pydantic.dev/) models to generate fully\ncompliant [Factur-X](https://www.factur-x.org/) (EN 16931) e-invoices. This library generates a structured XML file,\nsuitable for machine processing, which can then be embedded in a hybrid PDF A/3 electronic invoice for full compliance\nwith the European e-invoicing standards.\n\n---\n\n## \u2728 Features\n\n- \u2705 Full support for **EN 16931** compliant Factur-X invoices\n- \ud83d\udce6 Clean and robust **Pydantic models** for structured invoice data\n- \ud83e\uddfe Generates **Factur-X-compliant XML** from Python dictionaries or Pydantic models\n- \ud83c\uddea\ud83c\uddfa Compatible with European e-invoicing standards\n- \ud83d\udcc4 Can be easily embedded into PDF invoices (e.g., via [facturelibre](https://github.com/vartur/facturelibre))\n\n---\n\n## \ud83d\udce6 Installation\n\n```bash\npip install pyfactx\n```\n\n## \u2705 Compliance\n\nPyFactX aims for full compliance with the following:\n\n* Factur-X **_MINIMUM_**, **_BASIC_WL_**, **_BASIC_** AND **_EN16931_** invoice profiles\n* Schematron validation support\n\n## \ud83d\ude80 Quick Start\n\n```python\nimport datetime\nfrom lxml import etree as ET\n\nfrom src.pyfactx.BinaryObject import BinaryObject\nfrom src.pyfactx.DocumentLineDocument import DocumentLineDocument\nfrom src.pyfactx.DocumentTypeCode import DocumentTypeCode\nfrom src.pyfactx.ExchangedDocument import ExchangedDocument\nfrom src.pyfactx.FacturXData import FacturXData\nfrom src.pyfactx.ExchangedDocumentContext import ExchangedDocumentContext\nfrom src.pyfactx.FacturXGenerator import FacturXGenerator\nfrom src.pyfactx.HeaderTradeAgreement import HeaderTradeAgreement\nfrom src.pyfactx.HeaderTradeDelivery import HeaderTradeDelivery\nfrom src.pyfactx.HeaderTradeSettlement import HeaderTradeSettlement\nfrom src.pyfactx.InvoiceProfile import InvoiceProfile\nfrom src.pyfactx.InvoiceTypeCode import InvoiceTypeCode\nfrom src.pyfactx.LineTradeAgreement import LineTradeAgreement\nfrom src.pyfactx.LineTradeDelivery import LineTradeDelivery\nfrom src.pyfactx.LineTradeSettlement import LineTradeSettlement\nfrom src.pyfactx.Note import Note\nfrom src.pyfactx.PaymentMeansCode import PaymentMeansCode\nfrom src.pyfactx.ProcuringProject import ProcuringProject\nfrom src.pyfactx.ReferencedDocument import ReferencedDocument\nfrom src.pyfactx.SupplyChainEvent import SupplyChainEvent\nfrom src.pyfactx.SupplyChainTradeLineItem import SupplyChainTradeLineItem\nfrom src.pyfactx.SupplyChainTradeTransaction import SupplyChainTradeTransaction\nfrom src.pyfactx.TaxCategoryCode import TaxCategoryCode\nfrom src.pyfactx.TaxTypeCode import TaxTypeCode\nfrom src.pyfactx.TradeContact import TradeContact\nfrom src.pyfactx.TradeParty import TradeParty\nfrom src.pyfactx.TradePaymentTerms import TradePaymentTerms\nfrom src.pyfactx.TradePrice import TradePrice\nfrom src.pyfactx.TradeProduct import TradeProduct\nfrom src.pyfactx.TradeSettlementHeaderMonetarySummation import TradeSettlementHeaderMonetarySummation\nfrom src.pyfactx.TradeAddress import TradeAddress\nfrom src.pyfactx.LegalOrganization import LegalOrganization\nfrom src.pyfactx.TradeSettlementLineMonetarySummation import TradeSettlementLineMonetarySummation\nfrom src.pyfactx.TradeSettlementPaymentMeans import TradeSettlementPaymentMeans\nfrom src.pyfactx.TradeTax import TradeTax\nfrom src.pyfactx.UnitCode import UnitCode\nfrom src.pyfactx.UniversalCommunication import UniversalCommunication\n\ndoc_context = ExchangedDocumentContext(business_process_specified_document_context_parameter=\"MyBusiness\",\n guideline_specified_document_context_parameter=InvoiceProfile.EN16931)\ndocument = ExchangedDocument(id=\"INV-ABCDEF\",\n type_code=InvoiceTypeCode.COMMERCIAL_INVOICE,\n issue_date_time=datetime.datetime(year=2025, month=4, day=25),\n included_notes=[Note(content=\"Sausages\", subject_code=\"AAA\"),\n Note(content=\"RCS Paris 123 456 789\", subject_code=\"ABL\")])\n\ntrade_address = TradeAddress(postcode=\"75001\", line_one=\"1 rue des Baguettes\", line_two=\"4\u00e8 \u00e9tage\",\n line_three=\"Appartement 48\", city=\"Paris\", country=\"FR\",\n country_subdivision=\"\u00cele de France\")\nlegal_org = LegalOrganization(id=\"123456789\", trading_business_name=\"Saucisses & Co\")\ntrade_contact = TradeContact(person_name=\"John Contact\", department_name=\"Macro Data Refinement\",\n telephone_universal_communication=UniversalCommunication(complete_number=\"01 23 45 67 89\"),\n email_uri_universal_communication=UniversalCommunication(uri_id=\"john@macrodata.com\"))\n\nseller = TradeParty(ids=[\"abc\", \"def\", \"ghi\"], global_ids=[(\"0088\", \"587451236587\"), (\"0009\", \"12345678200077\")],\n name=\"John Seller\",\n description=\"Self-employed sausage craftsman\",\n specified_legal_organisation=legal_org, trade_address=trade_address,\n specified_tax_registration=\"FR123456789\",\n defined_trade_contact=trade_contact,\n uri_universal_communication=UniversalCommunication(uri_id=\"john@saucissesandco.fr\"))\n\nbuyer = TradeParty(ids=[\"abc\"], global_ids=[(\"0088\", \"587451236588\")],\n name=\"John Buyer\",\n specified_legal_organisation=legal_org, trade_address=trade_address,\n specified_tax_registration=\"FR123456788\",\n defined_trade_contact=trade_contact,\n uri_universal_communication=UniversalCommunication(uri_id=\"john@gmail.com\"))\n\nship_to = TradeParty(ids=[\"abc\"], global_ids=[(\"0088\", \"587451236588\")],\n name=\"John Shipping\",\n trade_address=trade_address)\n\ntax_rep = TradeParty(name=\"John Tax\",\n trade_address=trade_address,\n specified_tax_registration=\"FR123456788\")\npayee = TradeParty(name=\"John Payee\")\n\nmonetary_summation = TradeSettlementHeaderMonetarySummation(tax_basis_total_amount=100.0, tax_total_amount=4.90,\n grand_total_amount=104.90, due_payable_amount=104.90,\n line_total_amount=100.0, charge_total_amount=0.0,\n allowance_total_amount=0.0, rounding_amount=0.0,\n tax_currency_code=\"EUR\", total_prepaid_amount=0.0)\napplicable_trade_tax = TradeTax(calculated_amount=4.90, type_code=TaxTypeCode.VALUE_ADDED_TAX, basis_amount=100.0,\n category_code=TaxCategoryCode.STANDARD_RATE, rate_applicable_percent=4.90)\npayment_means = [TradeSettlementPaymentMeans(payment_means_code=PaymentMeansCode.CASH),\n TradeSettlementPaymentMeans(payment_means_code=PaymentMeansCode.SEPA_CREDIT_TRANSFER)]\n\nref_doc = ReferencedDocument(issuer_assigned_id=\"123\", uri_id=\"urn:abc:def\", line_id=\"1\",\n type_code=DocumentTypeCode.RELATED_DOCUMENT, name=\"Example\",\n attachment_binary_object=BinaryObject(content_b64=\"1561561561561\", mime_code=\"image/jpeg\",\n filename=\"cat.jpeg\"), reference_type_code=\"123\",\n issue_date=datetime.datetime(year=2025, month=3, day=1))\n\nref_doc2 = ReferencedDocument(issuer_assigned_id=\"123\")\nref_doc3 = ReferencedDocument(issuer_assigned_id=\"123\", uri_id=\"urn:abc:def\",\n type_code=DocumentTypeCode.RELATED_DOCUMENT, name=\"Example\",\n attachment_binary_object=BinaryObject(content_b64=\"1561561561561\", mime_code=\"image/jpeg\",\n filename=\"cat.jpeg\"))\ntrade_agreement = HeaderTradeAgreement(seller_trade_party=seller, buyer_trade_party=buyer,\n seller_tax_representative_trade_party=tax_rep,\n seller_order_referenced_document=ref_doc2,\n buyer_order_referenced_document=ref_doc2,\n contract_referenced_document=ref_doc2,\n additional_referenced_documents=[ref_doc3, ref_doc3],\n specified_procuring_project=ProcuringProject(id=\"abc\", name=\"My Project\"))\ntrade_payment_terms = TradePaymentTerms(due_date=datetime.datetime(year=2025, month=4, day=30))\ntrade_delivery = HeaderTradeDelivery(ship_to_trade_party=ship_to, actual_delivery_supply_chain_event=SupplyChainEvent(\n occurrence_date=datetime.datetime(year=2025, month=3, day=1)), despatch_advice_referenced_document=ref_doc2,\n receiving_advice_referenced_document=ref_doc2)\ntrade_settlement = HeaderTradeSettlement(creditor_reference_id=\"abc\", payment_reference=\"eznfoezf\",\n invoice_currency_code=\"EUR\",\n payee_trade_party=payee,\n applicable_trade_tax=[applicable_trade_tax],\n specified_trade_settlement_payment_means=payment_means,\n specified_trade_payment_terms=trade_payment_terms,\n specified_trade_settlement_header_monetary_summation=monetary_summation)\n\nline_item_1 = SupplyChainTradeLineItem(associated_document_line_document=DocumentLineDocument(line_id=1),\n specified_trade_product=TradeProduct(name=\"Vegetarian sausage\"),\n specified_line_trade_agreement=LineTradeAgreement(\n net_price_product_trade_price=TradePrice(charge_amount=10.0,\n unit=UnitCode.ONE)),\n specified_line_trade_delivery=LineTradeDelivery(billed_quantity=10,\n unit=UnitCode.ONE),\n specified_line_trade_settlement=LineTradeSettlement(\n applicable_trade_tax=TradeTax(type_code=TaxTypeCode.VALUE_ADDED_TAX,\n category_code=TaxCategoryCode.STANDARD_RATE,\n rate_applicable_percent=4.9),\n specified_trade_settlement_line_monetary_summation=TradeSettlementLineMonetarySummation(\n line_total_amount=100)))\n\ntransaction = SupplyChainTradeTransaction(included_supply_chain_trade_line_items=[line_item_1],\n applicable_header_trade_agreement=trade_agreement,\n applicable_header_trade_delivery=trade_delivery,\n applicable_header_trade_settlement=trade_settlement)\n\nfacturx_data = FacturXData(exchanged_document_context=doc_context, exchanged_document=document,\n supply_chain_transaction=transaction)\n\nif __name__ == '__main__':\n xml = FacturXGenerator.generate(facturx_data, InvoiceProfile.BASIC)\n\n xml_string = ET.tostring(xml, pretty_print=True, encoding='utf-8').decode('utf-8')\n print(xml_string)\n\n```\n\n## \ud83e\udd1d Contributing\n\nContributions are welcome! Feel free to submit issues, bug reports, or pull requests.\n\n## \ud83d\udcc4 License\n\nThis project is licensed under the MIT License. See [LICENSE](./LICENSE) for details.\n\n## \ud83e\uddfe About Factur-X\n\nFactur-X is the Franco-German standard for hybrid electronic invoices, combining PDF and XML to meet the requirements of\nboth businesses and tax authorities across the EU.\n\nLearn more at: https://www.factur-x.org/\n",
"bugtrack_url": null,
"license": null,
"summary": "Python package using Pydantic models to generate FacturX-compliant documents",
"version": "0.6.3",
"project_urls": {
"Repository": "https://github.com/vartur/pyfactx"
},
"split_keywords": [
"factur-x",
" invoicing",
" en16931",
" e-invoicing",
" xml"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "1c7eda77431a847154d70daaa53826ce0cde8415d02178ddba7437d7edad5909",
"md5": "4fce3c8962b6484e8b81f82aaea8e1eb",
"sha256": "613d1b3e204534cceba21033c28741604213c6abde587bcdbd6b9c09ce8f1d2c"
},
"downloads": -1,
"filename": "pyfactx-0.6.3-py3-none-any.whl",
"has_sig": false,
"md5_digest": "4fce3c8962b6484e8b81f82aaea8e1eb",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.12",
"size": 324147,
"upload_time": "2025-08-07T15:40:46",
"upload_time_iso_8601": "2025-08-07T15:40:46.371701Z",
"url": "https://files.pythonhosted.org/packages/1c/7e/da77431a847154d70daaa53826ce0cde8415d02178ddba7437d7edad5909/pyfactx-0.6.3-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ced1dbaaafd63bb51dd6cb259325f97f98a088da194839afac2232d19aa03368",
"md5": "667c761025f0e145551dc28cc6ccdada",
"sha256": "d8768265de4fdcff6d9a1b2ea7454a52d485b2cacb8002742268e1ec21163bb2"
},
"downloads": -1,
"filename": "pyfactx-0.6.3.tar.gz",
"has_sig": false,
"md5_digest": "667c761025f0e145551dc28cc6ccdada",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.12",
"size": 281040,
"upload_time": "2025-08-07T15:40:47",
"upload_time_iso_8601": "2025-08-07T15:40:47.622651Z",
"url": "https://files.pythonhosted.org/packages/ce/d1/dbaaafd63bb51dd6cb259325f97f98a088da194839afac2232d19aa03368/pyfactx-0.6.3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-08-07 15:40:47",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "vartur",
"github_project": "pyfactx",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"lcname": "pyfactx"
}