mirror of
https://github.com/gryf/ebook-converter.git
synced 2026-01-01 15:32:26 +01:00
27 lines
678 B
Python
27 lines
678 B
Python
import os
|
|
|
|
from ebook_converter.customize.conversion import InputFormatPlugin
|
|
|
|
|
|
__license__ = 'GPL 3'
|
|
__copyright__ = '2009, John Schember <john@nachtimwald.com>'
|
|
__docformat__ = 'restructuredtext en'
|
|
|
|
|
|
class RBInput(InputFormatPlugin):
|
|
|
|
name = 'RB Input'
|
|
author = 'John Schember'
|
|
description = 'Convert RB files to HTML'
|
|
file_types = {'rb'}
|
|
commit_name = 'rb_input'
|
|
|
|
def convert(self, stream, options, file_ext, log,
|
|
accelerators):
|
|
from ebook_converter.ebooks.rb.reader import Reader
|
|
|
|
reader = Reader(stream, log, options.input_encoding)
|
|
opf = reader.extract_content(os.getcwd())
|
|
|
|
return opf
|