rebookmaker


Namerebookmaker JSON
Version 0.8.11 PyPI version JSON
download
home_pagehttps://github.com/shlomif/rebookmaker
SummaryEPUB generator
upload_time2024-04-05 08:16:21
maintainerNone
docs_urlNone
authorShlomi Fish
requires_pythonNone
license3-clause BSD
keywords rebookmaker
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ==============================================================================
rebookmaker.  EPUB generator
==============================================================================
:Info: This is the README file for rebookmaker.
:Author: Shlomi Fish <shlomif@cpan.org>
:Copyright: © 2020, Shlomi Fish.
:Date: 2024-04-05
:Version: 0.8.11

.. index: README
.. image:: https://travis-ci.org/shlomif/rebookmaker.svg?branch=master
   :target: https://travis-ci.org/shlomif/rebookmaker

PURPOSE
-------

rebookmaker - an open source (MIT-licensed) re-implementation of
Marcelo Lira’s ( @setanta ) ebookmaker.

EPUB is a popular and open file format standard for electronic books (see
https://en.wikipedia.org/wiki/EPUB for more information about it). What
rebookmaker (= "re-ebook-maker") does is compile a definition of the
book inside a JSON file along with some input HTML and image files into an
.epub.

See:

* https://github.com/setanta/ebookmaker/ - does not have an explicit
  licence, which prompted this re-implementation.
* https://pypi.org/project/ebookmaker/ - GPLv3 by Project Gutenberg and
  incompatible with @setanta 's .

INSTALLATION
------------

pip3 install rebookmaker

NOTES
-----

Since the name "ebookmaker" was taken on pypi and it is common courtesy to
change the name, I picked "rebookmaker" since it was available
on pypi and as a pun on `reboots in fiction <https://en.wikipedia.org/wiki/Reboot_%28fiction%29>`_
because it was a rewrite.

The issue where I requested an explicit licensing of the original
project is here:
https://github.com/setanta/ebookmaker/issues/8 but I have yet to receive a reply.

You can find some examples for valid input by perusing the code in
https://github.com/shlomif/screenplays-common and
https://github.com/shlomif/shlomi-fish-homepage . Preparing some less
generic examples is on my TODO list.

This project aims for compatibility with setanta's project, but some functionality
may be still missing and I also added some new one.

Samples:
--------

* https://github.com/shlomif/english-humanity-the-movie-rebookmaker-example - under CC-BY-SA.

Similar Projects:
-----------------

* http://docbook.sourceforge.net/release/xsl/current/epub/README - DocBook 5 can be
  converted to EPUB.
* https://github.com/shlomif/cookiecutter--shlomif-latemp-sites - contains some custom XSLT
  stylesheets for reproducible builds and other features.
* https://pypi.org/project/ebookmaker/ - by Project Gutenberg: accepts a different input.
* https://packages.debian.org/source/sid/strip-nondeterminism - allow for reproducible
  builds EPUBs.

COPYRIGHT
---------
Copyright © 2020, Shlomi Fish.
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:

1. Redistributions of source code must retain the above copyright
   notice, this list of conditions, and the following disclaimer.

2. Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions, and the following disclaimer in the
   documentation and/or other materials provided with the distribution.

3. Neither the name of the author of this software nor the names of
   contributors to this software may be used to endorse or promote
   products derived from this software without specific prior written
   consent.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/shlomif/rebookmaker",
    "name": "rebookmaker",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "rebookmaker",
    "author": "Shlomi Fish",
    "author_email": "shlomif@cpan.org",
    "download_url": "https://files.pythonhosted.org/packages/11/ba/1744aade2de233340e796ce5502a42d73cbe37f09565c6f50b639c9b0233/rebookmaker-0.8.11.tar.gz",
    "platform": "any",
    "description": "==============================================================================\nrebookmaker.  EPUB generator\n==============================================================================\n:Info: This is the README file for rebookmaker.\n:Author: Shlomi Fish <shlomif@cpan.org>\n:Copyright: \u00a9 2020, Shlomi Fish.\n:Date: 2024-04-05\n:Version: 0.8.11\n\n.. index: README\n.. image:: https://travis-ci.org/shlomif/rebookmaker.svg?branch=master\n   :target: https://travis-ci.org/shlomif/rebookmaker\n\nPURPOSE\n-------\n\nrebookmaker - an open source (MIT-licensed) re-implementation of\nMarcelo Lira\u2019s ( @setanta ) ebookmaker.\n\nEPUB is a popular and open file format standard for electronic books (see\nhttps://en.wikipedia.org/wiki/EPUB for more information about it). What\nrebookmaker (= \"re-ebook-maker\") does is compile a definition of the\nbook inside a JSON file along with some input HTML and image files into an\n.epub.\n\nSee:\n\n* https://github.com/setanta/ebookmaker/ - does not have an explicit\n  licence, which prompted this re-implementation.\n* https://pypi.org/project/ebookmaker/ - GPLv3 by Project Gutenberg and\n  incompatible with @setanta 's .\n\nINSTALLATION\n------------\n\npip3 install rebookmaker\n\nNOTES\n-----\n\nSince the name \"ebookmaker\" was taken on pypi and it is common courtesy to\nchange the name, I picked \"rebookmaker\" since it was available\non pypi and as a pun on `reboots in fiction <https://en.wikipedia.org/wiki/Reboot_%28fiction%29>`_\nbecause it was a rewrite.\n\nThe issue where I requested an explicit licensing of the original\nproject is here:\nhttps://github.com/setanta/ebookmaker/issues/8 but I have yet to receive a reply.\n\nYou can find some examples for valid input by perusing the code in\nhttps://github.com/shlomif/screenplays-common and\nhttps://github.com/shlomif/shlomi-fish-homepage . Preparing some less\ngeneric examples is on my TODO list.\n\nThis project aims for compatibility with setanta's project, but some functionality\nmay be still missing and I also added some new one.\n\nSamples:\n--------\n\n* https://github.com/shlomif/english-humanity-the-movie-rebookmaker-example - under CC-BY-SA.\n\nSimilar Projects:\n-----------------\n\n* http://docbook.sourceforge.net/release/xsl/current/epub/README - DocBook 5 can be\n  converted to EPUB.\n* https://github.com/shlomif/cookiecutter--shlomif-latemp-sites - contains some custom XSLT\n  stylesheets for reproducible builds and other features.\n* https://pypi.org/project/ebookmaker/ - by Project Gutenberg: accepts a different input.\n* https://packages.debian.org/source/sid/strip-nondeterminism - allow for reproducible\n  builds EPUBs.\n\nCOPYRIGHT\n---------\nCopyright \u00a9 2020, Shlomi Fish.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n1. Redistributions of source code must retain the above copyright\n   notice, this list of conditions, and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright\n   notice, this list of conditions, and the following disclaimer in the\n   documentation and/or other materials provided with the distribution.\n\n3. Neither the name of the author of this software nor the names of\n   contributors to this software may be used to endorse or promote\n   products derived from this software without specific prior written\n   consent.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n",
    "bugtrack_url": null,
    "license": "3-clause BSD",
    "summary": "EPUB generator",
    "version": "0.8.11",
    "project_urls": {
        "Homepage": "https://github.com/shlomif/rebookmaker"
    },
    "split_keywords": [
        "rebookmaker"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "11ba1744aade2de233340e796ce5502a42d73cbe37f09565c6f50b639c9b0233",
                "md5": "e95b3b8ed3259970eadc136e4a0c9d2b",
                "sha256": "16341f32cb6ab25dd83c3626fccfcc265db56de1a4d59fca89645154f723d4f9"
            },
            "downloads": -1,
            "filename": "rebookmaker-0.8.11.tar.gz",
            "has_sig": false,
            "md5_digest": "e95b3b8ed3259970eadc136e4a0c9d2b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 21117,
            "upload_time": "2024-04-05T08:16:21",
            "upload_time_iso_8601": "2024-04-05T08:16:21.059539Z",
            "url": "https://files.pythonhosted.org/packages/11/ba/1744aade2de233340e796ce5502a42d73cbe37f09565c6f50b639c9b0233/rebookmaker-0.8.11.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-05 08:16:21",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "shlomif",
    "github_project": "rebookmaker",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "rebookmaker"
}
        
Elapsed time: 0.23277s