Skip to main content

Python client library for SandCage's API

Project description

https://d18m5nnl28b2pp.cloudfront.net/p/a/img/header.png
https://scrutinizer-ci.com/g/sandcage/sandcage-api-python/badges/quality-score.png?b=master https://travis-ci.org/sandcage/sandcage-api-python.svg?branch=master

sandcage-api-python is a python library for interfacing with SandCage’s API. The API documentation can be found at SandCage’s API documentation

Requirements

  • certifi

  • requests

In order to use the library you need a SandCage API Key. Once logged into SandCage, you can get your API Key from here.

Install

Using pip:

pip install sandcage

or alternatively clone and install:

git clone https://github.com/sandcage/sandcage-api-python
cd sandcage-api-python
python setup.py install

Usage

Simply:

from sandcage import SandCage

sc = SandCage('[YOUR_SANDCAGE_API_KEY]')
sc.list_files_service()

See more examples

To not include YOUR_SANDCAGE_API_KEY into your code you can for example save it as a file named SANDCAGE_API_KEY into your home directory:

cd ~
echo YOUR_SANDCAGE_API_KEY > SANDCAGE_API_KEY

and then use the following code to initialize SandCage:

import os.path
from sandcage import SandCage

api_key_dir = os.path.expanduser('~')
api_key_file = os.path.join(api_key_dir, 'SANDCAGE_API_KEY')
with open(api_key_file, 'r') as f:
    api_key = f.readline()

sc = SandCage(api_key=api_key)

Contributing

We are open to suggestions and code revisions, however there are some rules and limitations that you might want to consider first.

  • Code that you contribute will automatically be licensed under the Apache License Version 2.0.

  • Third party code will be reviewed, tested and possibly modified before being released.

These basic rules help ensure that this code remains Open Source and compatible with Apache 2.0 license. All contributions will be added to the changelog and appear in every release.

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

sandcage-0.2.0.tar.gz (4.0 kB view hashes)

Uploaded Source

Built Distribution

sandcage-0.2.0-py2.py3-none-any.whl (5.3 kB view hashes)

Uploaded Python 2 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