Files
TERES_fastapi_backend/sdk/python/README.md
2025-10-13 13:18:03 +08:00

12 lines
203 B
Markdown

# ragflow-sdk
# build and publish python SDK to pypi.org
```shell
uv build
uv pip install twine
export TWINE_USERNAME="__token__"
export TWINE_PASSWORD=$YOUR_PYPI_API_TOKEN
twine upload dist/*.whl
```