Metadata-Version: 1.1
Name: rdc.etl
Version: 1.0.0a1
Summary: Extract Transform Load (ETL) toolkit for python
Home-page: https://rdc.li/etl/
Author: Romain Dorgueil
Author-email: romain@dorgueil.net
License: Apache License, Version 2.0
Download-URL: https://github.com/rdconseil/etl/tarball/1.0.0a1
Description: 
              Toolkit for doing data integration related work, using connected
              transformations. Unlike java based tools like talend or pentaho
              data-integration, this is a DIY framework, and if you're looking for a
              WYSIWIG ETL engine, you should probably go back to the previously cited
              ones.
        
              Not so relevant example:
        
                  >>> from rdc.etl.harness.threaded import ThreadedHarness as Harness
                  >>> harness = Harness()
                  >>> from rdc.etl.transform.extract import Extract
                  >>> extract = Extract(stream_data=({'foo': 'bar'}, {'foo': 'baz'}))
                  >>> from rdc.etl.transform.simple import SimpleTransform
                  >>> transform = SimpleTransform()
                  >>> transform.add('foo').filter('upper')
                  >>> from rdc.etl.transform.util import Log
                  >>> load = Log()
                  >>> harness.chain_add(extract, transform, load)
                  >>> harness()
        
              This is a work in progress, although it it used for a few different
              production systems, it may or may not fit your need, and you should
              expect to have to dive into the code for now, as neither documentation or
              tests are there to help.
        
              
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: Intended Audience :: Developers
Classifier: License :: Other/Proprietary License
Classifier: Operating System :: OS Independent
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Topic :: Database
Classifier: Topic :: Utilities
Classifier: Topic :: Text Processing :: Filters
Classifier: Topic :: Text Processing :: Indexing
