home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.6)
-
- __license__ = 'GPL 3'
- __copyright__ = '2009, John Schember <john@nachtimwald.com>'
- __docformat__ = 'restructuredtext en'
- import os
- from calibre.ebooks.rb.reader import Reader
- from calibre.customize.conversion import InputFormatPlugin
-
- class RBInput(InputFormatPlugin):
- name = 'RB Input'
- author = 'John Schember'
- description = 'Convert RB files to HTML'
- file_types = set([
- 'rb'])
-
- def convert(self, stream, options, file_ext, log, accelerators):
- reader = Reader(stream, log, options.input_encoding)
- opf = reader.extract_content(os.getcwd())
- return opf
-
-
-