gpt4 book ai didi

python - 通过python脚本部署到artifactory

转载 作者:行者123 更新时间:2023-12-02 09:44:50 24 4
gpt4 key购买 nike

我正在尝试创建一个可以将 Artifactory 部署到 Artifactory 的 python 脚本。我使用的是 Python 3.4,我希望生成的脚本将其通过 py2exe,因此外部库可能会产生问题。

通过我所有的研究,我发现一种方法是这样的,但我不知道如何将它“翻译”为Python:

curl -X PUT -u user:password --data-binary @/absolute/path/my-utils-2.3.jar "http://localhost/artifactory/my-repo/my/utils/2.3/"

如何在 Python 中实现这一点?或者有任何一种部署方式吗?

最佳答案

一整天都在尝试,我已经使用requests进行了一些成功的测试。图书馆。

import requests

url = "repo/path/test.txt"

file_name = "test.txt"
auth=(USERNAME, PASSWORD)


with open(file_name, 'rb') as fobj:
res = requests.put(url, auth=auth, data=fobj)
print(res.text)
print(res.status_code)

py2exe 没有任何问题。

关于python - 通过python脚本部署到artifactory,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27270793/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com