StreamSQL Docs
HOMEPRICINGSIGN UP
  • Introduction
  • Getting Started
  • Guide
    • API Overview
    • Connect and Upload Data
    • Transform and Join Data
    • Register and Serve Features
    • Generate Training Data
  • Examples
    • (Local) Iris Dataset
  • Login
  • Sign Up
  • Join our Slack Community
Powered by GitBook
On this page
  • Prerequisites
  • Install the Python SDK
  • Initialize the Client
  • Where to go from here

Getting Started

PreviousIntroductionNextAPI Overview

Last updated 4 years ago

Prerequisites

The cloud hosted version of StreamSQL requires an API key.

  1. Get your

  2. Make sure you have on your machine

Install the Python SDK

The easiest way to install the Python SDK for Python is to use .

pip install streamsql

Our library is available for Python 3. On some installations you may have to use pip3 rather than pip.

Initialize the Client

feats = streamsql.FeatureStore(apikey="YOUR API KEY")
feats = streamsql.Local()
feats = streamsql.Managed(
    host="SERVER HOSTNAME",
    port=PORT NUMBER,
)

Where to go from here

If you would like to jump into the basics of the API and how to use it, check out the API overview.

If you would prefer to jump directly into an example, check out one of the following:

Create a StreamSQL account
API key
Python 3.5 or above installed
pip
API Overview
(Local) Iris Dataset