Hi I am trying to get value from JSON response which Im getting from GitLab API. Code should extract “commiter_name” value but it does not work, already tried several options from internet. Error: Answer This is because you did not include you api token in the header. Also please check that the website you are pointing to in the request
Tag: gitlab-api
How to use `not` condition in the gitlab api issue query
I am trying to read the list of open issues title which doesn’t have label resolved. For that I am referring the API documentation (https://docs.gitlab.com/ee/api/issues.html) which mentions NOT but I couldn’t able to get the NOT to work. The following python script I have tried so far to read the list of issues now I am not able to find
How can I extract contents from a file stored in gitlab repos
Using the gitlab-python package, I’d like to extract lines from all Dockerfiles. Using my code below, I am able to get project names and url to the repo I want but how can I ensure there is a Dockerfile and read the contents of the Dockerfile. The output I get now is : Answer You can use the project.files.get() method