Seguia is a Python client for Oasis.
pip install git+https://github.com/toch/seguiafrom seguia.client import Client
client = Client(hostname='https://example.com')
json = client.index({'format': 'csv'})
client.upload(json['id'], 'example.csv')
json = client.search(format='csv')
client.download(json[0]['id'], 'myfile.csv')python setup.py testThis project is licensed under the terms of the MIT license.