Python ETL framework
Project description
Declarative ETL engine.
Example of usege
Let’s assume that we have a file named input_1
aaaaaaaaaaaaaaaaaaaaaabbbbbbbbbsome data 11 some data 2Y aaaaaaaaaaaaaaaaaaaaaabbbbbbbbbsome data 12 some data 2Y aaaaaaaaaaaaaaaaaaaaaabbbbbbbbbsome data 13 some data 2N
# helloworld.py
from engine.mapping import bind_id
@bind_id(object_id='input_1')
class SomeClass:
data_1 = '[31:43]'
data_2 = '[49:61]'
What we expect is to have 3 instances of classes SomeClass where data_1 and data_2 will have proper ranges of data. For example first instance will look like:
data_1 -> 'some data 11' data_2 -> 'some data 2Y'
Documentation
Documentation and links to additional resources are available at https://www.asyncstack.org/kigo-etl
License
Apache 2.0. See LICENSE for details.
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
kigo-etl-0.0.2.tar.gz
(7.0 kB
view hashes)