Skip to main content

VAI toolkit, to add data in our platform

Project description

VAI toolkit

Quickstart

  1. To add data to our platform use this package like below

pip install vai-toolkit

  1. then add import statement like this

from vai_toolkit import vai

here is the code to use the plugin

Data has to be in a dictionary. With time stamps in the indicated 'dd-mm-yr'

data = { "id": [11111, 1], "Capital Gain": [10000, 15000] }   # Columns data
dates = ["12-15-2021", "12-16-2021"]  # Dates
times = ["11:08:50", "11:09:50" ]  # Times

We have implemented a series of security measurements including pipeline id and security secrets which can be accessed using the following.

pipeline = os.getenv("PIPELINE") # Pipeline
user_secret = os.getenv("USER_SECRET") # UserSecret

Then finally, upload the data.

res = vai.upload_data(data, dates, times, pipeline, user_secret, allow_new_columns=True, allow_duplicate=True, allow_new_category=True)

Note:

Last 3 fields are optionals (allow_new_columns, allow_duplicate, allow_new_category)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vai_toolkit-0.0.4.tar.gz (3.6 kB view hashes)

Uploaded Source

Built Distribution

vai_toolkit-0.0.4-py3-none-any.whl (5.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page