7 lines
148 B
Python
7 lines
148 B
Python
from bu4.parsing.linked import Parsed
|
|
from bu4.parsing.parser import Parser
|
|
|
|
|
|
def parse(source: bytes) -> Parsed:
|
|
return Parser(source).parse()
|