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 | преди 3 години | |
---|---|---|
gemtextparser | преди 3 години | |
.gitignore | преди 3 години | |
LICENSE | преди 3 години | |
README.md | преди 3 години | |
setup.py | преди 3 години |
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: