Metadata-Version: 2.1
Name: myclippings
Version: 0.0.1
Summary: Parses My Clippings.txt
Author-email: Belen Buccolo <belenbuccolo@gmail.com>
License-Expression: MIT
License-File: LICENSE
Keywords: amazon,clippings,kindle,kindle-clippings,parser
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Requires-Python: >=3.7
Requires-Dist: dateparser~=1.2
Requires-Dist: ftfy~=6.1
Description-Content-Type: text/markdown

# myClippings

---

Converts `My Clippings.txt` file into a JSON format like below:

```json
[
    "Clean Code: A Handbook of Agile Software Craftsmanship": [
      {
        "id": "66698d9e",
        "title": "Clean Code: A Handbook of Agile Software Craftsmanship",
        "author": "Martin, Robert C.",
        "note_type": "highlight",
        "location": [892, 893],
        "date": "2022-10-12",
        "content": "Leave the campground cleaner than you found it."
      }
    ]
]
```

Currently, it supports English and Spanish languages.

## Usage

As a CLI tool:

```bash
python my_clippings/main.py
```

As a module:

```python
from my_clippings import clippings_to_json
```
