Skip to main content

A Python mockup of Trello with CLI

Project description

https://travis-ci.org/mund/Trellopy.svg?branch=master Documentation Status

Trellopy

A Python mockup of Trello with CLI. Trello is a very popular (and powerful) todo-list / task board.

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


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 hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page