UNPKG
python-runner-web
Version:
latest (1.0.5)
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Web server that allows you to run python remotely.
github.com/teamcarma/node-python-runner-web
python-runner-web
/
index.js
24 lines
(19 loc)
•
228 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
"use strict"
;
/** * * Python Web package * *
@type
{
Object
} * */
var
PythonWeb
= {
/** * * The server facility * *
@type
{
Promise
} * */
Server
:
require
(
"./src/Server"
), };
module
.
exports
=
PythonWeb
;