Classe para formatar valores para o formato de Real Brasileiro
Project description
Real brasileiro
Status do projeto: Em desenvolvimento
este projeto tem como objetivo me ajudar na formatação, sanitização e apresentação dos valores com os quais eu diariamente trabalho.
Entradas
from real_br import Real
print(Real(10.10),
Real(10),
Real('R$ 100,55'))
Nos testes você consegue conferir melhor em quais formatos a classe aceita os valores.
Criando objeto
from real_br import Real
valor = 10
real = Real(valor)
print(real)
você também pode obter o equivalente em centavos usando
from real_br import Real
valor = 10
real = Real(valor)
print(real.centavos)
A classe retorna float, str e int (int é retornado em centavos)
from real_br import Real
valor = 10
real = Real(valor)
print(float(real), int(real), str(real))
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
real_brasileiro-0.0.2.tar.gz
(3.5 kB
view details)
File details
Details for the file real_brasileiro-0.0.2.tar.gz
.
File metadata
- Download URL: real_brasileiro-0.0.2.tar.gz
- Upload date:
- Size: 3.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bedb990d7c5200b7c19de11ba620bdae908c5bd5565bea1a78729f8ed62af340 |
|
MD5 | 4165149446df7b222dc0a37278a990bf |
|
BLAKE2b-256 | a73e93167167fb1734e8408d0620d444bc8d0fc41dea3c5aadd2a95208385dfc |