Metadata-Version: 2.1
Name: mobi-reader
Version: 0.2.1
Summary: A simple way to read and convert your mobi files.
Home-page: https://github.com/MrLucio/mobi-reader
Author: MrLucio
License: UNKNOWN
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.4
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: lxml (>=4.6.4)

# Mobi reader

![GitHub Workflow Status](https://img.shields.io/github/workflow/status/MrLucio/mobi-reader/CI)
![PyPI - License](https://img.shields.io/pypi/l/mobi-reader)

![PyPI - Python Version](https://img.shields.io/pypi/pyversions/mobi-reader)
![PyPI](https://img.shields.io/pypi/v/mobi-reader)

## Installation
```
  pip install mobi-reader
```

## Usage
This example is taken from [tests/test_reader.py](tests/test_reader.py)
```python
  from mobi import Mobi

  reader = Mobi('./alice_in_wonderland.mobi')
  output = reader.read()  # bytearray containing the decoded mobi file

  reader.close()
```


