A simple document rendering system in Python
Project description
pretty-doc
from __future__ import annotations
from dataclasses import dataclass
import pretty_doc as doc
import json
@dataclass
class Block:
name: str
contents: list[Block] | str = ""
def to_doc(self):
return to_doc(self)
def to_doc(self: Block) -> doc.Doc:
if isinstance(self.contents, list):
return doc.vsep([
doc.seg(self.name) + doc.seg("{"),
doc.indent(4, doc.vsep(
list(map(to_doc, self.contents)))),
doc.seg("}")
])
return doc.seg(self.name) + doc.seg(json.dumps(self.contents))
doc = Block(
"A",
[
Block("C", "ccc"),
Block("B",
[
Block("C", "ccc"),
]
),
Block("C", "ccc"),
Block("C", "ccc"),
]
).to_doc()
print(doc.show())
# out:
A {
C "ccc"
B {
C "ccc"
}
C "ccc"
C "ccc"
}
import sys
doc.render(sys.stdout.write)
# out:
A {
C "ccc"
B {
C "ccc"
}
C "ccc"
C "ccc"
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file pretty_doc-0.3-py3-none-any.whl
.
File metadata
- Download URL: pretty_doc-0.3-py3-none-any.whl
- Upload date:
- Size: 4.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/3.10.0 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8cd18226deb2944d1e064d0d7e4519a562bf0532c31b3e098fd11f2244b5f03b |
|
MD5 | d6a5a7dc3a134581761e168850a1ac9a |
|
BLAKE2b-256 | 9e48a07ec456ffe3d7885d48efee8a0fdc00e97f31df144dfa3326bfc6ee7062 |