This commit is contained in:
guanjihuan 2023-11-24 23:30:06 +08:00
parent 45363e800d
commit 5c14e09a85
3 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
[metadata] [metadata]
# replace with your username: # replace with your username:
name = guan name = guan
version = 0.1.42 version = 0.1.43
author = guanjihuan author = guanjihuan
author_email = guanjihuan@163.com author_email = guanjihuan@163.com
description = An open source python package description = An open source python package

View File

@ -1,6 +1,6 @@
Metadata-Version: 2.1 Metadata-Version: 2.1
Name: guan Name: guan
Version: 0.1.42 Version: 0.1.43
Summary: An open source python package Summary: An open source python package
Home-page: https://py.guanjihuan.com Home-page: https://py.guanjihuan.com
Author: guanjihuan Author: guanjihuan

View File

@ -384,7 +384,7 @@ def get_PID(name):
guan.statistics_of_guan_package() guan.statistics_of_guan_package()
return id_running return id_running
# 在服务器上运行函数(说明:接口服务可能为关闭状态,如果无法使用请联系管理员。目前仅支持长度较短的函数,此外由于服务器只获取一个函数内的代码,因此不支持在运行的函数中调用其他个人编写的函数 # 在服务器上运行函数(说明:接口服务可能为关闭状态,如果无法使用请联系管理员。目前仅支持长度较短的函数,此外由于服务器只获取一个函数内的代码,因此需要函数是独立的可运行的代码。需要注意的是:返回的值是字符串类型,需要自行转换成数字类型。
def run(function_name, args=(), return_show=0, get_print=1): def run(function_name, args=(), return_show=0, get_print=1):
import socket import socket
import json import json
@ -396,7 +396,7 @@ def run(function_name, args=(), return_show=0, get_print=1):
'server': "python", 'server': "python",
'function_name': function_name.__name__, 'function_name': function_name.__name__,
'function_source': function_source, 'function_source': function_source,
'args': args, 'args': str(args),
'get_print': get_print, 'get_print': get_print,
} }
send_message = json.dumps(message) send_message = json.dumps(message)