A Python mockup of Trello with CLI
Project description
Trellopy
A Python mockup of Trello with CLI. Trello is a very popular (and powerful) todo-list / task board.
Free software: BSD license
Documentation: https://trellopy.readthedocs.org.
Requirements
PyMongo (and of course, MongoDB)
Nose (for testing)
Example
>>> import trellopy
>>> controller = trellopy.Controller()
>>> board = controller.add_board('Board')
>>> list1 = board.add_list('List One')
>>> list2 = board.add_list('List Two')
>>> list3 = board.add_list('List Three')
>>> list4 = board.add_list('List Four')
>>> carda = list1.add_card('Card A')
>>> cardb = list1.add_card('Card B')
>>> cardc = list1.add_card('Card C')
>>> list2.add_card(carda)
>>> list3.rename('List 3')
>>> list4.archive()
>>> board.get_order()
>>> board.reorder([2,0,3,1])
>>> list1.get_order()
>>> list2.reorder([2,0,1])
>>> person = controller.new_member('Person')
History
0.0.0 (9999-31-12)
First release on PyPI.
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
trellopy-0.0.0.tar.gz
(16.1 kB
view details)
File details
Details for the file trellopy-0.0.0.tar.gz.
File metadata
- Download URL: trellopy-0.0.0.tar.gz
- Upload date:
- Size: 16.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
127dd035d6ce8852f9d45338bb2b3c066e8abf09aea8bcba47c63c8e75c7ad76
|
|
| MD5 |
09a811728f0654e77593ca703d01078c
|
|
| BLAKE2b-256 |
0cbe5e7dd14b6bdedf9dd36abeb511acd5d3cb428df14d8ad80389654dd00446
|