Metadata-Version: 2.0
Name: reddit2ebook
Version: 2.0.0
Summary: convert reddit stories and comments into ebooks
Home-page: https://github.com/MissingNoIOI/reddit2ebook
Author: Gerrit Helling
Author-email: gerrit@akuma.pictures
License: GPLv3
Keywords: reddit ebook epub offline
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: Topic :: Multimedia
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Requires-Dist: Pillow
Requires-Dist: PyYaml
Requires-Dist: mistune
Requires-Dist: praw
Requires-Dist: pyprind
Requires-Dist: pypub


Convert stories and comments from reddit into epubs

It doesn't require Pandoc any longer and is a pure Python program now
ebooklib currently has a bug, so I'm shipping out a patched version
until it gets fixed

Requirements: PyYaml. pyprind, praw, mistune::

 Usage: reddit2ebook configfile output-directory

The configfile should be in the following format: ::

     AssortedWorks:
         author: /u/GallowB00b
         title: Assorted Works
         cover: Gallow.jpg
         lang: en
         links:
             - url
             - url
             - url

     MissingKeys:
         author: /u/airz24
         title: The Missing Keys
         cover: keyboard.jpg
         lang: en
         links:
             - url
             - url
             - url

author, title cover and lang are all optional

The older format is also supported: ::

     bookname:
         - url
         - url
         - url



You can use regular links for the submissions and permalinks for comments
If the link has a trailing slash its a submission, if not a comment. This
is the default behaviour when copy-pasting the links from the browser,
but sometimes people link to the comment section instead of the submission,
simply adding a trailing slash will give you the submission text then


