mkacz / ruby-wunderlist

Wunderlist Bindings for Ruby (The readme example code seems to be broken)

Home Page:http://fritz-grimpen.de/wunderlist/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ruby-wunderlist

ruby-wunderlist is an inofficial Ruby binding for the undocumented Wunderlist API.

Features:

  • Change list names
  • Get all tasks of a list
  • Filter lists
  • Reuse login session

Dependencies

Example

require "wunderlist"
api = Wunderlist::API.new

# Login with your credentials
api.login "johndoe@example.org", "mypassword"

# Get the inbox list
inbox = api.inbox

# Get all overdue tasks
overdue = inbox.done

overdue.each do |task|
  task.done = true
  task.save
end

About

Wunderlist Bindings for Ruby (The readme example code seems to be broken)

http://fritz-grimpen.de/wunderlist/

License:MIT License