Metadata-Version: 2.4
Name: reflex-sdk
Version: 0.1.3
Summary: Python SDK for Reflex hosted robot inference and training
Author: Reflex
Project-URL: Homepage, https://tryreflex.ai
Project-URL: Repository, https://github.com/reflex-inc/reflex
Keywords: robotics,inference,training,sdk
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: typer<0.24,>=0.23; python_version < "3.10"
Requires-Dist: typer>=0.24.1; python_version >= "3.10"

# Reflex Python SDK

Public Python package for hosted Reflex training, datasets, managed instances,
and action inference.

```bash
python -m pip install reflex-sdk
```

The package installs the `reflex` Python module and a `reflex` CLI command in
the active Python environment. If your Python installer puts console scripts in
a directory that is not on `PATH`, use the module entry point instead:

```bash
python3 -m reflex --help
```

```python
import reflex
```

This package is intentionally separate from `inference/`, which owns model
serving and Prime worker runtime code.
