How/where to publish Python package(如何/在哪里发布 Python 包)
问题描述
如果一个人创建了一个有用的 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
这篇关于如何/在哪里发布 Python 包的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何/在哪里发布 Python 包
基础教程推荐
- numpy float:比算术运算中内置的慢 10 倍? 2022-01-01
- 尝试制作WhatsApp机器人 2022-01-01
- pyserial - 可以从线程 a 写入串行端口,是否阻塞从线程 b 读取? 2022-01-01
- 由Python将MP3转换为MIDI(类型错误:无法加载插件:mtg-Melodia:Melodia) 2022-01-01
- 用 Python 编写 Fortran 无格式文件 2022-01-01
- 使用生成器和迭代器时 Python 多循环失败 2022-01-01
- 与常规 dict 相比,Python manager.dict() 非常慢 2022-01-01
- 将 x 轴刻度更改为自定义字符串 2022-01-01
- Discord.py 缺少必需的参数 2022-01-01
- 在 Celery 工作人员中捕获 Heroku SIGTERM 以优雅地关 2022-01-01
