A library for parsing gemtext (mimetype text/gemini) in python3.
Björn Wärmedal 2cab467aef Added method for getting the whole text line from the gemtext line class | hace 3 años | |
---|---|---|
gemtextparser | hace 3 años | |
.gitignore | hace 3 años | |
LICENSE | hace 3 años | |
README.md | hace 3 años | |
setup.py | hace 3 años |
A library for parsing gemtext (mimetype text/gemini) in python3.
usage: gemtextparser [-h] [-f FILE]
A library and CLI tool for parsing and validating gemtext (mimetype text/gemini) in python3.
optional arguments:
-h, --help show this help message and exit
-f FILE, --file FILE File to validate
As library:
import gemtextparser
parser = gemtextparser.GemtextParser()
line = gp.parseLine("# Some Gemtext string here.")
print(f"The line is of type {line.linetype.name} with the text '{line.text()}'.")
When used as a library it provides the developer with the following: