Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

The Swagger documentation for the data space service is available via: https://dataspaceservice.jollywater-00619340.westus2.azurecontainerapps.io/docs

# Installing as a module

The module is part of a collection of client modules for the SFI Smart Ocean platform under the sfisop namespace on ``pypi.org``.

To use the distributed module on pypi install this and other modules you may require for your Smart Ocean client
using pip:

```bash
pip install sfisop-dataspace-sdk
```

## Local installation with pip

If you want to work on this module to test, debug, or develop, this module can be
Expand Down
11 changes: 0 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,6 @@ Basic client library for accessing the SmartOcean data space service to retrieve

The SmartOcean dataspace service provides a REST API.

# Installing as a module

The module is part of a collection of client modules for the SFI Smart Ocean platform under the sfisop namespace on ``pypi.org``.

To use the distributed module on pypi install this and other modules you may require for your Smart Ocean client
using pip:

```bash
pip install sfisop-dataspace-sdk
```

# Sample Client Code

A sample implementation of the client-side code is provided in the `main.py` file.
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
[tool.poetry]
name = "sfisop-dataspace-sdk"
version = "1.0.0"
version = "1.0.1"
description = "SDK for the SmartOcean Platform Data Space Service"
authors = ["Smart Ocean Consotrium"]
readme = "README.md"
license = "MIT"
packages = [{include = "sfisop", from = "src"}]

[tool.poetry.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion tests/test_dataspace_sdk.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class DataSpaceSDKTest(unittest.TestCase):
def setUp(self):
config_file = 'configs/config-dataspace-prod.yml'
self.dataspace_config = get_dataspace_config(config_file)
self.data_sources = ['virtualsensorhub', 'austevollsouth', 'austevollsouth', 'wsenseaustevoll1', 'wsenseaustevoll2']
self.data_sources = ['virtualsensorhub', 'austevollsouth', 'austevollnorth', 'wsenseaustevoll1', 'wsenseaustevoll2']

def test_get_latest(self):
client = DataSpaceClient(self.dataspace_config)
Expand Down