fnp
/
librarian.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
New EPUB builder, other minor changes.
[librarian.git]
/
src
/
librarian
/
builders
/
pdf.py
diff --git a/src/librarian/builders/pdf.py
b/src/librarian/builders/pdf.py
new file mode 100644
(file)
index 0000000..
6b2501e
--- /dev/null
+++ b/
src/librarian/builders/pdf.py
@@ -0,0
+1,12
@@
+from librarian import OutputFile
+
+
+class PdfBuilder:
+ # Obowiązkowe
+ file_extension = 'pdf'
+ def build(self, document, mp3):
+ # stub
+ return OutputFile.from_bytes(b'')
+
+
+