Metadata-Version: 2.4
Name: xtquant-rpc-client
Version: 0.1.0
Summary: Cross-platform gRPC client for remotely hosted xtquant domains.
Requires-Python: <3.14,>=3.11
Requires-Dist: grpcio>=1.78.0
Requires-Dist: numpy>=2.4.3
Requires-Dist: pandas>=3.0.1
Requires-Dist: protobuf>=6.33.6
Requires-Dist: pyarrow>=23.0.1
Description-Content-Type: text/markdown

# xtquant-rpc-client

Cross-platform Python client for remotely hosted `xtquant` domains.

Current scope:

- gRPC transport over protobuf
- token-based authentication
- `xtdata` synchronous read interface wrappers

Typical usage:

```python
from xtquant_rpc_client import configure_default_client, xtdata

configure_default_client(host="127.0.0.1", port=50051, token="your-token")
dates = xtdata.get_trading_dates("SH", count=5)
```
