一个运行Python代码的web接口 A web interfacerun who can run Python code
Project description
# 使用指南
1、pip install pyengine
2、运行命令 pyengine run -d 缓存目录 -p 端口号 -n 可同时处理的请求数量
3、接口
/run/
body 体为一个FuncClass的子类
```python
from pyengine import FuncClass
import time
class My2(FuncClass):
def run(self):
print('MY is Running')
time.sleep(1)
return "你好啊!"
```
返回结果为
```json
{
"res": "你好啊!"
}
```
/add/
增加n的个数
/reduce/
减少n的个数
4、新增一个异步装饰器
```python
from pyengine import async_work_res
def deal_res(res):
print('res')
@async_work_res(deal_res)
def work():
return '大家好!'
```
可以使被装饰的函数启动一个进程或者线程去执行(在win下启动线程,在linux下启动进程),该装饰器的参数是一个可以处理被装饰的函数的结果
1、pip install pyengine
2、运行命令 pyengine run -d 缓存目录 -p 端口号 -n 可同时处理的请求数量
3、接口
/run/
body 体为一个FuncClass的子类
```python
from pyengine import FuncClass
import time
class My2(FuncClass):
def run(self):
print('MY is Running')
time.sleep(1)
return "你好啊!"
```
返回结果为
```json
{
"res": "你好啊!"
}
```
/add/
增加n的个数
/reduce/
减少n的个数
4、新增一个异步装饰器
```python
from pyengine import async_work_res
def deal_res(res):
print('res')
@async_work_res(deal_res)
def work():
return '大家好!'
```
可以使被装饰的函数启动一个进程或者线程去执行(在win下启动线程,在linux下启动进程),该装饰器的参数是一个可以处理被装饰的函数的结果
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
pyengine-0.0.3.tar.gz
(3.2 kB
view details)
File details
Details for the file pyengine-0.0.3.tar.gz
.
File metadata
- Download URL: pyengine-0.0.3.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 58a3f4048bd093de8d7a9ca792e52a10787a47bacfb3cbcd1ad209d4868e55f8 |
|
MD5 | 49c8e82b3a9849f94ed66d642f528a7a |
|
BLAKE2b-256 | 17d71606aa62121980965a704e1c9c4b34b2fa2a0ebea834ed07a5a313ebab56 |