Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/juanbindez/priceformatter

format prices
https://github.com/juanbindez/priceformatter

Last synced: 3 days ago
JSON representation

format prices

Awesome Lists containing this project

README

        

# priceformatter
format prices

### exemplo de uso no Flask:

```python
from flask import Flask, render_template
from your_module import CurrencyFormatter

app = Flask(__name__)

@app.route('/')
def index():
# Example products
produtos = [
{"nome": "Produto A", "preco": 1500.50, "quantidade": 10},
{"nome": "Produto B", "preco": 300.25, "quantidade": 5},
{"nome": "Produto C", "preco": 1200.75, "quantidade": 3}
]

# Instantiate the formatter for Real
real_formatter = CurrencyFormatter('Real')

return render_template('index.html', produtos=produtos, real_formatter=real_formatter)

```

### agora no html:

```html



Product List

Product List





Product Name
Price
Quantity



{% for produto in produtos %}

{{ produto.nome }}
{{ real_formatter.format_currency(produto.preco) }}
{{ produto.quantidade }}

{% endfor %}

```