Python SDK

Using the Marple Python SDK

We created an SDK for Python that makes it easier to use our API.

Installation

Install the marpledata module:

pip install marpledata

Usage

First setup the connection using an access token:

from marple import Marple
m = Marple(ACCESS_TOKEN)
m.check_connection()

Calling API endpoints is as easy as:

m.get('/version')
m.post('/sources/info', json={'id': 98})

More details can be found at https://pypi.org/project/marpledata.

Last updated