Currency handling extension for Flask and SQLAlchemy
Project description
Flask-Currency
Currency handling extension for Flask.
Usage
###Initialization Initialize extension by providing Flask and Flask-SQLAlchemy instance.
from flask import Flask
from flask_currency import Currency
from flask_sqlalchemy import SQLAlchemy
app = Flask(__name__)
db = SQLAlchemy(app)
currency = Currency(app, db)
if __name__ == '__main__':
app.run()
Optionally, an extended currency model can be provided
(for translation support, etc.). If the model is not extended, it can be
accessed through the Currency.model
attribute.
Money class
A money class is defined, which uses the Currency model for value calculation and formatting.
>>> from flask_currency import Money
>>> price = Money(100, 'USD')
>>> print(price)
'$100.00'
>>> in_eur = price.convert_to('EUR')
>>> print(in_eur)
'90.71 €'
Currencies
The currencies table must be maintained, currency data must be added manually.
eur = currency.model(
name='Euro',
code='EUR',
sign='€',
value=1,
format_str='{:,.2f} €'
)
db.session.add(eur)
db.session.commit()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
FlaskCurrency-1.0.tar.gz
(2.9 kB
view details)
File details
Details for the file FlaskCurrency-1.0.tar.gz
.
File metadata
- Download URL: FlaskCurrency-1.0.tar.gz
- Upload date:
- Size: 2.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 52c10e18b34d2a2c1cd3b9c2224b02f90ed1fa907899dfd1041b8b47f89f276e |
|
MD5 | 07f4e15f80f372beb07b0a4235b4ac7a |
|
BLAKE2b-256 | 0a1e23d257521134cd04157547af9db849dfd569dd9530ae5d8cdabda8078c7f |