Metadata-Version: 2.1
Name: neuro-sdk
Version: 24.8.0
Summary: Apolo SDK
Home-page: https://github.com/neuro-inc/platform-client-python
Author: Apolo Team
Author-email: dev@apolo.us
License: Apache 2
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Information Technology
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.8.0
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: aiohttp>=3.8.1
Requires-Dist: yarl<1.9.0,>=1.7.0
Requires-Dist: pyyaml>=5.0
Requires-Dist: python-jose>=3.3.0
Requires-Dist: python-dateutil>=2.7.0
Requires-Dist: aiobotocore<3.0,>=2.3.0
Requires-Dist: aiodocker>=0.21.0
Requires-Dist: typing_extensions>=3.7.4
Requires-Dist: certifi
Requires-Dist: toml>=0.10.0
Requires-Dist: azure-storage-blob!=12.9.0,>=12.8.1
Requires-Dist: google-auth>=2.0.2
Requires-Dist: importlib_metadata>=4.11.4; python_version < "3.11"
Requires-Dist: packaging>=20.4
Requires-Dist: neuro-admin-client>=23.5.0
Requires-Dist: neuro-config-client>=24.4.3

[![codecov](https://codecov.io/gh/neuro-inc/platform-client-python/branch/master/graph/badge.svg)](https://codecov.io/gh/neuro-inc/platform-client-python)

# Preface

Welcome to Python Apolo-SDK for https://console.apolo.us/.

# Documentation

https://apolo-sdk.readthedocs.io/en/latest/

# Installation


Install from PyPI:

```shell
$ pip install apolo-sdk
```

# Contributing

For OSX users install coreutils to properly interpret shell commands:

```
brew install coreutils
```

Before you begin, it is recommended to have clean virtual environment installed:

```shell
$ python -m venv .env
$ source .env/bin/activate
```

Development flow:

* Install dependencies: `make setup`
* Reformat code: `make format`
* Lint: `make lint`
* Run tests: `make test`
