Not working on master at the moment.
For a working POC version, see branch first_implementation
At this time virtual env is only used for the editor.
To run:
python etl
To run specifying the job xml:
python etl simple.xml
To run tests:
python tests
The simple.xml
example has 4 steps:
- Print "Hello World"
- Ask for a name (user input)
- Change the inserted name to upper case
- Print the message with insert name in upper case
Execution:
$ python etl
Hello World
Insert a name: test
The inserted name in upper case is: TEST