Metadata-Version: 2.4
Name: uda
Version: 2.9.1
Summary: Universal Data Access (UDA)
License: Apache-2.0 license
Project-URL: homepage, https://ukaea.github.io/UDA/
Project-URL: documentation, https://ukaea.github.io/UDA/
Project-URL: source, https://github.com/ukaea/UDA
Project-URL: tracker, https://github.com/ukaea/UDA/issues
Keywords: deprecated
Classifier: Intended Audience :: Science/Research
Classifier: Programming Language :: C
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Requires-Python: >=3.5
Description-Content-Type: text/markdown
Requires-Dist: pyuda
Provides-Extra: plot
Requires-Dist: pyplot; extra == "plot"
Provides-Extra: full
Requires-Dist: pyplot; extra == "full"
Requires-Dist: rich; extra == "full"

# This package is deprecated

Please use ['pyuda'](https://pypi.org/project/pyuda/) instead. This package is now for compatibility only and may be removed in the future. Installing this 'uda' package will now only install a shim which references the underlying 'pyuda' package. 

Install the new package directly using:
```
pip install pyuda
```

Previous release versions (2.7.6-2.8.1) are still hosted here. The first release under the new pyuda name is 2.9.0.

## Pyuda package description

See ['pyuda'](https://pypi.org/project/pyuda/) for most up to date descriptions. Below is the package information as of release 2.8.1.

pyuda is the python interface to the uda client library. It is used for remote access to scientific and experimental data from a number of international labs hosting uda data servers. 

- **Website:** https://ukaea.github.io/UDA/
- **Documentation:** https://ukaea.github.io/UDA/
- **Source Code:** https://github.com/ukaea/UDA
- **Issue Tracker:** https://github.com/ukaea/UDA/issues


## Quick-start

```py
import pyuda

pyuda.Client.server = "<server_address>"
pyuda.Client.port = <port_number>
client = pyuda.Client()
signal_object = client.get(signal, source)

```
