Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/juanbindez/priceformatter
format prices
https://github.com/juanbindez/priceformatter
Last synced: 3 days ago
JSON representation
format prices
- Host: GitHub
- URL: https://github.com/juanbindez/priceformatter
- Owner: JuanBindez
- License: gpl-2.0
- Created: 2024-09-09T01:17:19.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-09-09T01:36:34.000Z (2 months ago)
- Last Synced: 2024-09-09T02:43:35.674Z (2 months ago)
- Language: Python
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 CurrencyFormatterapp = 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 %}
```