Access Signal Ocean Platform data using Python.
Project description
The Signal Ocean SDK combines the power of Python and Signal Ocean's APIs to give you access to a variety of shipping data available in The Signal Ocean Platform.
Installation
Install the SDK with pip:
pip install signal-ocean
The Signal Ocean SDK depends on the pandas library for some of its data analysis features. Optional pandas dependencies are also optional in this SDK. If you plan to use data frame features like plotting or exporting to Excel, you need to install additional dependencies, for example:
pip install matplotlib openpyxl
For more information refer to pandas documentation.
Getting Started
To use the SDK, you need to create an account in our API Portal and subscribe to an API. Once you have a subscription key, put it inside an environment variable called SIGNAL_OCEAN_API_KEY.
Now you're ready to fetch some data:
from signal_ocean import PortAPI
port_api = PortAPI()
ports = port_api.get_ports()
print(ports)
If you don't want to use environment variables, want to use different keys for different APIs, or if you want to override the environment variables, you can configure your Connection when creating the API class:
from signal_ocean import VesselClassAPI, Connection
vessel_class_api = VesselClassAPI(Connection(api_key='YOUR KEY GOES HERE'))
vessel_classes = vessel_class_api.get_vessel_classes()
print(vessel_classes)
All API classes follow this pattern of configuration.
Check the docs for examples covering usage of our other APIs.
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 signal-ocean-1.0.2.tar.gz.
File metadata
- Download URL: signal-ocean-1.0.2.tar.gz
- Upload date:
- Size: 48.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f31560151cc633725445ba9a17bf0a1a79f187b7951b15acdc539d809f334946
|
|
| MD5 |
b9efcf49b6cc1fb13b7cbfcd563c180a
|
|
| BLAKE2b-256 |
c65c3a442372ae22d01b7b27b39b31a986f1627753f41418ab46a5ac773c1d0b
|
File details
Details for the file signal_ocean-1.0.2-py3-none-any.whl.
File metadata
- Download URL: signal_ocean-1.0.2-py3-none-any.whl
- Upload date:
- Size: 73.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
080f82ffa3d12772101d042d4a28b18d7ed485806bc94f2460c86e7955aa5f95
|
|
| MD5 |
88569eb9f94822a9718a6c5a8b5a3fe4
|
|
| BLAKE2b-256 |
20d81437b18c5d5892dac97afb444b94e8df6509f4e87f14e3c49d1930d1de0a
|