fnp
/
librarian.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
6b2501ee011cfc5f47d5043b5fdd65cd161d5f75
[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