Skip to main content

Easily make requests of the MicroStrategy REST API

Project description

mstr-rest-requests

A extension to the excellent requests Session object, to enable more straightforward interaction with MicroStrategy's REST API.

Python package

Usage

Installation

Simply install the package however you normally install them, for example:

pip install mstr-rest-requests

Examples

Authentication

Here's how to get an authenticated session (currently only standard and anonymous authentication are supported):

from mstr.requests import MSTRRESTSession

session = MSTRRESTSession(base_url='https://demo.microstrategy.com/MicroStrategyLibrary/api/')
session.login(username='dave', password='hellodave')
session.has_session()
# returns True

Session handling

Several convenience methods are implemented to make dealing with Session objects easier.

def has_session(self)

Will return a boolean as to whether the session contains an authentication tokem.

def destroy_auth_token(self)

Removes the auth token from the session

def json(self)

Returns a JSON representation of the session that can be reconstituted with:

update_from_json(self, data)

where data is either a dict or a string containing JSON data.

HTTP requests

The MSTRRESTSession adds two parameters to all request methods:

include_auth=True, project_id=None

so you can specify a project_id on any request by adding the parameter.

Convenience methods for API calls

TODO

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mstr_rest_requests-0.14.1.tar.gz (97.6 kB view hashes)

Uploaded Source

Built Distribution

mstr_rest_requests-0.14.1-py3-none-any.whl (105.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page