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
# Hey tripit, tell me what dates I have accommodation booked so I know the trip's covered | |
from pytripit import tripit | |
consumer_key = '---' | |
consumer_secret = '---' | |
authorized_token_key = '---' | |
authorized_token_secret = '---' | |
oauth_credential = tripit.OAuthConsumerCredential(consumer_key, consumer_secret, authorized_token_key, authorized_token_secret) |