Tested out gettting data from Nozbe (an excellent list manager using Dave Allens GTD methodology for inspiration) for getting reports from projects:
Using the ruby-nozbe gem it was easy to get basic information (the user key comes from your account under Extras -> API:
require 'nozbe'
user_key ='cccetc etc'
projs = Nozbe::Project.list(user_key)
projs.each {|p| puts "Id:>#{p.id}< Name:>#{p.name} Count:>#{p.count}<<"}
However the whole thing fell rather flat as I had coded all my projects using Project Groups and I couldn't get the project groups out of Nozbe.
No comments:
Post a Comment