Skip to content
This repository has been archived by the owner on Nov 25, 2017. It is now read-only.
/ trlo Public archive

A minimalist Trello API wrapper

License

Notifications You must be signed in to change notification settings

jacobian/trlo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This repo is archived, and will no longer be maintained.

trlo

This is trlo, a minimalist Trello API client. It's really nothing more than an ultra-thin layer on top of requests that helps with the OAuth flow. You'll still need to read Trello's API docs and know how to use requests, and generally be comfortable consuming REST resources by hand. If you want something more abstract with crazy new-fangled things like classes and such then look elsewhere.

Quickstart

  1. Install: pip install trlo, natch.

  2. Authorize: python -m trlo --key=KEY --secret=SECRET. Find your key and secret here.. This saves your creds to ~/.trlo for later user.

  3. Do stuff:

import trlo

trello = trlo.TrelloSession.from_config_file()
for board in trello.get('members/me/boards').json():
    print board['name']

About

A minimalist Trello API wrapper

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages