No project description provided
Reason this release was yanked:
esqueci de colocar package no setup.py
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.
Download
$pip install real-brasileiro
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))
A classe possui 100% de cobertura de testes
pytest -cov
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.2.1.tar.gz
(2.2 kB
view details)
File details
Details for the file real-brasileiro-0.2.1.tar.gz
.
File metadata
- Download URL: real-brasileiro-0.2.1.tar.gz
- Upload date:
- Size: 2.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 34de596fbfb3817c0929aa571330d8b5b55259a55383550a2345a3665831908b |
|
MD5 | 51b6956dae6a90d63844a4eacbf3ab76 |
|
BLAKE2b-256 | e42424b50bcb8b2b8f4b65c014b60890935bc8dc55915a29e33080dc97ac4d90 |