Skip to main content

Library allowing to work with MoonReader book formats.

Project description

Build Status

Description - what, why and how

This library allows you to get basic data from Moon+Reader notes and statistics files either local or remote (Dropbox support is currently available).

Moon+Reader is one of the best ebook readers I've tried for Android OS with lots of functionality. The features I use a lot are creating notes when reading books and having them syncronized with my dropbox account. One day I thought that it would be great to write a library for parsing those files and obtaining data from them, as a result this library is being developed.

Installation from source

This requires poetry for the installation

git clone https://github.com/MrLokans/MoonReader_tools
cd MoonReader_tools
poetry build && poetry install

Installation from PyPI

pip install moonreader_tools

Usage as CLI utility

It is assumed that you're the MoonReader+ Pro user and have Dropbox linked to your reader app. If you're reading and creating highlights you'll be having lots of files in the syncronized folder (e.g. Dropbox/Books/.Moon+/Cache)

To get JSON data about all of your books you may use CLI entry to get data from dropbox or local folder:

moon_tools --path <path/to/moonreader/cache> --output-file <outfile>.json

moon_tools --dropbox-token <DROPBOX TOKEN> --output-file <outfile>.json

Usage as library

import dropbox
from moonreader_tools.finders import FilesystemFinder, DropboxFinder

# We may look for books in FS directories
extractor = FilesystemFinder(path="/dir/with/moonreader/files")
books = extractor.get_books()
for book in books:
    print(book.title)
    for note in book.notes:
        print(note.text)

# And in the dropbox

client = dropbox.Dropbox(access_token='MYSECRETTOKEN')
extractor = DropboxFinder(client, books_path='moonreader_save_dir')

books = extractor.get_books()
for book in books:
    print(book.title)
    for note in book.notes:
        print(note.text)

Running tests

make test

Formatting codebase

make format

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

moonreader_tools-2.0.0.tar.gz (14.0 kB view details)

Uploaded Source

Built Distribution

moonreader_tools-2.0.0-py3-none-any.whl (19.0 kB view details)

Uploaded Python 3

File details

Details for the file moonreader_tools-2.0.0.tar.gz.

File metadata

  • Download URL: moonreader_tools-2.0.0.tar.gz
  • Upload date:
  • Size: 14.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.11 CPython/3.8.12 Darwin/22.1.0

File hashes

Hashes for moonreader_tools-2.0.0.tar.gz
Algorithm Hash digest
SHA256 16bd4fbfd4d1f1018e44847c5baecf22425d293d6704b3e05246cc84c2c7cefe
MD5 0e123be67eb58d13373886643bfc1314
BLAKE2b-256 6f1833f97deb7abf64586a52a6c02be06f0280a1ef61dc8b76b153b56765572f

See more details on using hashes here.

File details

Details for the file moonreader_tools-2.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for moonreader_tools-2.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5745c55ef665fd75b44e01fdb7da4d7be0b348b29d70d718a06bbb4fc062e34b
MD5 3091fc78a683925a39a1e255604269e2
BLAKE2b-256 de7aea3b03e164206ef71ca030aaeb0e1ea1bfc015c9887ffc53a66fd9ad1fd6

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page