Python interface to the api for a MarkUs instance.
Install this package with pip:
$ pip install git+https://github.com/MarkusProject/markus-api.git
- python 3.6+
- the
url
of a running MarkUs website - your
api_key
(this can be obtained from the dashboard page of the MarkUs website)
Create a new Markus Api object:
import markusapi
api_key = 'mysecretapikey='
url = 'https://localhost:3000'
api = markusapi.Markus(api_key, url)
Print all user information
user_info = api.get_all_users()
print(user_info)
Check out the MarkUs API documentation for details on API calls:
https://github.com/MarkUsProject/Markus/wiki/RESTfulApiDocumentation