github和pypi_如何将GitHub用作PyPi服务器

github和pypi

I was looking for a hosted private PyPi Python Package server, that used credentials that the team already has (such as GitHub).

我正在寻找一个托管的私有PyPi Python Package服务器,该服务器使用了团队已经拥有的凭据(例如GitHub)。

I didn’t want to create an on-premises server. For us, it would make it impossible to use cloud-based build servers, and it is another moving part that can go wrong. There are also potential issues with fine-grained security and speed. (We have a worldwide team, so serving the content via a CDN would be helpful.)

我不想创建本地服务器。 对我们来说,这将使使用基于云的构建服务器成为不可能,这是另一个可能出错的动向。 细粒度的安全性和速度也存在潜在的问题。 (我们拥有一支遍布全球的团队,因此通过CDN提供内容会很有帮助。)

I didn’t want to force the team to create accounts with another provider. They already have Active Directory and GitHub accounts. It is an annoyance for them and creates a governance burden for me.

我不想强迫团队与其他提供商创建帐户。 他们已经有Active Directory和GitHub帐户。 这对他们来说很烦人,给我带来了管理负担。

Sadly, I couldn’t find such a service. GemFury is excellent but doesn't support GitHub authorization (at the team / organisation level) and Packagr doesn’t support GitHub authorisation at all. MyGet is also excellent, it does allow me to use GitHub authorization, but doesn’t host Python packages. Azure DevOps has something that looks promising, but it’s in private beta at the moment.

可悲的是,我找不到这样的服务。 GemFury非常出色,但不支持GitHub授权(在团队/组织级别),而Packagr根本不支持GitHub授权。 MyGet也很出色,它确实允许我使用GitHub授权,但不托管Python包。 Azure DevOps看起来很有前途,但目前处于私人Beta版 。

Happily, this is possible using cloud Git repositories such as GitHub, GitLab and BitBucket.

幸运的是,这可以通过使用GitHub,GitLab和BitBucket等云Git存储库来实现。

Pip可以从Git安装软件包 (Pip can install packages from Git)

I have hosted a Python package on GitHub (python_world), which you can install with the following command (make sure you trust me before running this command and installing my code on your computer).

我已经在GitHub( python_world )上托管了一个Python软件包,您可以使用以下命令进行安装(在运行此命令并将代码安装到您的计算机之前,请确保我信任我)。

pip install git+https://github.com/ceddlyburge/python_world#egg=python_world

pip install git+https://github.com/ceddlyburge/python_world#egg=python_world

Pip provides options to install from head, from a branch, from a tag or from a commit. I usually tag each release and install from these tags. See the pip install documentation for full details.

Pip提供了从头,分支,标签或提交安装的选项。 我通常标记每个发行版并从这些标记安装。 有关完整的详细信息,请参见pip安装文档 。

This repository is public, but it works just the same with a private repo, as long as you have permission. There is no special magic (it's a vanilla Python package) and Setup.py does most of the work as normal.

该存储库是公共的,但是只要您具有许可,它就可以与私有存储库相同。 没有特殊的魔术(这是一个香草的Python包), Setup.py正常执行大部分工作。

If you are new to creating Python Packages, the Packaging Python Projects tutorial is worth a quick read.

如果您不熟悉创建Python软件包,那么值得快速阅读Packaging Python Projects教程 。

Setuptools还可以从Git安装依赖项 (Setuptools can also install dependencies from Git)

Setuptools is how most people create Python packages.

Setuptools是大多数人创建Python软件包的方式。

I have hosted another package on GitHub python_hello, which depends on python_world. (I’m sure you can see where this is going.)

我在GitHub python_hello上托管了另一个软件包,该软件包取决于python_world 。 (我确定您可以看到前进的方向。)

The relevant bits from setup.py are below. install_requires specifies that python_world is a required dependency and tells Setuptools where to find it.

setup.py的相关位如下。 install_requires指定python_world是必需的依赖项,并告诉Setuptools在哪里找到它。

install_requires=['python_world@git+https://github.com/ceddlyburge/python_world#egg=python_world-0.0.1',
]

You can install this package using the command below. It will also download the dependent python_world package.

您可以使用以下命令安装此软件包。 还将下载相关的python_world软件包。

pip install git+https://github.com/ceddlyburge/python_hello#egg=python_hello

pip install git+https://github.com/ceddlyburge/python_hello#egg=python_hello

This links to a specific version of python_world, which is a shame as it means that pip can't do any dependency management (such as working out an acceptable version if multiple things are reliant on it). However, by the end of this article, we will have removed the need for the specific link.

这链接到特定版本的python_world ,这很可惜,因为这意味着pip无法执行任何依赖项管理(例如,如果有多个依赖项,请制定一个可接受的版本)。 但是,到本文结尾,我们将不再需要特定的链接。

Python环境 (Python environments)

As everyone who has used Python without an environment knows, environments save a lot of frustration and wasted time. So we need to support those.

众所周知,在没有环境的情况下使用Python的每个人都知道,环境可以节省很多挫败感和时间。 因此,我们需要支持这些。

I have created a repo (use-hello-world) that defines python_hello as a dependency in requirements.txt for Virtualenv, and environment.yml for Conda.

我创建了一个回购( 使用问候世界 ),它定义python_hello作为一个依赖requirements.txt为VIRTUALENV ,并environment.yml为conda 。

If you download the repo, you can install the dependencies into a virtualenv with the following command.

如果下载存储库,则可以使用以下命令将依赖项安装到virtualenv中。

pip install -r requirements.txt

pip install -r requirements.txt

If you are using conda you can use this command:

如果您使用的是conda,则可以使用以下命令:

conda env create -n use-hello-world

conda env create -n use-hello-world

PyPi索引 (PyPi Index)

So far we are able to install packages from our private Git repositories. These packages can, in turn, define dependencies to other private repositories. There still isn’t a PyPi server in sight.

到目前为止,我们已经能够从我们的私有Git存储库中安装软件包。 这些软件包可以依次定义对其他私有存储库的依赖关系。 仍然没有PyPi服务器。

We could stop at this point. However, the syntax for defining dependencies is a bit mysterious. It would be difficult for the team to discover which packages are available, and we are linking to specific versions of dependent packages, instead of letting pip manage it.

我们可以在这一点上停止。 但是,定义依赖项的语法有点神秘。 对于团队来说,很难发现可用的软件包,并且我们要链接到依赖软件包的特定版本,而不是让pip管理它。

To fix this we can set up a PyPi index that conforms to Pep 503. This specification is quite simple, and I have just created the index by hand. If this becomes too cumbersome I can generate it from the GitHub API.

为了解决这个问题,我们可以设置一个符合Pep 503的PyPi索引。 该规范非常简单,我刚刚手工创建了索引。 如果这太麻烦了,我可以从GitHub API生成它。

I created this PyPi Index using GitHub Pages. There are equivalent things for GitLab and BitBucket. You can see that the source code is very simple. GitHub Pages sites are always public (and there is probably no sensitive information in your index). However, if you need them to be private you can use a service such as PrivateHub.

我使用GitHub Pages创建了这个PyPi索引 。 GitLab和BitBucket具有等效的功能。 您可以看到源代码非常简单。 GitHub Pages站点始终是公共的(索引中可能没有敏感信息)。 但是,如果您需要将它们设为私有,则可以使用PrivateHub之类的服务。

One thing to look out for is the name normalisation of the specification. This requires the python_hello package information to be present at python-hello/index.html (note the change from an underscore to a dash).

要注意的一件事是规范的名称标准化 。 这要求在python-hello/index.html提供python_hello包信息(注意从下划线变为破折号)。

Now that we have a PyPi server, we can install packages using the command below.

现在我们有了一个PyPi服务器,我们可以使用下面的命令安装软件包。

pip install python_hello --extra-index-url https://ceddlyburge.github.io/python-package-server/

pip install python_hello --extra-index-url https://ceddlyburge.github.io/python-package-server/

So that you can see this working with environments, I have created another repo (use_hello_world_from_server) that defines the python_hello dependency using this PyPi index instead of direct GitHub Links. If you are trying it with Conda, version >4.4 is required.

为了让您可以在环境中正常工作,我创建了另一个存储库( use_hello_world_from_server ),该python_hello使用此PyPi索引而不是直接的GitHub链接定义了python_hello依赖项。 如果要在Conda上尝试,则需要版本> 4.4。

At this point, we can go back and remove the direct Git link in install_requires in setup.py of python_hello (as Setuptools will be able to find it from our server).

此时,我们可以返回并删除python_hello的setup.py中install_requires中的直接Git链接(因为Setuptools可以从我们的服务器中找到它)。

结论 (Conclusions)

Using a cloud-hosted Git provider as a PyPi server is a viable option. If you are already using one, that means that you can reuse the credentials and permissions that you already have. It will work with Cloud build servers and is likely to be provided via a CDN, so will be fast worldwide. It requires more knowledge to set up than a hosted server, but probably the same or less than hosting your own server on premises.

将云托管的Git提供程序用作PyPi服务器是可行的选择。 如果您已经在使用一个,则意味着您可以重用已经拥有的凭据和权限。 它可以与Cloud构建服务器一起使用,并且很可能通过CDN提供,因此在全球范围内将很快。 它需要比托管服务器更多的知识来进行设置,但可能与在本地托管您自己的服务器相同或更少。

提示和技巧 (Hints and tips)

Serving the index locally can help to troubleshoot problems (such as name normalization). It’s easy to see what requests are being made. You can use the inbuilt python HTTP server for this (python -m Http.Server -8000). This led me to find out that pip search uses postrequests, so won’t work with GitHub pages.

在本地提供索引可以帮助解决问题(例如名称标准化)。 很容易看到正在发出什么请求。 您可以为此使用内置的python HTTP服务器( python -m Http.Server -8000 )。 这使我发现pip search使用了post请求,因此不适用于GitHub页面。

You can run python setup.py -install to check your pip packages locally, before pushing them to Git.

您可以运行python setup.py -install在将它们推送到Git之前在本地检查您的pip软件包。

翻译自: https://www.freecodecamp.org/news/how-to-use-github-as-a-pypi-server-1c3b0d07db2/

github和pypi

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/392858.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

数据结构与算法---查找算法(Search Algorithm)

查找算法介绍 在java中,我们常用的查找有四种: 顺序(线性)查找 二分查找/折半查找 插值查找斐波那契查找1)线性查找算法 示例: 有一个数列: {1,8, 10, 89, 1000, 1234} ,判断数列中是否包含此名称【顺序查找】 要求: 如果找到了&a…

Exchange Server 2007邮箱存储服务器的集群和高可用性技术(上)

高可用性矩阵-->见下图:邮箱服务器高可用性目标: 数据可用性-->保护邮箱数据免于失败和损坏服务可用性-->提高群集实效转移操作 简化群集管理 支持地理分散的群集 支持低成本大邮箱(GB)使用户可以基于业务需要更好的选择容错方案提高解决方案的可用性使用解决方案可…

【C/C++开发】C++实现字符串替换的两种方法

替换字符串replace() erase()//C 第一种替换字符串的方法用replace()|C 第二种替换字符串的方法用erase()和insert()【 Cstring|C replace()|C erase()|C insert()|C自定义替换字符串函数】#include<string> #include<iostream> using namespace std;//第一种替换字…

html设置按钮样式变为椭圆,css border-radius圆形变为椭圆形,位置:绝对

我正在围绕字体真棒图标创建一个圆圈。我的问题是&#xff0c;当我添加position: absolute圆成为一个椭圆。css border-radius圆形变为椭圆形&#xff0c;位置&#xff1a;绝对同样的情况&#xff0c;如果我是设置display: block这里是什么&#xff0c;我想实现的图像 -CONRADU…

《火球——UML大战需求分析》(第1章 大话UML)——1.5 小结和练习

说明&#xff1a; 《火球——UML大战需求分析》是我撰写的一本关于需求分析及UML方面的书&#xff0c;我将会在CSDN上为大家分享前面几章的内容&#xff0c;总字数在几万以上&#xff0c;图片有数十张。欢迎你按文章的序号顺序阅读&#xff0c;谢谢&#xff01;本书已经在各大网…

金陵科技学院计算机开设课程,金陵科技学院各专业介绍

各专业介绍会计学专业(四年制本科) 金融学专业(四年制本科)财务管理专业(四年制本科) 国际经济与贸易专业(四年制本科)市场营销专业(四年制本科)国际商务专业(三年制专科)物流管理专业(三年制专科) 对外汉语专业(四年制本科)古典文献(古籍修复)专业(四年制本科)行政管理(高级秘…

【jQuery Demo】图片由下至上逐渐显示

无意中看到如何实现一张图片从下往上慢慢显现出来这个问题&#xff0c;弄了半天还是从上往下的效果&#xff0c;纠结了&#xff0c;最后还是提问人自己搞定了&#xff01;不过哈哈&#xff0c;又学到一点知识&#xff01; 1.下面是我自己做的效果(按钮可以点哦) 图片由下至上逐…

Morphia - mongodb之ORM框架

一、简介 二、注解 1、Entity 2、Id3、Indexed4、Embedded5、Transient和Property6、Reference 三、示例 四、参考资料 Morphia快速入门 Morphia 注解详解 使用Morphia框架操作mongodb 使用 Morphia 和 MongoDB 实现持久化 Spring中Mongodb的java实体类映射 ORM框架Morphia的学…

石头剪刀布游戏web_Web开发教程-剪刀石头布

石头剪刀布游戏webThis web development tutorial shows how to use JavaScript, HTML, and CSS to create a rock Paper Scissors Game in the browser.这份网络开发教程展示了如何使用JavaScript&#xff0c;HTML和CSS在浏览器中创建石头剪刀布游戏。 Tenzin explains every…

两个数之和等于第三个数

这是一个很好的算法题&#xff0c;解法类似于快速排序的整理方法。同时&#xff0c;更为值得注意的是这道题是 人人网2014校园招聘的笔试题&#xff0c;下面首先对题目进行描述&#xff1a; 给出一个有序数组&#xff0c;另外给出第三个数&#xff0c;问是否能在数组中找到两个…

html标题前色块,CSS轻松实现色块标题标识

不少网站开始采用韩式风格来建站&#xff0c;这种风格的特点是色彩变化丰富、应用Flash动画合理、结构新颖&#xff0c;最明显的特点就是表格或标题栏常会加上一条横或竖的色带&#xff0c;如图1中圈起来的地方就是这样。(图一)一般人都会想到用Photoshop等软件来完成这样的效果…

Git 基础 - 远程仓库的使用

远程仓库的使用 要参与任何一个 Git 项目的协作&#xff0c;必须要了解该如何管理远程仓库。远程仓库是指托管在网络上的项目仓库&#xff0c;可能会有好多个&#xff0c;其中有些你只能读&#xff0c;另外有些可以写。同他人协作开发某个项目时&#xff0c;需要管理这些远程仓…

山东理工大学第七届ACM校赛-G 飞花的传送门

G - 飞花的传送门飞花壕最近手头比较宽裕&#xff0c;所以想买两个传送门来代步&#xff08;夏天太热&#xff0c;实在是懒得走路&#xff09;。平面上有N个传送门&#xff0c;飞花壕想要挑两个距离最远的传送门带回家&#xff08;距离为欧几里得距离&#xff0c;即两点之间直线…

leetcode 1002. 查找常用字符

给定仅有小写字母组成的字符串数组 A&#xff0c;返回列表中的每个字符串中都显示的全部字符&#xff08;包括重复字符&#xff09;组成的列表。例如&#xff0c;如果一个字符在每个字符串中出现 3 次&#xff0c;但不是 4 次&#xff0c;则需要在最终答案中包含该字符 3 次。 …

git 代理 git_如何成为Git专家

git 代理 gitI made a mistake in my commit, how do I fix it ?我在提交中犯了一个错误&#xff0c;该如何解决&#xff1f; My commit history is a mess, how do I make it neater?我的提交历史是一团糟&#xff0c;我如何使其更整洁&#xff1f; If you have ever had …

101与金根回顾敏捷个人:(13)敏捷个人和敏捷开发

本文更新版本已挪至 http://www.zhoujingen.cn/blog/1726.html ------------------------- 敏捷个人源于工作 自2001初成立了敏捷联盟到现在10年的推广&#xff0c;敏捷开发已日渐成为当前IT行业软件开发的一种主流方法。没有银弹&#xff0c;任何方法都不可能解决所有问题&a…

计算机网络选择重传,计算机网络选择重传协议实验报告..docx

计算机网络选择重传协议实验报告.《计算机网络》选择重传协议实验报告1.实验内容和实验环境描述实验内容&#xff1a;利用所学数据链路层原理&#xff0c;设计一个滑动窗口协议&#xff0c;在仿真环境下编程实现有噪音信道环境下两站点之间无差错双工通信。信道模型为8000bps 全…

leetcode 剑指 Offer 03. 数组中重复的数字

找出数组中重复的数字。 在一个长度为 n 的数组 nums 里的所有数字都在 0&#xff5e;n-1 的范围内。数组中某些数字是重复的&#xff0c;但不知道有几个数字重复了&#xff0c;也不知道每个数字重复了几次。请找出数组中任意一个重复的数字。 示例 1&#xff1a; 输入&…

【Maven学习】Maven打包生成包含所有依赖的jar包

http://blog.csdn.net/u013177446/article/details/54134583 ************************************************** maven打包生成的普通jar包&#xff0c;只包含该工程下源码编译结果&#xff0c;不包含依赖内容。同时&#xff0c;maven提供以下方式生成包含所有依赖的jar文件…

mysql 数据库 安全_如何确保您MySQL数据库安全

mysql 数据库 安全我们开始之前的一些基本信息&#xff1a; (Some basic information before we get started:) Source: Center for Internet Security’s (CIS) Oracle MySQL Community Server 5.7来源&#xff1a; 互联网安全中心(CIS)Oracle MySQL Community Server 5.7 Op…