Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/llnl/kosh
Kosh allows codes to store, query, share data via an easy-to-use Python API. Kosh lies on top of Sina and as a result can use any database backend supported by Sina. In adition Kosh aims to make data access and sharing as simple as possible.
https://github.com/llnl/kosh
data-management provenance python radiuss workflow workflows
Last synced: about 2 months ago
JSON representation
Kosh allows codes to store, query, share data via an easy-to-use Python API. Kosh lies on top of Sina and as a result can use any database backend supported by Sina. In adition Kosh aims to make data access and sharing as simple as possible.
- Host: GitHub
- URL: https://github.com/llnl/kosh
- Owner: LLNL
- License: mit
- Created: 2020-09-28T16:35:09.000Z (over 4 years ago)
- Default Branch: stable
- Last Pushed: 2024-09-18T19:54:59.000Z (4 months ago)
- Last Synced: 2024-10-16T17:20:20.044Z (3 months ago)
- Topics: data-management, provenance, python, radiuss, workflow, workflows
- Language: Python
- Homepage:
- Size: 2.53 MB
- Stars: 7
- Watchers: 4
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![Kosh Logo](share/icons/png/Kosh_Logo_Blue.png)
# OverviewKosh allows codes to store, query, share data via an easy-to-use Python API. Kosh lies on top of Sina and as a result can use any database backend supported by Sina.
In addition Kosh aims to make data access and sharing as simple as possible.
Via "loaders", "transformers" and "operators" Kosh can access and process data in a consistent fashion, decoupled from data format and location.
Kosh is a Hindi word that means *treasury*, which is derived from *Kosha*, a Sanskrit word that means container in either a direct or metaphorical sense. A fairly good translation would be *repository*.
# Getting Started
To get the latest public version:
```bash
pip install kosh
```To get the latest stable, from a cloned repo simply run:
```bash
pip install .
```Alternatively add the path to this repo to your `PYTHONPATH` environment variable, or in your code with:
```python
import sys
sys.path.append(path_to_kosh_repo)
```For more details look into the [installation doc](INSTALL.md)
# First steps
See [this file](docs/source/users/index.md)
# Getting Involved
Kosh is user-oriented, and users' questions, comments, and contributions help guide its evolution. We welcome involvement and feedbacks.# Contact Info
You can reach our team at [email protected].
Kosh main developer can be reached at: [email protected]# Contributing
Contributions should be submitted as a pull request pointing to the develop branch, and must pass Kosh's CI process; to run the same checks locally follow the instructions in the tests directory.Contributions must be made under the same license as Kosh (see the bottom of this file).
# Release and License
Kosh is distributed under the terms of the MIT license; new contributions must be made under this license.SPDX-License-Identifier: MIT
``LLNL-CODE-814755``