Skip to main content

Remotely is a simple and secure remote code execution api

Project description

Remotely is a simple and secure remote code execution api that supports both asynchronous and blocking execution.

Remotely can be used for:

  • distributing tasks to other boxes in parallel

  • running coding under other versions of python

  • accessing libraries not available on the current box such as using win32com from linux

  • accessing resources (files etc) on another box

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()

The asynchronous (non-blocking) version runs the function as a separate process on the remote server and supports simple job management functions (join and kill).

from remotely import RemoteClient
rc = RemoteClient("API_KEY", SERVER, PORT)
pid = rc.run(foo, arg1, arg2=key2)
output = rc.join(pid)
output = rc.kill(pid)

Created by Kefei Zhou (kefei.zhou at gmail)
Licensed under BSD 3-Clause, included as LICENSE in the source distribution.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

remotely-0.2.0.tar.gz (6.0 kB view details)

Uploaded Source

File details

Details for the file remotely-0.2.0.tar.gz.

File metadata

  • Download URL: remotely-0.2.0.tar.gz
  • Upload date:
  • Size: 6.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for remotely-0.2.0.tar.gz
Algorithm Hash digest
SHA256 80d6652021fc4b6bf1a60e4a6beb809d314a5e2a7704c4fd82a4dd6251fa87f8
MD5 c4e413de7d332047c95f1a244dbbd3f8
BLAKE2b-256 42350b9dcdc6b9fbc21bee187e6328a04c3aa530b178a2e472860a3c5c9ba35b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page