Skip to content

Latest commit

 

History

History
55 lines (35 loc) · 1.39 KB

README.md

File metadata and controls

55 lines (35 loc) · 1.39 KB

BoondManager Python connector

workflow

This Python connector is not an officially supported connector by BoondManager. It has been developed by a third-party and it is not officially endorsed or supported by the BoondManager team.

BoondManager is an ERP for consulting and IT services companies.

This python connector allows you to use the BoondManager API for your custom developments.

If you encounter any issues or have questions about this connector, please reach out to the developer or community for support.

from boondmanager.api import BoondmanagerClient

auth = {'user': 'YOUR_USER', 'password': 'YOUR_PASSWORD'}
client = BoondmanagerClient(basic_auth=auth)
projects = client.projects.all()

Prerequisite

  • Python >= 3.10

Installation

pip install pyboondmanager

Contribute

Installation

After cloning this repository, create a virtualenv and install the dependencies :

pip install -r requirements/dev.txt

Then, generate the documentation :

cd docs
make html
open _build/html/index.html

The next steps are on it !

Links