python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Python Gitlab API find creator of a project
import gitlab
gl = gitlab.Gitlab('http://gitlab.mycompany', private_token=access_token)
gl.auth()
projects = gl.projects.list()
pres = projects[0]
for project in projects:
if 'myprojectname' in st...

Huy Le
Votes: 0
Answers: 2
Is there a way to get specific jobs by name of the last week with python-gitlab?
What I want to do:
To create reports from gitlab artifacts, I want to look at all recent jobs (the past week or so) with a certain name (lighthouse in my example) and extract all artifacts.
The proble...
taube5
Votes: 0
Answers: 1
How can I find out who pushed an image to the Gitlab Container registry
I want to find out who / what user pushed an image to the Gitlab Container registry. Optimally by using the gitlab-python package.
When using the gitlab-python package I was able to get the object 'Pr...
Moritz
Votes: 0
Answers: 1
python-gitlab - how to modify project settings?
I'm writing a python module to create projects in gitlab, but I can't figure out how to change the default project settings, like remove_source_branch_after_merge.
I've tried passing the argument to t...

André Fernandes
Votes: 0
Answers: 1