feat: Se agregan ejemplos para impresion en consola

This commit is contained in:
2025-10-21 12:34:04 -05:00
parent 5cf1958333
commit b078ecca06
2 changed files with 12 additions and 0 deletions

6
Api/bill_example.py Normal file
View File

@@ -0,0 +1,6 @@
from formats import print_bill
from tools import load_json
if __name__ == "__main__":
data = load_json('./test/fixtures/bill.json')
print_bill(data, "", "")

View File

@@ -0,0 +1,6 @@
from formats import print_customer_order
from tools import load_json
if __name__ == "__main__":
data = load_json('./test/fixtures/customer_order.json')
print_customer_order(data, "", "")