Export Trello boards and cards to Markdown
Project description
trello2md
Export Trello boards and cards to Markdown. Currently tailored to my note-taking workflow.
Installation
Install on your system with pipx:
$ pipx install --python python3.8 trello2md
Authorize use of the Trello API:
$ trello2md auth
Exporting a Trello board
Run with the URL for a Trello board as the only argument to write Markdown files to a directory. For example:
$ trello2md https://trello.com/b/WODq2cwg/sample-board
$ tree sample-board/
sample-board/
├── another-card-1.md
├── another-card-2.md
├── another-card.md
├── copied-card.md
├── index.md
└── sample-card.md
$ cat sample-board/index.md
# {Sample Board}
## Sample List
- [Sample Card](sample-card.md) 2019-05-07, @bhrutledge, `green`, `Sample Label`
- [Copied Card](copied-card.md) 2019-05-07
## Empty List
## Another List
- [Another Card](another-card.md)
- [Another Card](another-card-1.md)
- [Another Card](another-card-2.md)
Exporting a Trello card
Run with the URL for a Trello card as the only argument to print Markdown. For example:
$ trello2md https://trello.com/c/HGYGb5iM/2-sample-card
# Sample Card
2019-05-07, @bhrutledge, `green`, `Sample Label`
Sample description
## Checklist
- [x] Completed item
- [ ] Incomplete item
## Attachments
- [Example link](https://example.com)
## Comments
### bhrutledge on 2019-05-06
Sample comment
Developing
-
Install tox on your system, for example using pipx
$ pipx install tox
-
Fork and clone this repository
-
Run the tests and generate a coverage report
$ tox -e py38,coverage
-
Run the formatters and linters
$ tox -e check
-
To run development tools individually, create and activate a virtual environment
$ tox -e venv $ source venv/bin/activate
This will install:
- pytest and coverage.py to run the tests
- mypy to check types
- black to format the code
- flake8 to identify coding errors and check code style
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for trello2md-0.4.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 11eb26b0fe75c1d2adb99d35a29bc26ce4b2e7c2b40455bb89256c0342ebc864 |
|
MD5 | 48fe1d881b575907b876084d0e3400f9 |
|
BLAKE2b-256 | ef8a576a83393994fab34c01b1c6626893a3e725a32020c4726ba0ed0bf89958 |