fnp
/
librarian.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
fixes for edge cases
[librarian.git]
/
src
/
librarian
/
builders
/
pdf.py
1
from librarian import OutputFile
2
3
4
class PdfBuilder:
5
# Obowiązkowe
6
file_extension = 'pdf'
7
def build(self, document, mp3):
8
# stub
9
return OutputFile.from_bytes(b'')
10
11
12