Metadata-Version: 2.1
Name: anaconda-catalogs
Version: 0.1.0a1
Summary: Client library for Anaconda Catalogs
Author-email: Matt Kramer <mkramer@anaconda.com>
License: BSD-3-Clause
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: aiohttp
Requires-Dist: intake
Requires-Dist: requests
Provides-Extra: dev
Requires-Dist: mypy ; extra == 'dev'
Requires-Dist: pytest ; extra == 'dev'
Requires-Dist: tox ; extra == 'dev'
Requires-Dist: types-requests ; extra == 'dev'

# Anaconda Catalogs client

A light client library for interfacing with the Anaconda catalogs service.

## Usage

Currently, the catalogs are referenced by their unique ID of the form `cid/09e802da-65b3-4ea0-b60d-642c88c7a541`.
A user can load a catalog with the following:

```python
import anaconda_catalogs

cat = anaconda_catalogs.open_catalog("cid/09e802da-65b3-4ea0-b60d-642c88c7a541")
```

Alternately, the native `intake` plugin can be used:

```python
import intake

cat = intake.open_anaconda_catalog("cid/09e802da-65b3-4ea0-b60d-642c88c7a541")
```

# Development guide

A contributing guide can be found in [CONTRIBUTING.md](./CONTRIBUTING.md).
