Skip to main content

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


Download files

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

Source Distribution

vdk-ingest-http-0.2.670842377.tar.gz (5.1 kB view details)

Uploaded Source

File details

Details for the file vdk-ingest-http-0.2.670842377.tar.gz.

File metadata

File hashes

Hashes for vdk-ingest-http-0.2.670842377.tar.gz
Algorithm Hash digest
SHA256 0d0299574410b53053fc214c6e3b1213d3c96eb180bbbfe7de4bf0fb983151a2
MD5 5038db18dde61bb35fa966aededa45ed
BLAKE2b-256 dca46df50d7dda7ffb1fba0427a0d7483d957b13a0c955946b6e024dec00f9a9

See more details on using hashes here.

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