如何/在哪里发布 Python 包

2022-01-13 00:00:00 python package

问题描述

如果一个人创建了一个有用的 Python 包,如何/在哪里发布/宣传它以供其他人使用?

If one creates a useful Python package, how/where does one publish/advertise it for other people to use?

我已经把它放在了 hithub 上,但几个星期后即使谷歌也找不到它.包装整洁&完成,我是为个人使用而制作的,不与他人分享会很遗憾:)

I've put it on hithub, but even Google does not find it after a few weeks. The package is neat & complete, I made it for my personal use and would be a shame not to share it with others :)


解决方案

所以,要使包对 pip install 可用,您必须在 Python 包索引中注册它 (PyPI): https://pypi.python.org/pypi

So, to make the package available to a pip install, you have to register it in the Python Package Index (PyPI): https://pypi.python.org/pypi

还有测试环境,您可以在其中上传您的包以测试您的设置是否正常,然后再进行真正的交易:https://testpypi.python.org/pypi

There's also the test environment, where you can upload your packages to test if your setup is ok before going to the real deal: https://testpypi.python.org/pypi

您在其中一台服务器上创建了一个帐户,然后就可以上传您的包裹.但是,在此之前,您必须使用 setuptools 构建您的包.这是打包和分发的文档:https://packaging.python.org/distributing/

You create an account in one of the servers and will be able to upload your package. But, before that, you will have to build your package using setuptools. Here's the documentation for packaging and distributing: https://packaging.python.org/distributing/

这个过程可能有点无聊,所以我写了一个小工具来让它更简单.也许它对你有用:https://github.com/hugollm/foster

The proccess can be little boring, so I wrote a little tool to make it simpler. Maybe it's of some use to you: https://github.com/hugollm/foster

相关文章