Metadata-Version: 2.1
Name: enexlib
Version: 0.1.3
Summary: Convert Evernote backup files (.enex) to plaintext.
Project-URL: Source, https://github.com/whitgroves/enexlib
Keywords: evernote,enex
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: beautifulsoup4 >=4.12.2
Requires-Dist: lxml >=4.9.3
Requires-Dist: soupsieve >=2.5

# enexlib
[![Test](https://github.com/whitgroves/enexlib/actions/workflows/run-tests.yml/badge.svg)](https://github.com/whitgroves/enexlib/actions/workflows/run-tests.yml)

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)
```
