# python-sdk **Repository Path**: dolphindb/python-sdk ## Basic Information - **Project Name**: python-sdk - **Description**: No description available - **Primary Language**: Python - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-05-31 - **Last Updated**: 2025-12-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # DolphinDB Python SDK A C++ boosted API for Python, built on Pybind11. ## Requirements To use DolphinDB Python SDK, you'll need: - Python: - CPython: version 3.8 and newer - DolphinDB Server - Packages: - NumPy: version 1.18 and newer - pandas: version 1.0.0 and newer, but not version 1.3.0 - future - packaging - pydantic: version 2.0 and newer - Extension Packages: - PyArrow: version 9.0.0 and newer ## Installation To install the DolphinDB package, use the following command: ```sh pip install dolphindb ``` ## Example Code Here's an example of using DolphinDB Python SDK: ```python import dolphindb as ddb conn = ddb.Session() conn.connect("localhost", 8848, "admin", "123456") conn.run("1+1;") ----------------------- 2 ```