Versatile Data Kit SDK ingestion plugin to ingest data via http requests.
Project description
VDK-INGEST-HTTP Plugin
This plugin provides functionality to ingest data over http.
Usage
To use the plugin, just install it, and set the method attribute of send_object_for_ingestion(),
and send_tabular_data_for_ingestion() functions to "http".
Example:
def run(job_input: IJobInput):
# Do something to get data for ingestion
payload = get_some_data()
# Ingest the data
job_input.send_object_for_ingestion(payload=payload,
destination_table="aa_test_table",
method="http",
target="http://example.com/data-source"
)
The above example shows how to ingest json data. In this case, there are three arguments that are required: payload,
method and target. This would be fixed in the future, so that only payload would be required.
The payload needs to be a json object, and should contain the destination_table inside, using the @table key. For example:
{
"@table": "destination_table_name",
"column1": "value1",
"column2": "value2",
"column3": "value3",
}
The method attribute needs to be provided for the time being.
The target attribute should specify the url endpoint, where the data will be ingested.
Testing
To develop or test locally (from the current directory)
# install dev and test dependencies
pip install -r requirements
# install the plugin in editable mode
pip install -e .
# run the tests
pytest
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file vdk-ingest-http-0.1.414800992.tar.gz.
File metadata
- Download URL: vdk-ingest-http-0.1.414800992.tar.gz
- Upload date:
- Size: 3.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
de3a0e9fa1ec68180e42a34ffa76dc1713dd97463ed55b95cdf0860fb5a51a05
|
|
| MD5 |
6a80a31613906e014a4498694c1a7272
|
|
| BLAKE2b-256 |
52abcd9aa99a4aac17bdbeaeac4a6799355cb6853d15833286233ad10b58015f
|