gpt4 book ai didi

python - 如何从 PyPi 中删除文档

转载 作者:太空狗 更新时间:2023-10-29 20:46:26 25 4
gpt4 key购买 nike

我刚刚注意到可以直接在 http://pypi.python.org/pypi/gensim 访问一些古老版本的文档(在顶部,在 Package Documentation 下)。我可能在很久以前第一次尝试 PyPi 时测试过该功能。

现在我的包的真实文档在别处维护。我想摆脱那个 PyPi 链接和那个愚蠢的页面。有办法吗?


到目前为止,我设法通过 PyPi 包管理界面“重新上传”了一个包含空 index.html 的 zip 文件。我认为这至少会为不幸点击 PyPi 文档链接的用户提供一个空白页面。有什么办法可以彻底删除吗?

“什么都不上传”和“上传一个空的 zip”都不起作用,PyPi 检查一个 zip,它必须包含一个 index.html 文件。

最佳答案

只需创建一个新的 index.html 文件,其中包含指向新文档的链接甚至重定向:

<html>
<head>
<title>A web page that points a browser to a different page after 2 seconds</title>
<meta http-equiv="refresh" content="2; URL=http://www.example.com">
<meta name="keywords" content="automatic redirection">
</head>
<body>
{PACKAGE_NAME}'s documentation is maintained elsewhere.
You will be redirected to the new documentation within 2 seconds.
If the browser does not automatically redirect you, you may want to go to <a href="http://www.example.com">the destination</a> manually.
</body>
</html>

现在压缩它并转到http://pypi.python.org/pypi .然后登录并转到您的包裹的管理页面。在那里你会找到一个按钮来上传压缩文档:

enter image description here

关于python - 如何从 PyPi 中删除文档,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6521931/

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