Metadata-Version: 1.1
Name: pyperaptor
Version: 0.1.1
Summary: Small pipeline organizer for multiprocessing execution
Home-page: https://github.com/fsan/pyperaptor
Author: fsan
Author-email: pabyo.sansinaeti@gmail.com
License: MIT
Download-URL: https://github.com/fsan/pyperaptor/releases/download/0.1.0/pyperaptor-0.1.0.tar.gz
Description: 
            PypeRaptor is a library that provides a functional pipeline structure.
            Each execution from the pipeline takes an input item from beginning to end and return the result.
            The Pipeline may be modified by add operator and expects a Node.
            To execute a Pipeline for a single item, user can execute **push** function with item. This execution will pushes the input
            through the pipeline calling every function in the way.
            To execute several items, user can set an Iterable in **process** function.
        
            A generator can be part of the pipeline, and is recommended to be the first item to when using Pipeline in parallel mode.
            When in parallel mode, PypeRaptor provides a Device as in a way to reserve resources and avoid racing conditions among its threads.
        
            For examples go to:
            http://github.com/fsan/pyperaptor
        
          
Keywords: pipeline,dinossaurs,threading
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Other/Nonlisted Topic
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
