forming up the interface
This commit is contained in:
parent
b191808a13
commit
5d2ba100cf
10
README.md
10
README.md
@ -0,0 +1,10 @@
|
|||||||
|
# temp-index
|
||||||
|
|
||||||
|
## hacking
|
||||||
|
|
||||||
|
```python
|
||||||
|
from temp_index import make_cards
|
||||||
|
|
||||||
|
|
||||||
|
make_cards("mycards.pdf", "sqlite:///metadata.db", ["title"])
|
||||||
|
```
|
@ -7,54 +7,58 @@ from reportlab.pdfgen import canvas
|
|||||||
from reportlab.platypus import PageBreak, Paragraph, SimpleDocTemplate, Spacer
|
from reportlab.platypus import PageBreak, Paragraph, SimpleDocTemplate, Spacer
|
||||||
|
|
||||||
|
|
||||||
def make_cards():
|
def make_cards(filename, db_path, fields):
|
||||||
"""The main entrypoint for card generation."""
|
"""The main entrypoint for card generation."""
|
||||||
# TODO: thread arguments into this logic
|
doc = create_doc(filename)
|
||||||
doc = create_doc("text.pdf")
|
content = get_fields(db_path, fields)
|
||||||
content = get_fields()
|
|
||||||
doc.build(content)
|
doc.build(content)
|
||||||
|
|
||||||
|
|
||||||
def get_fields():
|
def get_fields(db_path, fields):
|
||||||
"""Retrieve fields from the metadata."""
|
"""Retrieve fields from the metadata."""
|
||||||
content = []
|
content = []
|
||||||
styles = getSampleStyleSheet()
|
styles = getSampleStyleSheet()
|
||||||
session = init_session("sqlite:///metadata.db")
|
session = init_session(db_path)
|
||||||
|
|
||||||
for book in session.query(Book).all():
|
for book in session.query(Book).all():
|
||||||
for comment in session.query(Comment).all():
|
for comment in session.query(Comment).all():
|
||||||
ptitle = Paragraph(
|
|
||||||
"<font size=12>{}</font>".format(book.title), styles["Italic"]
|
|
||||||
)
|
|
||||||
ptime = Paragraph(
|
|
||||||
"<font size=10>Uploaded: {}</font>".format(book.timestamp),
|
|
||||||
styles["Normal"],
|
|
||||||
)
|
|
||||||
pcomments = Paragraph("<font size=10>{}</font>".format(comment.text))
|
|
||||||
|
|
||||||
format_string = "<font size=12>{}</font>"
|
if "title" in fields:
|
||||||
all_authors = [author.name for author in book.authors]
|
tag = "<font size=12>{}</font>".format(book.title)
|
||||||
glued_together = format_string.format(", ".join(all_authors))
|
ptitle = Paragraph(tag, styles["Italic"])
|
||||||
|
content.append(ptitle)
|
||||||
|
content.append(Spacer(1, 12))
|
||||||
|
|
||||||
format_string = "<font size=10>{}</font>"
|
if "uploaded_at" in fields:
|
||||||
all_tags = [tag.name for tag in book.tags]
|
tag = "<font size=10>Uploaded: {}</font>".format(book.timestamp)
|
||||||
tags_glued_together = format_string.format(", ".join(all_tags))
|
ptime = Paragraph(tag, styles["Normal"])
|
||||||
|
content.append(ptime)
|
||||||
|
content.append(Spacer(1, 12))
|
||||||
|
|
||||||
content.append(ptitle)
|
if "comments" in fields:
|
||||||
content.append(Spacer(1, 12))
|
tag = "<font size=10>{}</font>".format(comment.text)
|
||||||
content.append(ptime)
|
pcomments = Paragraph(tag)
|
||||||
content.append(Spacer(1, 12))
|
content.append(pcomments)
|
||||||
content.append(pcomments)
|
|
||||||
|
|
||||||
p = Paragraph(glued_together, styles["Normal"])
|
if "authors" in fields:
|
||||||
content.append(p)
|
format_string = "<font size=12>{}</font>"
|
||||||
content.append(PageBreak())
|
all_authors = [author.name for author in book.authors]
|
||||||
content.append(Spacer(6, 12))
|
glued_together = format_string.format(", ".join(all_authors))
|
||||||
|
|
||||||
p = Paragraph(tags_glued_together, styles["Normal"])
|
p = Paragraph(glued_together, styles["Normal"])
|
||||||
content.append(p)
|
content.append(p)
|
||||||
content.append(PageBreak())
|
content.append(PageBreak())
|
||||||
content.append(Spacer(6, 12))
|
content.append(Spacer(6, 12))
|
||||||
|
|
||||||
|
if "tags" in fields:
|
||||||
|
format_string = "<font size=10>{}</font>"
|
||||||
|
all_tags = [tag.name for tag in book.tags]
|
||||||
|
tags_glued_together = format_string.format(", ".join(all_tags))
|
||||||
|
|
||||||
|
p = Paragraph(tags_glued_together, styles["Normal"])
|
||||||
|
content.append(p)
|
||||||
|
content.append(PageBreak())
|
||||||
|
content.append(Spacer(6, 12))
|
||||||
|
|
||||||
return content
|
return content
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user