-
Notifications
You must be signed in to change notification settings - Fork 365
Anthology API
Matt Post edited this page Oct 4, 2019
·
4 revisions
The Anthology's official data is hosted in the data/xml directory.
You could parse this yourself, but there is a nice Python library we have built around it.
This can be found under bin/anthology/.
Many scripts that use this Anthology() class can be found in the bin/ directory, such as create_hugo_yaml.py and add_revision.py.
You can view those scripts for an example usage, for example, for how to iterate over the volumes and papers in the Anthology.
Here is a quick example:
anthology = Anthology(importdir=XML_DIR)
for id_, paper in anthology.papers.items():
print(paper.full_id, paper.get_title('text'))