9

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

现在,我的包的真实文档保存在其他地方。我想摆脱那个 PyPi 链接和那个愚蠢的页面。有办法吗?


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

“不上传任何内容”或“上传空的 zip”都不起作用,PyPi 会检查 zip 并且它必须包含 index.html 文件。

4

2 回答 2

10

只需创建一个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。然后登录并转到您的包的管理页面。在那里你会找到一个上传压缩文档的按钮:

在此处输入图像描述

于 2011-06-30T07:50:06.747 回答
4

Pypi最近添加了一个销毁文档的选项。

登录到您的软件包,现在可以选择Destroy Documentation.

在此处输入图像描述

于 2017-01-25T16:01:56.907 回答