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
| from evernote.api.client import EvernoteClient | |
| import evernote.edam.type.ttypes as Types | |
| from evernote.edam.error import ttypes as Errors #この行が正しく機能してるかは怪しい | |
| import os | |
| import hashlib | |
| import mimetypes | |
| import binascii | |
| dev_token = "your developer token" | |
| client = EvernoteClient(token=dev_token, sandbox=True) |