├── .gitignore ├── README.md ├── aggregate_foursquare_friends_tips.py ├── coursera_calendar_connector.py ├── coursera_oauth.json.sample ├── foursquare_oauth.json.sample ├── wunderlist_flask_demo.py └── wunderlist_oauth.json.sample /.gitignore: -------------------------------------------------------------------------------- 1 | *.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/wunderlist-python/HEAD/README.md -------------------------------------------------------------------------------- /aggregate_foursquare_friends_tips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/wunderlist-python/HEAD/aggregate_foursquare_friends_tips.py -------------------------------------------------------------------------------- /coursera_calendar_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/wunderlist-python/HEAD/coursera_calendar_connector.py -------------------------------------------------------------------------------- /coursera_oauth.json.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/wunderlist-python/HEAD/coursera_oauth.json.sample -------------------------------------------------------------------------------- /foursquare_oauth.json.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/wunderlist-python/HEAD/foursquare_oauth.json.sample -------------------------------------------------------------------------------- /wunderlist_flask_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/wunderlist-python/HEAD/wunderlist_flask_demo.py -------------------------------------------------------------------------------- /wunderlist_oauth.json.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/wunderlist-python/HEAD/wunderlist_oauth.json.sample --------------------------------------------------------------------------------