From 2b43ae8bb7e3ac1ed651f48a8ec8e95c80291628 Mon Sep 17 00:00:00 2001 From: seanpham99 Date: Wed, 20 May 2026 11:31:54 +0700 Subject: [PATCH] docs(python): fix PyPI install command to dnse-sdk-openapi The README incorrectly told users to `pip install openapi-sdk`, but that package name does not exist on PyPI. The published distribution is dnse-sdk-openapi (https://pypi.org/project/dnse-sdk-openapi/). Also note msgpack for websocket-marketdata examples. --- python/README.md | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/python/README.md b/python/README.md index 3454494..879c3fe 100644 --- a/python/README.md +++ b/python/README.md @@ -27,11 +27,23 @@ and investment applications. #### Install from PyPI +The package on PyPI is **`dnse-sdk-openapi`** (there is no package named `openapi-sdk`): + +```console +pip install dnse-sdk-openapi +``` + +For WebSocket examples that use MessagePack encoding ([`websocket-marketdata/`](websocket-marketdata)): + ```console -pip install openapi-sdk +pip install dnse-sdk-openapi msgpack ``` -Upgrade +Upgrade: + +```console +pip install -U dnse-sdk-openapi +``` ### Usage