Skip to content

Beacon Python SDK

The Beacon Python SDK is a powerful library that allows developers to interact with the Beacon Data Lake programmatically using Python. It provides a simple and intuitive interface for querying datasets, managing datasets and tables, and performing various operations on the Beacon Data Lake.

The SDK is built on top of the Beacon REST API, ensuring seamless integration with the Beacon Data Lake ecosystem. It is open-source available on GitHub: beacon-api

The documentation for the Beacon Python SDK can be found on the documentation website.

Installation

You can install the Beacon Python SDK using pip. Run the following command in your terminal:

bash
pip install beacon-api

Getting Started

To get started with the Beacon Python SDK, you need to import the library and create a client instance that connects to your Beacon Data Lake.

python
from beacon_api import Client
# Create a client instance
client = Client("http://your-beacon-datalake-url")

To learn more about how to use the Beacon Python SDK, please refer to the official documentation.