Hi,
I'm a new pyrtm maintainer, but newbie for RTM APIs.
So, I don't know what feature you want for pyrtm.
I can implement some function if you want.
Or, please report bugs as below if you found.
https://bitbucket.org/srid/pyrtm/issues
Any comments are welcome.
Now, you can deploy pyrtm using buildout quickly.
# hg clone
https://t...@bitbucket.org/t2y/pyrtm
# cd pyrtm/
# python bootstrap.py -d
# ./bin/buildout
You can run sample application. (maybe need Python 2.5 above)
https://bitbucket.org/srid/pyrtm/wiki/
# ./bin/rtm_appsample your_api_key your_shared_secret your_token
I made simple test for pyrtm.
# vi src/rtm/tests/apikey.txt
[rtm]
apikey: your key
secret: your shared secret
token: your token
# ./bin/test -v
test_pep8.test_pep8 ... ok
test_rtm_object.TestRTM.test_auth_checkToken ... ok
test_rtm_object.TestRTM.test_contacts_getList ... ok
test_rtm_object.TestRTM.test_groups_getList ... SKIP:
rtm.groups.getList: Cannot get response item, maybe there is no item
test_rtm_object.TestRTM.test_lists_getList ... ok
test_rtm_object.TestRTM.test_locations_getList ... ok
test_rtm_object.TestRTM.test_settings_getList ... ok
test_rtm_object.TestRTM.test_tasks_getList ... ok
test_rtm_object.TestRTM.test_timezones_getList ... ok
----------------------------------------------------------------------
Ran 9 tests in 8.762s
OK (SKIP=1)
thanks,
Tetsuya