python-runner-web
Version:
Web server that allows you to run python remotely.
35 lines (23 loc) • 546 B
JavaScript
#!/usr/bin/env node
var argv = require('argv'),
PythonWeb = require("../index");
/// Process the arguments
var args = argv.option([
{
name: 'port',
short: 'p',
type: 'number',
description: 'Sets the server port',
},
{
name: 'python',
type: 'string',
description: 'Python binary name/path',
}
]).run();
/// Initialize and start the server
var server = new PythonWeb.Server({
port: args.options.port,
pythonBin: args.options.python
});
server.start();