Python client library for SandCage's API
Project description
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sandcage-0.2.0.tar.gz.
File metadata
- Download URL: sandcage-0.2.0.tar.gz
- Upload date:
- Size: 4.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eeae799ec0f880612636a4bca22dffb63283f4ccfd04ad2a444cb50ca1c161a1
|
|
| MD5 |
a57b50ef77c5891fae941c2fe903dc19
|
|
| BLAKE2b-256 |
19e8f030a749ca2b2bd5213766f6f2d92f643ae0956506d812b03bbcbf99866a
|
File details
Details for the file sandcage-0.2.0-py2.py3-none-any.whl.
File metadata
- Download URL: sandcage-0.2.0-py2.py3-none-any.whl
- Upload date:
- Size: 5.3 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b32042b42f0be25aeda1e23518d556fba80cd0f3158e19896502e0f2537f549
|
|
| MD5 |
3fbd147f94a187f6561e416b951adbaf
|
|
| BLAKE2b-256 |
07eb29b1fa8e9673a13e19e8f41eaea07814dcf59a0a1f51c82689fa919accd7
|