Comment on page
Getting Started
The cloud hosted version of StreamSQL requires an API key.
- 2.
- 3.
pip install streamsql
Our library is available for Python 3. On some installations you may have to use pip3 rather than pip.
Cloud
Local
Managed
feats = streamsql.FeatureStore(apikey="YOUR API KEY")
feats = streamsql.Local()
feats = streamsql.Managed(
host="SERVER HOSTNAME",
port=PORT NUMBER,
)
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:
Last modified 3yr ago