Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 756 Bytes

File metadata and controls

32 lines (23 loc) · 756 Bytes

Vectorize Client

Python Api Client for Vectorize. For the full documentation, please visit docs.vectorize.io.

Installation

pip install vectorize-client

Then import the package:

import vectorize_client

Getting Started

List all your pipelines:

import vectorize_client as v

TOKEN = '<your-token>'
ORG = '<your-org-id>'

with v.ApiClient(v.Configuration(access_token=TOKEN)) as api:
    pipelines = v.PipelinesApi(api)
    response = pipelines.get_pipelines(ORG)
    print("Found" + str(len(response.data)) + " pipelines")

Visit docs.vectorize.io to learn more about the API.