Skip to content

Instantly share code, notes, and snippets.

@m2kar
Created April 1, 2020 13:25
Show Gist options
  • Save m2kar/cbdbd589fc7197dc28ab140097702123 to your computer and use it in GitHub Desktop.
Save m2kar/cbdbd589fc7197dc28ab140097702123 to your computer and use it in GitHub Desktop.
gitlab python
import gitlab
gl=gitlab.Gitlab(gitlab_url,gitlab_token)
project=gl.projects.get(149)
issue=project.issues.get(1)
note=issue.notes.create(data={"body":"text"})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment