https://github.com/max-wittig/todoer
Remove your todos on GitLab based on different criteria.
https://github.com/max-wittig/todoer
api gitlab python-gitlab
Last synced: about 1 month ago
JSON representation
Remove your todos on GitLab based on different criteria.
- Host: GitHub
- URL: https://github.com/max-wittig/todoer
- Owner: max-wittig
- License: mit
- Created: 2020-03-08T15:32:11.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-03-08T17:13:23.000Z (about 5 years ago)
- Last Synced: 2025-03-25T01:08:02.064Z (2 months ago)
- Topics: api, gitlab, python-gitlab
- Language: Python
- Homepage:
- Size: 10.7 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# todoer
[](https://badge.fury.io/py/todoer)
[](https://github.com/max-wittig/todoer/blob/master/LICENSE)Remove your todos on GitLab based on different criteria.
### build
```sh
poetry install --no-dev --no-root
poetry build
```### installation
```sh
pip3 install todoer
```### usage
Specific the following environment variables:
* GITLAB_URL (defaults to `https://gitlab.com`)
* GITLAB_TOKEN```sh
usage: todoer [-h] [-t TITLE] [-d DESCRIPTION] [-c CREATOR]optional arguments:
-h, --help show this help message and exit
-t TITLE, --title TITLE
Regex of todo title to remove
-d DESCRIPTION, --description DESCRIPTION
Regex of todo description to remove
-c CREATOR, --creator CREATOR
Username of the issue creator
```