Metadata-Version: 2.4
Name: hugsim_client
Version: 0.0.2
Summary: A client package for interacting with the HugSim API.
Project-URL: homepage, https://github.com/longxiaofei/HUGSIM/tree/hf-competitions/client
Project-URL: repository, https://github.com/longxiaofei/HUGSIM/tree/hf-competitions/client
Author: XDimLab
License-Expression: MIT
Requires-Python: >=3.7
Requires-Dist: numpy
Requires-Dist: requests
Requires-Dist: tenacity
Description-Content-Type: text/markdown

# Hugsim Client

## Quick Start

```python
from hugsim_client import HugsimClient

client = HugsimClient()

# Get the current state of the environment
client.get_current_state()

# Reset the environment
client.reset_env()

# Execute an action in the environment, it return current state.
client.execute_action(xxx)
```
