python下操做gitlab的官方文檔以下html
http://python-gitlab.readthedocs.io/en/stable/
python
建立Access Tokensgit
登錄公司Gitlab 平臺,以此選擇 「用戶」-->「settings」-->「Access Tokens」 ,按照需求建立Access Tokens。github
環境安裝服務器
該文檔使用python來執行相關操做,須要安裝python環境。工具
使用 python-gitlab模塊來進行具體操做。gitlab
pip install python-gitlab
使用pip安裝最新的穩定版本ui
pip install --upgrade python-gitlab
spa
開發版本能夠在github上找到,使用git
和pyhton setup.py
來安裝命令行
git clone https://github.com/python-gitlab/python-gitlab
cd python-gitlab
python setup.py install
python-gitlab
提供了一個gitlab命令行工具來與GitLab服務器進行交互,它使用配置文件來定義如何鏈接到服務器。
配置
gitlab
默認狀況下查找2個配置文件:
/etc/python-gitlab.cfg
: 系統範圍的配置文件
~/.python-gitlab.cfg
: 用戶配置文件
能夠使用--config-file
選項的其餘配置文件
其餘使用參考官網:http://python-gitlab.readthedocs.io/en/stable/cli.html
python-gitlab支持GiaLab v3和v4 API。要使用v3,請確保安裝的爲python-gitlab 1.4。
要鏈接到Gitlab服務器,須要建立一個gitlab.Gitlab
對象。
import gitlab
# 私有令牌或我的令牌進行身份認證
gl = gitlab.Gitlab('http://10.9.151.194:9800/',private_token='U4oCoynMYPzDy_PUk-7W')
# oauth 令牌認證
gl = gitlab.Gitlab('http://10.0.0.1', oauth_token='my_long_token_here')
# 用戶名密碼認證 (for GitLab << 10.2)
gl = gitlab.Gitlab('http://10.0.0.1', email='jdoe', password='s3cr3t')
# 匿名認證,公共資源只讀
gl = gitlab.Gitlab('http://10.0.0.1')
# 建立一個API請求來建立gl.user對象,這是強制的
# 使用用戶名/密碼驗證
gl.auth()
還能夠使用配置文件來建立gitlab.Gitlab
對象:
gl = gitlab.Gitlab.from_config('somewhere', ['/tmp/gl.cfg'])