Metadata-Version: 2.3
Name: codeocean
Version: 0.1.2
Summary: Code Ocean Python SDK
Project-URL: Homepage, https://github.com/codeocean/codeocean-sdk-python
Project-URL: Issues, https://github.com/codeocean/codeocean-sdk-python/issues
Project-URL: Changelog, https://github.com/codeocean/codeocean-sdk-python/blob/main/CHANGELOG.md
Author-email: Code Ocean <dev@codeocean.com>
License-Expression: MIT
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.11
Requires-Dist: dataclasses
Requires-Dist: dataclasses-json
Requires-Dist: requests
Requires-Dist: requests-toolbelt
Provides-Extra: dev
Requires-Dist: flake8; extra == 'dev'
Provides-Extra: publish
Requires-Dist: hatch; extra == 'publish'
Description-Content-Type: text/markdown

![Code Ocean Logo](https://raw.githubusercontent.com/codeocean/branding/main/logo/CO_logo_135x72.png)
# Code Ocean Python SDK
The Code Ocean Python SDK provides convenient access to the Code Ocean API from applications written in the Python language.
This SDK enables you to manage Code Ocean resources such as Capsules, Data Assets, and Computations in your Python applications.

## Documentation

The Code Ocean REST API documentation can be found in the [Code Ocean User Guide](https://docs.codeocean.com/user-guide/code-ocean-api).

## Installation

```sh
pip install -U codeocean
```

For development, install from source with:

```sh
pip install -e .[dev] -U
```
