Metadata-Version: 1.1
Name: PY4GRID
Version: 1.0.3
Summary: a little framework to simule multiprocessing over a lot of computers
Home-page: UNKNOWN
Author: João Jorge Pereira Farias Junior
Author-email: joaojfarias@gmail.com
License: GPLv3+
Description: 
        
        import random
        import org.py4grid.GP as gp
        
        
        def testando(lista):
            for x in range(2 * 1):
                lista.append(random.random())
            return lista
        
        
        if __name__ == '__main__':
        
            from multiprocessing.dummy import Pool as pool
            remote = gp.RemoteProcess(pool, file=__file__, discover_hosts=True)
        
            ret = remote.processwork( testando, [[], [], [], []],
                                     relative_path={'Darwin': '/Dropbox/BIBLIOTECA_PYTHON', 'Linux': '/Dropbox/BIBLIOTECA_PYTHON'},
                                     Hosts=[('localhost', 4680)])
        
            for item in ret:
                for sub in item:
                    print(len(sub), sub)
        
        
        
        
        before use this framework, 
        starts PY4GRIDSERVER generated in PythonXX\Script directory for begin a server
        and then start DISCOVER if you want to use the option discover_hosts, this option works discovering the address of the servers started
        and only works if the Hosts argument is empty, if you do not wish to use this option must explicitly pass the argument Hosts
        
        example:
        
        C:\Python33\Script\PY4GRIDSERVER <- starts the server on port 4680
        C:\Python33\Script\DISCOVER <- start the discoverer of servers
        
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Topic :: System :: Distributed Computing
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
