Metadata-Version: 2.1
Name: pyexecutors
Version: 0.1.7
Summary: 
         A light-weight library to efficiently run series of 
        asynchronous and synchronous tasks concurrently
        without worrying about managing different threads
        on your own.
        
    
Home-page: https://github.com/tanmay23235616/pyexecutors
Author: TANMAY MAJUMDAR
Author-email: tanmaymajumdar5612@gmail.com
License: MIT
Download-URL: https://github.com/tanmay23235616/pyexecutors/archive/0.1.0.tar.gz
Description: # PyExecutors - A simple multi-threading task management library
        
        
        
        
        ![Travis Passing](https://travis-ci.com/tanmay23235616/pyexecutors.svg?branch=master) 
        [![PyPI version](https://badge.fury.io/py/pyexecutors.svg)](https://badge.fury.io/py/pyexecutors) 
        [![PyPI Downloads](https://img.shields.io/pypi/dm/pyexecutors)](https://badge.fury.io/py/pyexecutors)
        [![PyPI license](https://img.shields.io/pypi/l/ansicolortags.svg)](https://pypi.python.org/pypi/ansicolortags/)
         [![Downloads](https://pepy.tech/badge/pyexecutors)](https://pepy.tech/project/pyexecutors)
        
        
        
        *Are you great with multi-threading?*
        
        [![](https://api.gh-polls.com/poll/01DZM6ZQJE9TQYRE5YS86JAH1S/Yes)](https://api.gh-polls.com/poll/01DZM6ZQJE9TQYRE5YS86JAH1S/Yes/vote)
        [![](https://api.gh-polls.com/poll/01DZM6ZQJE9TQYRE5YS86JAH1S/No)](https://api.gh-polls.com/poll/01DZM6ZQJE9TQYRE5YS86JAH1S/No/vote)
         
        PyExecutors is a utility module which provides straight-forward, powerful functions for working with asynchronous python functions.
         
        This runs an array of functions in series. You can program the functions to run synchronously or asynchronously in the order you desire. 
        
        
        ## Installation
        
        `pip install pyexecutors`
        
        Then, from a python interpreter 
        
        ```
        from pyexecutors.executors.Executors import SyncTasks, AsyncTasks, Executors
        
        def execute_method(exec_thread_number):
            // your function
        
        Executors() \
            .enqueue(AsyncTasks(execute_method, args=(1,))) \
            .enqueue(AsyncTasks(execute_method, args=(2,))) \
            .enqueue(SyncTasks(execute_method, args=(3,))) \
            .enqueue(AsyncTasks(execute_method, args=(4,))) \
            .execute()
        
        ```
        ### License
        
        This project is licensed under the MIT License - see the LICENSE.md file for details
        
        
        
        
Keywords: PYEXECUTOR,TANMAY23235616,MULTITHREADING
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
