Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mrlesmithjr/python-gitlab-api
https://github.com/mrlesmithjr/python-gitlab-api
api gitlab python
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/mrlesmithjr/python-gitlab-api
- Owner: mrlesmithjr
- License: mit
- Created: 2018-06-14T01:18:57.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T09:53:20.000Z (about 2 years ago)
- Last Synced: 2024-10-30T19:42:18.560Z (about 2 months ago)
- Topics: api, gitlab, python
- Language: Python
- Size: 66.4 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 5
-
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
![Python Test](https://github.com/mrlesmithjr/python-gitlab-api/workflows/Python%20Test/badge.svg)
### Travis CI
[![Build Status](https://travis-ci.org/mrlesmithjr/python-gitlab-api.svg?branch=master)](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)
- [[email protected]](mailto:[email protected])
- [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.