Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tiagocordeiro/pybling
Integração com API do Bling usando Python
https://github.com/tiagocordeiro/pybling
hacktoberfest
Last synced: about 2 months ago
JSON representation
Integração com API do Bling usando Python
- Host: GitHub
- URL: https://github.com/tiagocordeiro/pybling
- Owner: tiagocordeiro
- License: mit
- Created: 2018-11-26T18:06:32.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-11-16T09:46:53.000Z (about 2 months ago)
- Last Synced: 2024-11-16T10:27:00.743Z (about 2 months ago)
- Topics: hacktoberfest
- Language: Python
- Homepage:
- Size: 36.1 KB
- Stars: 16
- Watchers: 2
- Forks: 4
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# pybling
## Integração com API do Bling usando Python
[![Build Status](https://travis-ci.org/tiagocordeiro/pybling.svg?branch=master)](https://travis-ci.org/tiagocordeiro/pybling)
[![Updates](https://pyup.io/repos/github/tiagocordeiro/pybling/shield.svg)](https://pyup.io/repos/github/tiagocordeiro/pybling/)
[![Python 3](https://pyup.io/repos/github/tiagocordeiro/pybling/python-3-shield.svg)](https://pyup.io/repos/github/tiagocordeiro/pybling/)
[![GitHub](https://img.shields.io/github/license/mashape/apistatus.svg)](https://github.com/tiagocordeiro/pybling/blob/master/LICENSE)
[![codecov](https://codecov.io/gh/tiagocordeiro/pybling/branch/master/graph/badge.svg)](https://codecov.io/gh/tiagocordeiro/pybling)### Como rodar o projeto?
* Clone esse repositório.
* Crie um virtualenv com Python 3.
* Ative o virtualenv.
* Instale as dependências.
* Configure sua API Key```
git clone https://github.com/tiagocordeiro/pybling.git
cd pybling
python3 -m venv venv
source venv/bin/activate
pip install --upgrade pip
pip install -r requirements.txt
python contrib/env_gen.py
```### Testes
Rode os testes
```
pytest tests/tests.py --verbosity=1
```Como usar
```
>>> from pybling.products import list_products
>>> produtos = list_products()
>>> produtos```