An open API service indexing awesome lists of open source software.

https://github.com/drewsonne/pydamos

Python library to interact with the Database of Mycean at Oslo
https://github.com/drewsonne/pydamos

academic archaeology big-data greek linguistics mycenaea research

Last synced: 7 months ago
JSON representation

Python library to interact with the Database of Mycean at Oslo

Awesome Lists containing this project

README

          

# pydamos
Python library to interact with the [Database of Mycean at Oslo](https://www2.hf.uio.no/damos/)

# Example

```python
import pydamos

for site in pydamos.sites():
for item in site.items():
print("Site: '{site}', Item: '{item}'\n\n".format(
site=site.value,
item=item.item_name
))

for key, facet in pydamos.facets():
print(key, facet)
```