This app helps working with evernote notebook.
You can see all your notebooks, clone notes and get dump of choosen notebook.
clone repo, you should have python of 2 generation (created with version 2.7), create virtualenv and load dependencies:
git clone https://github.com/ilyashirko/evernote_review
cd evernote_review
virtualenv -p /path/to/python2.7 env2.7
source env2.7/bin/activate
pip install -r requirements.txt
Create .env
file:
EVERNOTE_CONSUMER_KEY=
EVERNOTE_CONSUMER_SECRET=
EVERNOTE_PERSONAL_TOKEN=
JOURNAL_TEMPLATE_NOTE_GUID=
JOURNAL_NOTEBOOK_GUID=
INBOX_NOTEBOOK_GUID=
SANDBOX=
EVERNOTE_CONSUMER_KEY
&EVERNOTE_CONSUMER_SECRET
you can get hereEVERNOTE_PERSONAL_TOKEN
get hereJOURNAL_NOTEBOOK_GUID
- any notebookJOURNAL_TEMPLATE_NOTE_GUID
- default note fromJOURNAL_NOTEBOOK_GUID
INBOX_NOTEBOOK_GUID
- default notebook (you can set up it in the notebook settings)SANDBOX
- True or False
returns list of user notebooks in the format:
{first_notebook_uuid} - {first_notebook_title}
{second_notebook_uuid} - {second_notebook_title}
...
{last_notebook_uuid} - {last_notebook_title}
Take title of the default note, adding date and day of the week and create new note in format:
{default note title} YYYY-MM-DD friday
return all notes of choosen notebook.
the application was created by DEVMAN team for educational purposes.