enexlib

Convert Evernote backup files (.enex) to plaintext.


Keywords
evernote, enex
License
Unlicense
Install
pip install enexlib==0.1.3

Documentation

enexlib

A python3 module for converting Evernote backup files (.enex) to plaintext.

Usage

pip install enexlib
import enexlib as nx

for title, note in nx.read_enex('<filename>.enex'):
	# do something

plain_text = nx.read_enex('<filename>.enex', text_only=True)

raw_content = nx.read_enex('<filename>.enex', raw_text=True)

all_combined = nx.read_enex('<filename>.enex', join_all=True)