/mobi-reader

An easy way to read mobi files!

Primary LanguagePythonMIT LicenseMIT

Mobi reader

GitHub Workflow Status PyPI - License

PyPI - Python Version PyPI

Installation

  pip install mobi-reader

Usage

This example is taken from tests/test_reader.py

  from mobi import Mobi

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

  reader.close()