From e19cb77de16aad0cff6c8d0252a9eb6961161ea6 Mon Sep 17 00:00:00 2001 From: Pere Miquel Brull Date: Fri, 2 Dec 2022 06:34:31 +0100 Subject: [PATCH] Docs - Python SDK installation (#9101) --- openmetadata-docs/content/sdk/python/index.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/openmetadata-docs/content/sdk/python/index.md b/openmetadata-docs/content/sdk/python/index.md index 22108edf373..4bfc3dec2b9 100644 --- a/openmetadata-docs/content/sdk/python/index.md +++ b/openmetadata-docs/content/sdk/python/index.md @@ -7,6 +7,19 @@ slug: /sdk/python We are now going to present a high-level Python API as a type-safe and gentle wrapper for the OpenMetadata backend. + + +The Python SDK is part of the `openmetadata-ingestion` base package. You can install it from [PyPI](https://pypi.org/project/openmetadata-ingestion/). + +Make sure to use the same `openmetadata-ingestion` version as your server version. For example, if you have the OpenMetadata +server at version 0.13.0, you will need to install: + +```python +pip install "openmetadata-ingestion~=0.13.0" +``` + + + In the [OpenMetadata Design](/developers/architecture), we have been dissecting the internals of OpenMetadata. The main conclusion here is twofold: - **Everything** is handled via the API, and