https://github.com/mrlesmithjr/python-gitlab-api
https://github.com/mrlesmithjr/python-gitlab-api
api gitlab python
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mrlesmithjr/python-gitlab-api
- Owner: mrlesmithjr
- License: mit
- Created: 2018-06-14T01:18:57.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2026-03-28T12:49:04.000Z (3 months ago)
- Last Synced: 2026-03-28T16:03:41.002Z (3 months ago)
- Topics: api, gitlab, python
- Language: Python
- Size: 58.6 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# python-gitlab-api
This project provides the ability to manage GitLab functionality using python
and the GitLab API.
## Build Status
### GitHub Actions

### Travis CI
[](https://travis-ci.org/mrlesmithjr/python-gitlab-api)
## Requirements
- [requirements.txt](requirements.txt)
- [requirements-dev.txt](requirements-dev.txt)
### GitLab API Personal Token
You will need to create a [GitLab API Personal Token](https://docs.gitlab.com/ee/user/profile/personal_access_tokens.html) in order to authenticate.
To use your token you will either need to use `--token PersonalAccessToken` or
create/edit a `~/.netrc`.
The `~/.netrc` file should look like:
```bash
machine gitlab.com
password = PersonalAccessToken
```
## Dependencies
## Usage
To view the different usages available checkout the [usage](USAGE.md) guide.
## License
MIT
## Author Information
Larry Smith Jr.
- [@mrlesmithjr](https://twitter.com/mrlesmithjr)
- [mrlesmithjr@gmail.com](mailto:mrlesmithjr@gmail.com)
- [http://everythingshouldbevirtual.com](http://everythingshouldbevirtual.com)
> NOTE: Repo has been created/updated using [https://github.com/mrlesmithjr/cookiecutter-python-project](https://github.com/mrlesmithjr/cookiecutter-python-project) as a template.