python 从Gitlab下载项目回购。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 从Gitlab下载项目回购。相关的知识,希望对你有一定的参考价值。

import gitlab

URL = 'https://gitlab.example.com'
ACCESS_TOKEN = '555555555555'
# May not be needed depending on the infrastructure for your Gitlab.
# For mine Gitlab is self hosted so adding in my root CA is necessary.
CA_CERT = '/path/to/ca'
FILENAME = 'test.tar.gz'
PROJECT_ID = 1


gl = gitlab.Gitlab(URL, ACCESS_TOKEN, ssl_verify=CA_CERT)
gl.auth()

project = gl.projects.get(PROJECT_ID)
tgz = project.repository_archive()
with open(FILENAME, 'wb') as f:
    f.write(tgz)

以上是关于python 从Gitlab下载项目回购。的主要内容,如果未能解决你的问题,请参考以下文章

什么是与客户端的GitLab连接的工作流程? [关闭]

如何从私人 gitlab 存储库创建公开发布?

Gitlab CI:作业挂起克隆回购

sh 从github中的组织下载所有回购

有没有办法使用 gitlab python api 从 gitlab 项目中获取当前和旧用户名?

.gitconfig从GitHub切换到GitLab的全局远程URL