-
Reports To :
-
Type :
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import todoist | |
import pandas | |
api = todoist.TodoistAPI() | |
user = api.user.login('<username>', '<password>') | |
print(user['full_name']) | |
response = api.sync() | |
for project in response['projects']: | |
print(project['name']) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var alexa = require('alexa-app'); | |
// Allow this module to be reloaded by hotswap when changed | |
module.change_code = 1; | |
// Define an alexa-app | |
var app = new alexa.app('catcheckup'); | |
app.launch(function(req,res) { | |
// lets see if the user has any pets setup? |