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
- Host: GitHub
- URL: https://github.com/drewsonne/pydamos
- Owner: drewsonne
- Created: 2018-09-30T10:52:45.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-05T14:18:39.000Z (about 7 years ago)
- Last Synced: 2025-01-16T19:48:01.092Z (9 months ago)
- Topics: academic, archaeology, big-data, greek, linguistics, mycenaea, research
- Language: Python
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 pydamosfor 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)
```