Metadata-Version: 2.4
Name: eolymp
Version: 0.12.47
Summary: Eolymp SDK for Python
Home-page: https://github.com/eolymp/contracts
Author: Sergey Kolodyazhnyy
Author-email: sergey@eolymp.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.0
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-python
Dynamic: summary

# Eolymp SDK in Python

This is SDK to talk to Eolymp API server pragmatically. [Learn more](https://support.eolymp.com/dev)

## Quick start example

```python
import eolymp.universe
import eolymp.core

transport = eolymp.core.HttpClient(token="etkn-...")

spaces = eolymp.universe.SpaceServiceClient(transport)
out = spaces.ListSpaces(request=eolymp.universe.ListSpacesInput())

for space in out.items:
    print(space.name)
```
