Skip to main content

Python SX client-side library

Project description

Introduction

sxclient is a library which implements client-side methods for communicating with an SX Cluster. Using the provided objects and functions, it is possible to prepare and send a query as per the API documentation at http://docs.skylable.com/.

Internally, sxclient uses requests library (http://python-requests.org/) and currently requires Python 2.7.

Usage

In order to run an operation provided by the library, you must:

  • prepare a Cluster object, containing cluster location data;

  • prepare a UserData object, containing user credentials used to authorize operations;

  • prepare either a ClusterSession object or SXController object which serves as a context for the connections with the cluster.

Afterwards, you can run a series of operations using the previously created ClusterSession object as a context.

Initializing Cluster object

The most basic way of initializing the Cluster object is to pass the cluster name:

cluster = sxclient.Cluster('my.cluster.example.com')

If the passed name is not a FQDN, you should pass an IP address too. It will be used to communicate with the cluster in place of name.

cluster = sxclient.Cluster('clustername', ip_address='127.0.0.1')

In case you don’t want the connection to be secured by SSL, set is_secure to False:

cluster = sxclient.Cluster('my.cluster.example.com', is_secure=False)

You can also pass a custom port number:

cluster = sxclient.Cluster('my.cluster.example.com', port=8000)

In order to use a custom CA certificate for verification, pass a path to CA bundle in verify_ssl_cert parameter:

cluster = sxclient.Cluster('my.cluster.example.com', verify_ssl_cert='/path/to/ca/bundle')

In case you don’t want to verify SSL certificates at all, set verify_ssl_cert to False.

Initializing UserData object

There are multiple initialization methods for UserData. You can provide a path to the key file:

user_data = sxclient.UserData.from_key_path('/path/to/keyfile')

The key itself can be provided too — either encoded in base64:

user_data = sxclient.UserData.from_key('ZP1rHyR0QB6zEvCwYexGl9SF1G143C/D2hG9rEisLL2zJV3kWQvtAwAA')

or in its binary form:

user_data = sxclient.UserData('d\xfdk\x1f$t@\x1e\xb3\x12\xf0\xb0a\xecF\x97\xd4\x85\xd4mx\xdc/\xc3\xda\x11\xbd\xacH\xac,\xbd\xb3%]\xe4Y\x0b\xed\x03\x00\x00')

You can also initialize the object with username and password (and cluster UUID):

user_data = sxclient.UserData.from_userpass_pair('a_user', 'a_password', '10ca10ca-10ca-10ca-10ca-10ca10ca10ca')

Initializing SXController object

After preparing Cluster and UserData objects you may create an SXController object:

sx = sxclient.SXController(cluster, user_data)

Then get all available operations from

print sx.available_operations

You may call any operation via

sx.listUsers.call(...)

The return value is a HTTP response object holding the response from SX server. If a command supports the JSON format (as most of them do) you may call it directly:

sx.listUsers.json_call(...)

After you are done working with SXController gracefully close it with:

sx.close()

Running an operation

Currently the following operations are available:

createBlocks
createUser
createVolume
deleteFile
deleteVolume
flushUploadedFile
getBlocks
getClusterMetadata
getClusterStatus
getFile
getFileMeta
getNodeStatus
getVolumeACL
initializeAddChunk
initializeFile
listFileRevisions
listFiles
listNodes
listUsers
listVolumes
locateVolume
modifyUser
modifyVolume
removeUser
setClusterMetadata
setVolumeACL
updateVolumeACL
whoAmI

High level operations

Uploading and downloading files using the aforementioned operations requires some low level knowledge of the underlying SX protocol. To make your life easier, we added two dedicated helpers.

For a given SXController if you wish to upload a file use:

import os
file_size = os.stat('myfile.txt').st_size
uploader = sxclient.SXFileUploader(sx)
with open('myfile.txt', 'r') as fo:
   uploader.upload_stream('my-volume', file_size, 'my_new_file_name.txt', fo)

and if you wish to download a file use:

downloader = sxclient.SXFileDownloader(sx)
content = downloader.get_file_content('my-volume', 'my_new_file_name.txt')

Additional doc

For more information regarding usage of a specific object see its docstring. For example, to see the description of listVolumes, use the Python built-in help function:

>>> help(sx.listVolumes)

or run pydoc in your favourite shell:

$ pydoc sx.listVolumes

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

sxclient-0.10.1.tar.gz (21.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

sxclient-0.10.1-py2-none-any.whl (35.9 kB view details)

Uploaded Python 2

File details

Details for the file sxclient-0.10.1.tar.gz.

File metadata

  • Download URL: sxclient-0.10.1.tar.gz
  • Upload date:
  • Size: 21.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for sxclient-0.10.1.tar.gz
Algorithm Hash digest
SHA256 c21d991a4c55f95f1ceff59acb30d7f4785e355b27b00add240e108400b73e60
MD5 c2b74719c0e82ed60d78589d4c4107f5
BLAKE2b-256 0271941cfdf1ae1d9efe3c3de276ffc6adb20df41d69930febbfdf23098ac0ef

See more details on using hashes here.

File details

Details for the file sxclient-0.10.1-py2-none-any.whl.

File metadata

File hashes

Hashes for sxclient-0.10.1-py2-none-any.whl
Algorithm Hash digest
SHA256 0733d98adf32739ee2a94c96b5aea42cc7b848561a3e9e64764cb697686f5f6d
MD5 54ad2efc01cb10815adb45e33b3578eb
BLAKE2b-256 26d6ea1d10f1718178b96a2b8a1963dbf5c9d1fb6c2d033dac6435a3683c88de

See more details on using hashes here.

Supported by

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