Metadata-Version: 2.1
Name: enexlib
Version: 0.0.2
Summary: Extract Evernote backup files (.enex) to plain text.
Home-page: https://github.com/whitgroves/enexlib
Author: whitgroves
Author-email: whitney.groves@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: License :: Public Domain
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown

# enexlib

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

To use, import enexlib and call read_enex('Filename.enex') to import your notes
into basic text. This has several optional parameters:
 - text_only: False by default. Attempts to remove all special characters.
 - raw_text: False by default. Returns the raw content of the .enex file.
	Overrides text_only.
 - join_all: False by default. Combines all content into a single large note.
	Originally intended for frequency analysis over a large set of notes.


