python-gitlab3 icon indicating copy to clipboard operation
python-gitlab3 copied to clipboard

Python wrapper for the entire GitLab API

Results 5 python-gitlab3 issues
Sort by recently updated
recently updated
newest added

here is the code ``` >>> gl.get_user(130) Traceback (most recent call last): File "", line 1, in File "/root/py3/lib/python3.6/site-packages/gitlab3/__init__.py", line 158, in fn if key and '/' in key: TypeError:...

here is the code I use ``` >>> for i in gl.project('openstack/rabbitmq-server-3.3.5').branches(): ... print(i.name) ... key: id ```

See https://gitlab.com/gitlab-org/gitlab-ce/issues/20070 Gitlab version 9.0 in ~35 days is scheduled to deprecate API v3 (it will still be usable until until at least 9.2)

enhancement

Creating a project within a group / namespace seems to be only possible by: ``` repo = gl.add_project(reponame) # this creates the project in the user's namespace if repo: mygroup.transfer_project(repo.id)...

I was trying to use the library to migrate some information from an older server to a new server, so I did ``` old = GitLab(old_url, old_token) new = GitLab(new_url,...