enexlib


Nameenexlib JSON
Version 0.1.3 PyPI version JSON
download
home_page
SummaryConvert Evernote backup files (.enex) to plaintext.
upload_time2023-12-17 20:59:18
maintainer
docs_urlNone
author
requires_python>=3.9
license
keywords evernote enex
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # 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)
```

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "enexlib",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": "",
    "keywords": "evernote,enex",
    "author": "",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/33/d8/0b6d93bfdeee2fd214c97e29967ff1137c99a8049295698d929f2351f0a8/enexlib-0.1.3.tar.gz",
    "platform": null,
    "description": "# enexlib\n[![Test](https://github.com/whitgroves/enexlib/actions/workflows/run-tests.yml/badge.svg)](https://github.com/whitgroves/enexlib/actions/workflows/run-tests.yml)\n\nA python3 module for converting Evernote backup files (.enex) to plaintext.\n\n## Usage\n```\npip install enexlib\n```\n\n```\nimport enexlib as nx\n\nfor title, note in nx.read_enex('<filename>.enex'):\n\t# do something\n\nplain_text = nx.read_enex('<filename>.enex', text_only=True)\nraw_content = nx.read_enex('<filename>.enex', raw_text=True)\nall_combined = nx.read_enex('<filename>.enex', join_all=True)\n```\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Convert Evernote backup files (.enex) to plaintext.",
    "version": "0.1.3",
    "project_urls": {
        "Source": "https://github.com/whitgroves/enexlib"
    },
    "split_keywords": [
        "evernote",
        "enex"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7fe03d0e41a186bbc0cc6b182d6887deaabd0c1f888c2ae3b26ec6bf59563d45",
                "md5": "abbd852972407d8b9d2235368fc54d5c",
                "sha256": "f341c68eeb24202fd42fcb43b86000d33f738818fd226180437a5f71ae86ab21"
            },
            "downloads": -1,
            "filename": "enexlib-0.1.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "abbd852972407d8b9d2235368fc54d5c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 3092,
            "upload_time": "2023-12-17T20:59:17",
            "upload_time_iso_8601": "2023-12-17T20:59:17.340078Z",
            "url": "https://files.pythonhosted.org/packages/7f/e0/3d0e41a186bbc0cc6b182d6887deaabd0c1f888c2ae3b26ec6bf59563d45/enexlib-0.1.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "33d80b6d93bfdeee2fd214c97e29967ff1137c99a8049295698d929f2351f0a8",
                "md5": "d6ea9b0ffa081b11562d45505ebf9ad9",
                "sha256": "7b9730fd7af486f0d8960d1b0538089d13572d02cfaff32840b6ccce097b644b"
            },
            "downloads": -1,
            "filename": "enexlib-0.1.3.tar.gz",
            "has_sig": false,
            "md5_digest": "d6ea9b0ffa081b11562d45505ebf9ad9",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 3613,
            "upload_time": "2023-12-17T20:59:18",
            "upload_time_iso_8601": "2023-12-17T20:59:18.232306Z",
            "url": "https://files.pythonhosted.org/packages/33/d8/0b6d93bfdeee2fd214c97e29967ff1137c99a8049295698d929f2351f0a8/enexlib-0.1.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-17 20:59:18",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "whitgroves",
    "github_project": "enexlib",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "enexlib"
}
        
Elapsed time: 0.17116s