Metadata-Version: 2.1
Name: udc
Version: 0.3.2
Summary: The Universal Data Client command-line tool
Author: Ernest Prabhakar
Author-email: ernest@quiltdata.io
Requires-Python: >=3.10,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: anyio (>=3.7.0,<4.0.0)
Requires-Dist: asyncclick (>=8.1.3.4,<9.0.0.0)
Requires-Dist: benchling-sdk (>=1.6.1,<2.0.0)
Requires-Dist: quilt3 (>=5.3.1,<6.0.0)
Requires-Dist: quiltplus (>=0.9.3)
Requires-Dist: trio (>=0.22.0,<0.23.0)
Requires-Dist: typing-extensions (>=4.5.0,<5.0.0)
Requires-Dist: un-yaml (>=0.3.1)
Requires-Dist: urllib3 (<2)
Description-Content-Type: text/markdown

# UDC

## The Universal Data Client

### What is UDC?

Universal Data is an open source initiative to build
a decentralized, cryptographically-secure ecosystem
containerizing both structured and unstructured data.

UDC is the initial (alpha) client for that system.
It currently supports both Quilt and Benchling URIs.
For example:

- `udc list "quilt+s3://quilt-example#package=examples/wellplates"`
- `udc patch "benchling+https://dtt.benchling.com?name=Update#type=Entry&id=etr_123"`

## Installation

NOTE: UDC requires Python 3.10 or higher.
You can check your version with `python3 --version`.
If you have an older version, you will need to update your environment to a
[newer version of Python](https://www.pythoncentral.io/how-to-update-python/).

### Production Package

From PyPi:

<!--pytest.mark.skip-->
```bash
python3 -m pip install udc # OR
python3 -m pip install --upgrade udc
which udc
```

## Development Branch

<!--pytest.mark.skip-->
```bash
python3 -m pip install git+https://github.com/data-yaml/udc.git@main
```

## Cloned

When cloned from [GitHub](https://github.com/data-yaml/udc):

```bash
poetry install
```

<--

```bash
alias udc="poetry run udc"
```
-->

## Usage

```bash
udc # prints help
```

### List contents of a specific package instance

```bash
udc list "quilt+s3://quilt-example#package=examples/wellplates@6782cf98a2"
```

e.g.,
<!--pytest-codeblocks:expected-output-->
```bash
"quilt+s3://quilt-example#package=examples/wellplates@6782cf98a2&path=README.md"
"quilt+s3://quilt-example#package=examples/wellplates@6782cf98a2&path=autoplate_H1N1.csv"
"quilt+s3://quilt-example#package=examples/wellplates@6782cf98a2&path=data_products.ipynb"
"quilt+s3://quilt-example#package=examples/wellplates@6782cf98a2&path=neutralisation-altair.json"
"quilt+s3://quilt-example#package=examples/wellplates@6782cf98a2&path=neutralisation.json"
"quilt+s3://quilt-example#package=examples/wellplates@6782cf98a2&path=quilt_summarize.json"
"quilt+s3://quilt-example#package=examples/wellplates@6782cf98a2&path=render.html"
```

### List all versions of a package

```bash
udc list "quilt+s3://quilt-example#package=examples/wellplates" | head -n 1
```

e.g.,
<!--pytest-codeblocks:expected-output-->
```bash
"quilt+s3://quilt-example#package=examples/wellplates@6782cf98a2c600f4c519efd5de868d5ef1e05ac92fcb0fa56044bb8c925c5f02"
```

### List all packages in a registry

```bash
udc list quilt+s3://quilt-example | head -n 1
```

e.g.,
<!--pytest-codeblocks:expected-output-->
```bash
"quilt+s3://quilt-example#package=akarve/amazon-reviews:latest"
```

### Get a package into a specific directory

You can also use `put` (replace) and `patch` (merge) if you have write access.

```bash
udc get "quilt+s3://quilt-example#package=examples/wellplates@6782cf98a2" --dir /tmp/wellplates
```

Checking the download directory:

```bash
ls /tmp/wellplates
```

Should reveal the following output:
<!--pytest-codeblocks:expected-output-->
```bash
README.md
autoplate_H1N1.csv
data_products.ipynb
neutralisation-altair.json
neutralisation.json
quilt_summarize.json
render.html
```

## Development

### Testing

<!--pytest.mark.skip-->
```bash
make test
```

### Continuous Monitoring

<!--pytest.mark.skip-->
```bash
make watch
```

### Create Package

WARNING: Do this only if you are the maintainer of the package.

Be sure you to first set your [~/.pypirc](https://pypi.org/manage/account/) using `poetry config pypi-token.pypi <pypi-api-token>`

<!--pytest.mark.skip-->
```bash
# merge PR
make tag
make pypi
poetry publish
```

