py-jelastic documentation

Getting Started

To begin, import the Jelastic client and instantiate the API.

from jelastic import Jelastic
jelastic = Jelastic(
     'https://app.xapp.cloudmydc.com',
     token='d6f4e314a5b5fefd164995169f28ae32d987704f'
)

The library follows the convention from the Jelastic API documentation. For example, to get the list of accounts, you would do the following:

from jelastic import Jelastic

jelastic = Jelastic(
     'https://app.xapp.cloudmydc.com',
     token='d6f4e314a5b5fefd164995169f28ae32d987704f'
)

accounts = jelastic.billing.Account.GetAccounts()

The result is a JSON dictionary returned from the Jelastic API.

Table of Contents

Project