1 Star 0 Fork 3

flyingakain/MultNodeVirtualLive

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
client.py 568 Bytes
一键复制 编辑 原始数据 按行查看 历史
Xingyan Chen 提交于 2022-10-24 22:04 . multi node version 0.0.1
import json
import requests
class Client(object):
# 通过IP, 用户名,密码,超时时间初始化一个远程Linux主机
def __init__(self, host, port):
self.host = host
self.port = port
self.data = {}
def allocating_task(self, text, index):
print(index)
print(self.port)
url = 'http://' + self.host + ':' + self.port + '/general_video'
self.data["text"] = text
self.data["index"] = index
response = requests.post(url, data=json.dumps(self.data))
return response
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/flyingakain/MultNodeVirtualLive.git
git@gitee.com:flyingakain/MultNodeVirtualLive.git
flyingakain
MultNodeVirtualLive
MultNodeVirtualLive
master

搜索帮助