如何/在哪里发布 Python 包

How/where to publish Python package(如何/在哪里发布 Python 包)
本文介绍了如何/在哪里发布 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 包的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

How do I make a list of all members in a discord server using discord.py?(如何使用 discord.py 列出不和谐服务器中的所有成员?)
how to change discord.py bot activity(如何更改 discord.py 机器人活动)
Issues with getting VoiceChannel.members and Guild.members to return a full list(让 VoiceChannel.members 和 Guild.members 返回完整列表的问题)
Add button components to a message (discord.py)(将按钮组件添加到消息(discord.py))
on_message() and @bot.command issue(on_message() 和@bot.command 问题)
How to edit a message in discord.py(如何在 discord.py 中编辑消息)