Retorna Json de chave informada por extenso
- Clone o repositório
- Crie um virtualenv com Python 3.5
- Ative o virtualenv
- Instale as dependências
- Rode os testes
- Execute o app
git clone https://github.com/ricardobz/ntow.git
cd ntow
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
python -m unittest
python app.py
curl http://127.0.0.1:5000/42
{
"extenso": "quarenta e dois"
}
curl http://127.0.0.1:5000/1025
{
"extenso": "mil e vinte e cinco"
}