Personal tools
Pleiades in the Fediverse
10 July 2026

New in the Zotero library: Tedesco 2025 = Paolo Tedesco, Living at the Margins: African Peasants in an Age of Extremes 300 - 900 CE (Hiersemann, 2025).

Bibliographic record: zotero.org/groups/2533/items/8

10 July 2026

New in the Zotero library: Haeperen 2019 = Françoise Van Haeperen, Portus. Basilique épiscopale, in Collège de France (Collège de France, 2019), doi.org/10.4000/books.cdf.6804.

Available at: doi.org/10.4000/books.cdf.6804

Bibliographic record: zotero.org/groups/2533/items/4

10 July 2026

New in the Zotero library: Knell 2010 = Heiner Knell, Kaiser Trajan als Bauherr : Macht und Herrschaftsarchitektur (Wissenschaftliche Buchgesellschaft, 2010).

Bibliographic record: zotero.org/groups/2533/items/7

10 July 2026

Export Updates 2026-07-10:
Pleiades gazetteer of ancient places

1 new and 61 updated places. 3 new and 24 updated linked data sidebars.

1. Downloads: pleiades.stoa.org/downloads

2. pleiades.datasets: github.com/isawnyu/pleiades.da:

"main" branch:

eaf54274 - updated json
no change: rdf/ttl
c3f506d7 - updated gis package
94ebcb6a - updated data quality
abbed655 - updated bibliography
06c36667 - updated indexes
15f0b653 - updated sidebar

3. pleiades-geojson: github.com/ryanfb/pleiades-geo:

c63f41a7 - updated geojson and names index

4. pleiades_wikidata: github.com/isawnyu/pleiades_wi:

e512ad97 - updated pleiades wikidata

09 July 2026

New in the Zotero library: Anthologia Latina (Shackleton Bailey; Teubner) = David R. Shackleton Bailey, ed., Anthologia Latina: Pars I: Carmina in codicibus scripta. Fasc.1.Libri Salmasiani aliorumque carmina (De Gruyter, 1982), doi.org/10.1515/9783110966527.

Available at: degruyter.com/document/doi/10.

Bibliographic record: zotero.org/groups/2533/items/L

Pleiades in the Fediverse - More…
You are here: Home Project news and content updates Pleiades Project Blog Pleiades dataset API wrapper

Skip to content. | Skip to navigation

Pleiades dataset API wrapper

Creators: Daniele Fusi
Contributors: Tom Elliott
Copyright © The Contributors. Sharing and remixing permitted under terms of the Creative Commons Attribution 3.0 License (cc-by).
Last modified Jun 25, 2024 06:01 PM
A guest post by Daniele Fusi in the Pleiades gazetteer "Projects and Partners" series describing a simple command-line interface tool for importing Pleiades JSON data into a relational database, indexing it, and providing an application programming interface service to other applications, enabling them to lookup places with a combination of search parameters.

Get the code for the Pleiades Dataset API Wrapper at https://github.com/vedph/pleiades-api

In the context of several projects related to the Classical world, ranging from general-purpose content creation frameworks for digital editions (Cadmus) to more specialized tools like meta-repositories of epigraphic documents, I have often found myself in need of a quick way to use the Pleiades database through an API service, from both frontend and backend solutions. To this end, I created a simple command-line interface (CLI) tool for importing Pleiades JSON data into an ad-hoc designed relational database management system (RDBMS) (primarily Postgres with Postgis), quickly index it, and provide an application programming interface (API) service to lookup places with a combination of search parameters. Even if until now I had no need for adding more optional features (like authentication, balancing, and the like), this could be accomplished in a few hours’ work, as the infrastructure is already in place. Also, the API service is ready to be containerized into Docker, also providing data dumps from Postgres to be automatically imported during container startup. This allows firing up a fully working API service with cross-origin resource sharing (CORS) support, Swagger frontend and fresh data in a few minutes. When an updated version of Pleiades comes out, you just have to rebuild the container with a new data dump. Of course, once the CLI tool has imported the database, you can also bypass my service completely and use the database as you prefer. The CLI tool also provides a command to interactively build SQL code to query the database. Full source code is available at https://github.com/vedph/pleiades-api.