Metadata-Version: 2.1
Name: enex2md
Version: 0.0.3
Summary: Convert enex to Markdown.
Home-page: https://github.com/janikarh/enex2md
Author: Jani Karhunen
Author-email: janikarh@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Text Processing
Classifier: Topic :: Utilities
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
Requires-Dist: click
Requires-Dist: lxml (>=4.3.0)

# enex2md

Enex2md is a command-line utility to convert Evernote export files (`*.enex`) to Markdown.

At the moment, this is more of a prototype, than actual conversion tool.

**THIS IS VERY MUCH WORK IN PROGRESS.**

## Installation

`pip install -U enex2md`

## Usage

To use the CLI after installing, run the conversion with:
`enex2md [enex-file-to-process]`

## Development

Clone the [repository](https://github.com/janikarh/enex2md) to your local machine.

*I strongly recommend using a virtual environment for development.*

Install the requirements with:
`pip install -r requirements.txt`

From the root of the repository, you can run the app with:
`python -m enex2md.cli foo.enex`

After editing the content, try to install the package locally with:
`python setup.py install`

See that everything works. You can uninstall the dev package with `pip uninstall enex2md`.


