Python SDK

Our Python package makes it a lot easer to use our API.

Installation

Install the marpledata module:

pip install marpledata

Usage

First set up 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('/library/search', json={
   "library_filter": {
      "timestamp_start": "1731106799",
      "timestamp_stop": "1738364399"
   }
})

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

Last updated