Metadata-Version: 1.0
Name: remotely
Version: 0.1.5
Summary: Remotely is a simple and secure remote code execution api
Home-page: http://pypi.python.org/pypi/remotely
Author: Kefei Dan Zhou
Author-email: kefei.zhou@gmail.com
License: http://www.opensource.org/licenses/bsd-3-clause
Download-URL: http://pypi.python.org/packages/source/r/remotely/remotely-0.1.5.tar.gz
Description: Remotely
        ========
        Remotely is a simple and secure remote code execution api.
        You start the remotely server on the box where you want to execute code.
        
        ::
        
            from remotely import create_remotely_server
            server = create_remotely_server("YOUR_API_KEY", PORT)
            server.serve_forever()
            ...
        
        And you use the remotely decorater for any function you want to run remotely.
        
        ::
        
            from remotely import remotely
        
            @remotely("YOUR_API_KEY", SERVER, PORT)
            def remote_code():
                # import required packages
                # do something here
                return result
        
            # function will be executed on the remote server
            remote_code()
        
        What you can use remotely for:
        
        - to run code under another version of python
        - to access libraries not available on the current box 
          (for example use win32com from linux)
        - to access resources (files etc) on another box 
        
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: System :: Distributed Computing
Classifier: Topic :: Utilities
