https://github.com/zmoog/trellokit
https://github.com/zmoog/trellokit
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/zmoog/trellokit
- Owner: zmoog
- License: apache-2.0
- Created: 2023-07-22T07:44:04.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-11-04T07:18:05.000Z (over 2 years ago)
- Last Synced: 2024-04-16T00:16:04.146Z (about 2 years ago)
- Language: Python
- Size: 13.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# trellokit
[](https://pypi.org/project/trellokit/)
[](https://github.com/zmoog/trellokit/releases)
[](https://github.com/zmoog/trellokit/actions?query=workflow%3ATest)
[](https://github.com/zmoog/trellokit/blob/master/LICENSE)
CLI tool and Python library to access and use Trello API
## Installation
Install this tool using `pip`:
pip install trellokit
## Usage
For help, run:
trellokit --help
You can also use:
python -m trellokit --help
## Development
To contribute to this tool, first checkout the code. Then create a new virtual environment:
cd trellokit
python -m venv venv
source venv/bin/activate
Now install the dependencies and test dependencies:
pip install -e '.[test]'
To run the tests:
pytest