From 2096408b51a9fb85507c1087641bd7fee88ad384 Mon Sep 17 00:00:00 2001 From: jthorne2000 Date: Mon, 31 Mar 2025 14:00:09 +0000 Subject: [PATCH 1/8] update gitignore --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 7334fe1..b3d4d82 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ .ipynb_checkpoints _build .venv -.envrc \ No newline at end of file +.envrc +10_apis.ipynb_checkpoints \ No newline at end of file From c5570e206ba053a03765a54918f1070660af4ee2 Mon Sep 17 00:00:00 2001 From: jthorne2000 Date: Mon, 31 Mar 2025 14:14:43 +0000 Subject: [PATCH 2/8] updated gitignore --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index b3d4d82..7defecd 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,4 @@ _build .venv .envrc -10_apis.ipynb_checkpoints \ No newline at end of file +.apis From ed74f3af0d3157c17c63b581d7445bca976151a8 Mon Sep 17 00:00:00 2001 From: jthorne2000 Date: Mon, 31 Mar 2025 14:15:07 +0000 Subject: [PATCH 3/8] api practice --- 10_apis.ipynb | 286 -------------------------------------------------- 1 file changed, 286 deletions(-) delete mode 100644 10_apis.ipynb diff --git a/10_apis.ipynb b/10_apis.ipynb deleted file mode 100644 index 527fafb..0000000 --- a/10_apis.ipynb +++ /dev/null @@ -1,286 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "---\n", - "title: APIs\n", - "subtitle: \"Application Programming Interfaces\"\n", - "author:\n", - " - name: Charles Pletcher\n", - " affiliations: Tufts University\n", - " orcid: 0000-0003-2734-5511\n", - " email: charles.pletcher@tufts.edu\n", - "license:\n", - " code: MIT\n", - "date: 2025-03-31\n", - "---\n", - "\n", - "# Application Programming Interfaces\n", - "\n", - "You will hear the term \"API\" in many different contexts when it comes to computer programming. Already in this class, we have discussed Python's API for the file system.\n", - "\n", - "Often, however, when someone mentions an API, they are referring to a web-based API that is usually accessed over HTTP(S). You might have heard about the kerfuffle when Twitter shut down much of the access to its API, or when Reddit did the same thing a few years earlier. These APIs are servers that provide _interfaces_ (the \"I\" in \"API\") to a platform's data.\n", - "\n", - "As you probably noticed while reading @Walker2019, it is not exactly uncommon for references to APIs to become out of date.\n", - "\n", - "Luckily, we can still use the API provided by the [Digital Public Library of America](https://dp.la) for our work for this class.\n", - "\n", - "We'll be working with the Python [Requests](https://docs.python-requests.org/en/latest/) library, which provides its own easy-to-use API for making HTTP requests. In other words, it's APIs all the way down.\n", - "\n", - "## Getting an access token\n", - "\n", - "Generally, APIs will ask that you first obtain a key to use them. Even if APIs offer unlimited requests, it is important for them to require users to supply an API key so that they can track (often anonymized) usage statistics, errors, and so on.\n", - "\n", - "Sometimes, APIs require you to pay, either immediately or after making a certain number of requests. Keys can be used to track usage for payment calculations, too. For an example of this system, see OpenAI's [pricing page](https://openai.com/api/pricing/).\n", - "\n", - "### An API Key for DPLA\n", - "\n", - "For this tutorial, we'll work with the Digital Public Library of America's (DPLA) API. Take a few minutes to read through their [API Basics](https://pro.dp.la/developers/api-basics), then request an API key.\n", - "\n", - ":::{note} Request types\n", - "\n", - "You'll notice that you must submit a `POST` request to receive an API key. `POST` is one of several HTTP verbs. When you enter a URL into a web browser and hit \"Enter,\" you're typically issuing a `GET` request: `GET` requests do not have a request body; they simply ask for the information at the provided URL, perhaps with some query parameters (the `key=value` pairs after a `?` in the URL).\n", - "\n", - "`POST` requests, by contrast, _may_ contain a request body. You've probably submitted `POST` requests without knowing it whenever you sign up for a new service. That's essentially what we're doing with DPLA here, we're just doing it from the command line instead of through an interface that DPLA has built.\n", - ":::\n", - "\n", - "The DPLA [documentation](https://pro.dp.la/developers/policies#get-a-key) instructs you to submit a request using `curl`, but we don't have access to `curl` from this notebook. Instead, let's make the request using the Python \"Requests\" library." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "%pip install requests" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "import requests\n", - "\n", - "my_email = \"YOUR EMAIL HERE\"\n", - "\n", - "requests.post(f\"https://api.dp.la/v2/api_key/{my_email}\")" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "After running the above code cell, you should receive an email with your API code. It's good practice not to share these codes or include them in version control (i.e., git).\n", - "\n", - "Instead, create an account-specific [secret](https://docs.github.com/en/codespaces/managing-your-codespaces/managing-your-account-specific-secrets-for-github-codespaces) by following the instructions provided by GitHub. \n", - "\n", - "Let's call the secret `DPLA_API_KEY`. (It's conventional to use all caps for environment variables and secrets.)\n", - "\n", - "Make sure to give your fork of this repository access to the secret, and then restart this codespace. We'll be here when you get back." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Making your first request\n", - "\n", - "As we saw above, making requests using the `requests` library is pretty straightforward — for a `GET` request, we can just pass a URL to `requests.get()`.\n", - "\n", - "In order for the request to be successful, though, we'll need to include the API key in the `api_key` querystring parameter. And to do that, we'll need to use the `os` library in Python." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "import os\n", - "import requests\n", - "\n", - "DPLA_API_KEY = os.getenv(\"DPLA_API_KEY\")" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Let's use the example provided by the DPLA documentation, querying for the term \"weasels\"." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "\n", - "requests.get(f\"https://api.dp.la/v2/items?q=weasels&api_key={DPLA_API_KEY}\")\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "`` means that our request was successful, but it doesn't give us a whole lot of information. This is because we have not read the response body. To do so, let's assign the response — which is the return value of `requests.get()` — to a variable and read it as JSON." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "response = requests.get(f\"https://api.dp.la/v2/items?q=weasels&api_key={DPLA_API_KEY}\")\n", - "\n", - "response.json()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Reading responses\n", - "\n", - "As you can see above, the response returns a JSON (JavaScript Object Notation) object with a few top-level keys. If you're thinking, \"Hm, this JSON looks an awful lot like a Python dictionary,\" you're absolutely right. While the semantics of Python dictionaries and JSON _are_ different, in this case, the `requests` library has already coerced the raw JSON to a Python dictionary for us. You can access its values like you would with any Python dict:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "parsed_response = response.json()\n", - "\n", - "parsed_response['count']" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - ":::{important}\n", - "Experiment a bit. How, for example, would you get all of the titles in a list?\n", - ":::" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Constructing queries\n", - "\n", - "Naturally, when you're working with an API, you'll want to be able to construct your own queries. Above, we hard-coded the value `weasels` under the querystring parameter `q`. But you can use Python's string interpolation to set any value you want. For example" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "my_query = \"foxes\"\n", - "my_url = f\"https://api.dp.la/v2/items?q={my_query}&api_key={DPLA_API_KEY}\"\n", - "\n", - "response = requests.get(my_url)\n", - "\n", - "parsed_response = response.json()\n", - "parsed_response" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You could even write a function that puts constructs the request URL and returns the parsed response so that you don't have to do these things manually over and over again." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "def make_dpla_request(query: str):\n", - " url = f\"https://api.dp.la/v2/items?q={query}&api_key={DPLA_API_KEY}\"\n", - " response = requests.get(url)\n", - "\n", - " return response.json()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "There's a problem with this code, however. What happens if you try to make a request with a query that contains spaces, such as `\"red foxes\"`?\n", - "\n", - "Can you find the appropriate workaround using the documentation? https://pro.dp.la/developers/requests\n", - "\n", - "What other features does this API support?" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## RESTful APIs\n", - "\n", - "Many APIs, including the DPLA's, are built on RESTful principles. REST stands for **Re**presentational **S**tate **T**ransfer. In terms of web APIs, REST means that a given server will respond with a representation of the data that it has available, and that representation will contain additional information for manipulating the data or requesting further data.\n", - "\n", - "Although it is not, strictly speaking, a requirement of REST APIs, many REST implementations use a predictable URL scheme.\n", - "\n", - "For example, you might find a list of \"collections\" at the `/collections` endpoint. To request a specific collection, you would append its ID — e.g., for Collection 3, `/collections/3`.\n", - "\n", - "Each collection might contain items, so to get a list of items in Collection 3 you could send a request to `/collections/3/items`. And then to get a specific item in that collection — you guessed it, `/collections/3/items/12`.\n", - "\n", - "DPLA does _not_ implement this kind of schema, and instead relies on facets and other search parameters. But it is worth being aware of such schemes if you want to use other APIs in your work and research." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Readings\n", - "\n", - "- @Walker2019\n", - "- @Matthes2023 [chs. 15–17]\n", - "\n", - "## Homework\n", - "\n", - "Design and test an experiment using the data from a publicly available API, such as the [Digital Public Library of America](https://pro.dp.la/developers) or [Chronicling America](https://chroniclingamerica.loc.gov/about/api/) — you can also use another data source, just run it by me first.\n", - "\n", - "In your report, be sure to discuss your research question, hypothesis, methods, results, and conclusion — in other words, walk the reader through the full scientific process.\n", - "\n", - "These experiments need not be large — think of a small, answerable question that you could tackle in the space of 4 hours of work (i.e., the amount of outside work generally expected for each lab)." - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": ".venv", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.12.7" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} From cea8c9b4882b6c03c0223c6dedc323298d76d532 Mon Sep 17 00:00:00 2001 From: jthorne2000 Date: Wed, 2 Apr 2025 13:15:12 +0000 Subject: [PATCH 4/8] updated/public --- 10_apis copy.ipynb | 1420 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 1420 insertions(+) create mode 100644 10_apis copy.ipynb diff --git a/10_apis copy.ipynb b/10_apis copy.ipynb new file mode 100644 index 0000000..4c738cb --- /dev/null +++ b/10_apis copy.ipynb @@ -0,0 +1,1420 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "---\n", + "title: APIs\n", + "subtitle: \"Application Programming Interfaces\"\n", + "author:\n", + " - name: Charles Pletcher\n", + " affiliations: Tufts University\n", + " orcid: 0000-0003-2734-5511\n", + " email: charles.pletcher@tufts.edu\n", + "license:\n", + " code: MIT\n", + "date: 2025-03-31\n", + "---\n", + "\n", + "# Application Programming Interfaces\n", + "\n", + "You will hear the term \"API\" in many different contexts when it comes to computer programming. Already in this class, we have discussed Python's API for the file system.\n", + "\n", + "Often, however, when someone mentions an API, they are referring to a web-based API that is usually accessed over HTTP(S). You might have heard about the kerfuffle when Twitter shut down much of the access to its API, or when Reddit did the same thing a few years earlier. These APIs are servers that provide _interfaces_ (the \"I\" in \"API\") to a platform's data.\n", + "\n", + "As you probably noticed while reading @Walker2019, it is not exactly uncommon for references to APIs to become out of date.\n", + "\n", + "Luckily, we can still use the API provided by the [Digital Public Library of America](https://dp.la) for our work for this class.\n", + "\n", + "We'll be working with the Python [Requests](https://docs.python-requests.org/en/latest/) library, which provides its own easy-to-use API for making HTTP requests. In other words, it's APIs all the way down.\n", + "\n", + "## Getting an access token\n", + "\n", + "Generally, APIs will ask that you first obtain a key to use them. Even if APIs offer unlimited requests, it is important for them to require users to supply an API key so that they can track (often anonymized) usage statistics, errors, and so on.\n", + "\n", + "Sometimes, APIs require you to pay, either immediately or after making a certain number of requests. Keys can be used to track usage for payment calculations, too. For an example of this system, see OpenAI's [pricing page](https://openai.com/api/pricing/).\n", + "\n", + "### An API Key for DPLA\n", + "\n", + "For this tutorial, we'll work with the Digital Public Library of America's (DPLA) API. Take a few minutes to read through their [API Basics](https://pro.dp.la/developers/api-basics), then request an API key.\n", + "\n", + ":::{note} Request types\n", + "\n", + "You'll notice that you must submit a `POST` request to receive an API key. `POST` is one of several HTTP verbs. When you enter a URL into a web browser and hit \"Enter,\" you're typically issuing a `GET` request: `GET` requests do not have a request body; they simply ask for the information at the provided URL, perhaps with some query parameters (the `key=value` pairs after a `?` in the URL).\n", + "\n", + "`POST` requests, by contrast, _may_ contain a request body. You've probably submitted `POST` requests without knowing it whenever you sign up for a new service. That's essentially what we're doing with DPLA here, we're just doing it from the command line instead of through an interface that DPLA has built.\n", + ":::\n", + "\n", + "The DPLA [documentation](https://pro.dp.la/developers/policies#get-a-key) instructs you to submit a request using `curl`, but we don't have access to `curl` from this notebook. Instead, let's make the request using the Python \"Requests\" library." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: requests in /home/codespace/.local/lib/python3.12/site-packages (2.32.3)\n", + "Requirement already satisfied: charset-normalizer<4,>=2 in /home/codespace/.local/lib/python3.12/site-packages (from requests) (3.4.1)\n", + "Requirement already satisfied: idna<4,>=2.5 in /home/codespace/.local/lib/python3.12/site-packages (from requests) (3.10)\n", + "Requirement already satisfied: urllib3<3,>=1.21.1 in /home/codespace/.local/lib/python3.12/site-packages (from requests) (2.3.0)\n", + "Requirement already satisfied: certifi>=2017.4.17 in /home/codespace/.local/lib/python3.12/site-packages (from requests) (2025.1.31)\n", + "Note: you may need to restart the kernel to use updated packages.\n" + ] + } + ], + "source": [ + "%pip install requests" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import requests\n", + "\n", + "my_email = \"\"\n", + "\n", + "requests.post(f\"https://api.dp.la/v2/api_key/{my_email}\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "After running the above code cell, you should receive an email with your API code. It's good practice not to share these codes or include them in version control (i.e., git).\n", + "\n", + "Instead, create an account-specific [secret](https://docs.github.com/en/codespaces/managing-your-codespaces/managing-your-account-specific-secrets-for-github-codespaces) by following the instructions provided by GitHub. \n", + "\n", + "Let's call the secret `DPLA_API_KEY`. (It's conventional to use all caps for environment variables and secrets.)\n", + "\n", + "Make sure to give your fork of this repository access to the secret, and then restart this codespace. We'll be here when you get back." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Making your first request\n", + "\n", + "As we saw above, making requests using the `requests` library is pretty straightforward — for a `GET` request, we can just pass a URL to `requests.get()`.\n", + "\n", + "In order for the request to be successful, though, we'll need to include the API key in the `api_key` querystring parameter. And to do that, we'll need to use the `os` library in Python." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "import requests\n", + "\n", + "DPLA_API_KEY = os.getenv(\"DPLA_API_KEY\")\n", + "\n", + "DPLA_API_KEY" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Let's use the example provided by the DPLA documentation, querying for the term \"weasels\"." + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "\n", + "requests.get(f\"https://api.dp.la/v2/items?q=weasels&api_key={DPLA_API_KEY}\")\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "`` means that our request was successful, but it doesn't give us a whole lot of information. This is because we have not read the response body. To do so, let's assign the response — which is the return value of `requests.get()` — to a variable and read it as JSON." + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'count': 245,\n", + " 'docs': [{'@context': 'http://dp.la/api/items/context',\n", + " '@id': 'http://dp.la/api/items/58952c8df9811303a16d3599f547d2c2',\n", + " '@type': 'ore:Aggregation',\n", + " 'aggregatedCHO': '#sourceResource',\n", + " 'dataProvider': {'@id': 'http://dp.la/api/contributor/american-philosophical-society',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q466089'],\n", + " 'name': 'American Philosophical Society'},\n", + " 'id': '58952c8df9811303a16d3599f547d2c2',\n", + " 'ingestDate': '2025-01-29T18:00:57.660Z',\n", + " 'ingestType': 'item',\n", + " 'isShownAt': 'https://diglib.amphilsoc.org/islandora/object/weasels',\n", + " 'object': 'https://diglib.amphilsoc.org/islandora/object/graphics%3A627/datastream/TN/view/Weasels.jpg',\n", + " 'originalRecord': {'stringValue': '\\n
\\n oai:funnel_cake:padig:APS-weasels\\n 2024-08-12T19:25:29Z\\n Set:dpla_test\\n
\\n \\n \\n Titian Ramsay Peale Sketches\\n Weasels\\n Peale, Titian Ramsay, 1799-1885\\n Natural history\\n Peale, Titian Ramsay, 1799-1885\\n Weasels\\n n.d.\\n Still Image\\n Pencil works\\n Peale #514.\\n \\n Titian Ramsay Peale Sketches--Mss.B.P31.15d--\\n \\n \\n https://diglib.amphilsoc.org/islandora/object/graphics%3A627/datastream/TN/view/Weasels.jpg\\n \\n \\n https://diglib.amphilsoc.org/islandora/object/weasels\\n \\n padig:APS-weasels\\n American Philosophical Society\\n \\n The APS has an Open Access Policy for all unrestricted material in the digital library. Open Access Materials can be used freely for non-commercial, scholarly, educational, or fair use as defined under United States copyright law. Read the full policy and learn more about our Rights and Reproduction at: http://www.amphilsoc.org/library/rights\\n \\n PA Digital\\n\\n \\n
\\n'},\n", + " 'provider': {'@id': 'http://dp.la/api/contributor/pa',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q83878501'],\n", + " 'name': 'PA Digital'},\n", + " 'rightsCategory': 'Unspecified Rights Status',\n", + " 'sourceResource': {'@id': 'http://dp.la/api/items/58952c8df9811303a16d3599f547d2c2#SourceResource',\n", + " 'collection': [{'title': 'Titian Ramsay Peale Sketches'}],\n", + " 'creator': ['Peale, Titian Ramsay, 1799-1885'],\n", + " 'date': [{'displayDate': 'n.d.'}],\n", + " 'description': ['Peale #514.'],\n", + " 'format': ['Pencil works'],\n", + " 'identifier': ['padig:APS-weasels'],\n", + " 'relation': ['Titian Ramsay Peale Sketches--Mss.B.P31.15d--'],\n", + " 'rights': ['The APS has an Open Access Policy for all unrestricted material in the digital library. Open Access Materials can be used freely for non-commercial, scholarly, educational, or fair use as defined under United States copyright law. Read the full policy and learn more about our Rights and Reproduction at: http://www.amphilsoc.org/library/rights'],\n", + " 'subject': [{'name': 'Natural history'},\n", + " {'name': 'Peale, Titian Ramsay, 1799-1885'},\n", + " {'name': 'Weasels'}],\n", + " 'title': ['Weasels'],\n", + " 'type': ['image']}},\n", + " {'@context': 'http://dp.la/api/items/context',\n", + " '@id': 'http://dp.la/api/items/1bb63407b0c8a0b59958cba153269f81',\n", + " '@type': 'ore:Aggregation',\n", + " 'aggregatedCHO': '#sourceResource',\n", + " 'dataProvider': {'@id': 'http://dp.la/api/contributor/the-miriam-and-ira-d-wallach-division-of-art-prints-and-photographs-picture-collection-the-new-york-public-library',\n", + " 'name': 'The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Picture Collection. The New York Public Library'},\n", + " 'id': '1bb63407b0c8a0b59958cba153269f81',\n", + " 'ingestDate': '2025-03-01T19:25:34.013Z',\n", + " 'ingestType': 'item',\n", + " 'isShownAt': 'https://digitalcollections.nypl.org/items/8c93ee70-c536-012f-8c06-58d385a7bc34',\n", + " 'object': 'https://images.nypl.org/index.php?t=t&id=823782',\n", + " 'originalRecord': {'stringValue': '{\\n \"id\" : 3098486,\\n \"type\" : \"Item\",\\n \"uuid\" : \"8c93ee70-c536-012f-8c06-58d385a7bc34\",\\n \"thumbnail_url\" : \"https://images.nypl.org/index.php?t=t&id=823782\",\\n \"capture_image_ids\" : [ \"823782\" ],\\n \"created\" : \"2012-08-10 12:29:58 -0400\",\\n \"solr_doc_hash\" : {\\n \"uuid\" : \"8c93ee70-c536-012f-8c06-58d385a7bc34\",\\n \"firstInSequence\" : \"8104b2d0-c536-012f-78ba-58d385a7bc34\",\\n \"immediateParent_s\" : [ \"8098af60-c536-012f-84b8-58d385a7bc34\" ],\\n \"isPartOfSequence\" : true,\\n \"orderInSequence\" : 33,\\n \"parentUUID\" : [ \"8098af60-c536-012f-84b8-58d385a7bc34\", \"79d4a650-c52e-012f-67ad-58d385a7bc34\" ],\\n \"parentUUIDSort_s\" : [ \"8098af60-c536-012f-84b8-58d385a7bc34_169\" ],\\n \"totalInSequence\" : 33,\\n \"numSubCollections_s\" : [ \"0\" ],\\n \"numItems_s\" : [ \"1\" ],\\n \"itemsCount\" : 1,\\n \"relatedInfo_title_s\" : [ \"Animals -- Weasel\", \"Wallach Division Picture Collection\" ],\\n \"relatedInfo_title_uuid_s\" : [ \"8098af60-c536-012f-84b8-58d385a7bc34\", \"79d4a650-c52e-012f-67ad-58d385a7bc34\" ],\\n \"rootCollectionUUID_s\" : [ \"79d4a650-c52e-012f-67ad-58d385a7bc34\" ],\\n \"rootCollectionUUID_string\" : \"79d4a650-c52e-012f-67ad-58d385a7bc34\",\\n \"rootCollection_rootCollectionUUID_s\" : [ \"Wallach Division Picture Collection||79d4a650-c52e-012f-67ad-58d385a7bc34\" ],\\n \"rootCollection_s\" : [ \"Wallach Division Picture Collection\" ],\\n \"rootCollectionTitle_string\" : \"Wallach Division Picture Collection\",\\n \"title_uuid_s\" : [ \"Animals -- Weasel||8098af60-c536-012f-84b8-58d385a7bc34\", \"Wallach Division Picture Collection||79d4a650-c52e-012f-67ad-58d385a7bc34\" ],\\n \"sortString\" : \"0000000001|0000000169|0000000033\",\\n \"sortString_sort\" : \"0000000001|0000000169|0000000033\",\\n \"dateIndexed_s\" : [ \"2025-01-21T14:42:47.650Z\" ],\\n \"type_s\" : \"http://uri.nypl.org/vocabulary/repository_terms#Item\",\\n \"rights_st\" : \"\\\\n\\\\n \\\\n Right of Publicity Issues Present\\\\n \\\\n \\\\n Can be displayed on NYPL premises\\\\n \\\\n \\\\n Can be used on NYPL website\\\\n \\\\n \\\\n Can be used inside free NYPL exhibition catalogs and in free NYPL brochures\\\\n \\\\n Over 30,000 images arranged alphabetically by subject. Most of these images were clipped from publications. The image details vary from one image to another. Some may contain a published date but no original source information, so the place of publication cannot be determined. Regarding copyright, if the publication source is listed and is American and the publication date is before 1923, or if published abroad and at least 140 years from the date of creation, then the use is unrestricted for images that do not contain people. Otherwise, there can be no commercial uses of these images. For images containing people there are additional privacy/publicity considerations. To avoid possible rights of publicity claims, it is NYPL\\'s policy that, in the case of photos for which we don\\'t have releases from the people in the photos, such as these images, NYPL should not use the images commercially (e.g., in merchandise or on sites like Flickr) until the earlier of the following two dates: (i) 50 years after the death of the person in the photo or (ii) 120 years after the date the photo was taken (if the person in the photo is a child), or 100 years after the date the photo was taken (if the person in the photo is an adult). If the photo contains a child and an adult, and you aren\\'t sure that they have both been dead for at least 50 years, then please apply the more restrictive rule (i.e., only use the photo if it was created at least 120 years ago.)\\\\n \\\\n \\\\n The copyright and related rights status of this item has been reviewed by The New York Public Library, but we were unable to make a conclusive determination as to the copyright status of the item. You are free to use this Item in any way that is permitted by the copyright and related rights legislation that applies to your use.\\\\n http://rightsstatements.org/vocab/UND/1.0/\\\\n \\\\n\\\\n\",\\n \"mods_st\" : \"\\\\n\\\\n \\\\n Weasels, Putorius ermineus\\\\n \\\\n still image\\\\n Prints\\\\n 482\\\\n b17234234\\\\n 33333159403506\\\\n \\\\n nn\\\\n The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Picture Collection\\\\n PC ANI-Wea\\\\n Wallach Division: Picture Collection\\\\n MMPC\\\\n \\\\n \\\\n 1 print : col. ; 28 x 35 cm. (11 x 13 3/4 in.)\\\\n \\\\n Printed on image: \\\\\"Teeth of weasel ; Foot of weasel.\\\\\" Printed on border: \\\\\"Entered according to act of Congress in the year 1878 by L. Prang & Co. in the office of the Librarian of Congress at Washington.\\\\\" \\\\\"Summer dress (stoat) ; Winter dress (ermine.)\\\\\" \\\\\"Order. Carnivora ; Family. Weasel -- Family (Mustelidae.)\\\\\" \\\\\"Size -- body 9 to 11 inches long. Tail 5 to 7 inches.\\\\\" Foxing on image.\\\\n \\\\n 1878\\\\n \\\\n \\\\n Skulls\\\\n \\\\n \\\\n Weasels\\\\n \\\\n \\\\n Weasels -- Anatomy\\\\n \\\\n \\\\n Floral design\\\\n Italy\\\\n 15th century\\\\n \\\\n 8c93ee70-c536-012f-8c06-58d385a7bc34\\\\n \\\\n \\\\n Animals -- Weasel\\\\n \\\\n 8098af60-c536-012f-84b8-58d385a7bc34\\\\n b17234234\\\\n \\\\n \\\\n Wallach Division Picture Collection\\\\n \\\\n 79d4a650-c52e-012f-67ad-58d385a7bc34\\\\n 482\\\\n \\\\n \\\\n\\\\n\",\\n \"mainTitle\" : [ \"Weasels, Putorius ermineus\" ],\\n \"mainTitle_htxt\" : [ \"Weasels, Putorius ermineus\" ],\\n \"mainTitle_s\" : [ \"Weasels, Putorius ermineus\" ],\\n \"mainTitle_st\" : \"Weasels, Putorius ermineus\",\\n \"mainTitle_lit_idx\" : \"Weasels, Putorius ermineus\",\\n \"mainTitle_sort\" : \"Weasels, Putorius ermineus\",\\n \"mainTitle_ns\" : \"Weasels, Putorius ermineus\",\\n \"title_mtxt\" : [ \"Weasels, Putorius ermineus\", \"Animals -- Weasel\", \"Wallach Division Picture Collection\" ],\\n \"title_lit_idx\" : [ \"Weasels, Putorius ermineus\", \"Animals -- Weasel\", \"Wallach Division Picture Collection\" ],\\n \"title_sort\" : [ \"Weasels, Putorius ermineus\", \"Animals -- Weasel\", \"Wallach Division Picture Collection\" ],\\n \"title_mtxt_s\" : [ \"Weasels, Putorius ermineus\", \"Animals -- Weasel\", \"Wallach Division Picture Collection\" ],\\n \"note_mtxt\" : [ \"Printed on image: \\\\\"Teeth of weasel ; Foot of weasel.\\\\\" Printed on border: \\\\\"Entered according to act of Congress in the year 1878 by L. Prang & Co. in the office of the Librarian of Congress at Washington.\\\\\" \\\\\"Summer dress (stoat) ; Winter dress (ermine.)\\\\\" \\\\\"Order. Carnivora ; Family. Weasel -- Family (Mustelidae.)\\\\\" \\\\\"Size -- body 9 to 11 inches long. Tail 5 to 7 inches.\\\\\" Foxing on image.\" ],\\n \"note_mtxt_s\" : [ \"Printed on image: \\\\\"Teeth of weasel ; Foot of weasel.\\\\\" Printed on border: \\\\\"Entered according to act of Congress in the year 1878 by L. Prang & Co. in the office of the Librarian of Congress at Washington.\\\\\" \\\\\"Summer dress (stoat) ; Winter dress (ermine.)\\\\\" \\\\\"Order. Carnivora ; Family. Weasel -- Family (Mustelidae.)\\\\\" \\\\\"Size -- body 9 to 11 inches long. Tail 5 to 7 inches.\\\\\" Foxing on image.\" ],\\n \"typeOfResource_mtxt\" : [ \"still image\" ],\\n \"typeOfResource_mtxt_s\" : [ \"still image\" ],\\n \"genre_mtxt\" : [ \"Prints\" ],\\n \"genre_mtxt_s\" : [ \"Prints\" ],\\n \"shelfLocator_mtxt\" : [ \"PC ANI-Wea\" ],\\n \"shelfLocator_mtxt_s\" : [ \"PC ANI-Wea\" ],\\n \"identifier_local_hades_collection\" : [ \"482\" ],\\n \"identifier_idx_local_hades_collection\" : [ \"482\" ],\\n \"identifier_local_bnumber\" : [ \"b17234234\" ],\\n \"identifier_local_bnumber_string\" : \"b17234234\",\\n \"identifier_idx_local_bnumber\" : [ \"b17234234\" ],\\n \"identifier_local_barcode\" : [ \"33333159403506\" ],\\n \"identifier_local_barcode_string\" : \"33333159403506\",\\n \"identifier_idx_local_barcode\" : [ \"33333159403506\" ],\\n \"identifier_uuid\" : [ \"8c93ee70-c536-012f-8c06-58d385a7bc34\" ],\\n \"identifier_uuid_string\" : \"8c93ee70-c536-012f-8c06-58d385a7bc34\",\\n \"identifier_idx_uuid\" : [ \"8c93ee70-c536-012f-8c06-58d385a7bc34\" ],\\n \"topic_mtxt\" : [ \"Skulls\", \"Weasels\", \"Weasels -- Anatomy\", \"Floral design\" ],\\n \"topic_lit_idx\" : [ \"Skulls\", \"Weasels\", \"Weasels -- Anatomy\", \"Floral design\" ],\\n \"topic_mtxt_s\" : [ \"Skulls\", \"Weasels\", \"Weasels -- Anatomy\", \"Floral design\" ],\\n \"geographic_mtxt\" : [ \"Italy\" ],\\n \"geographic_mtxt_s\" : [ \"Italy\" ],\\n \"temporal_mtxt\" : [ \"15th century\" ],\\n \"temporal_mtxt_s\" : [ \"15th century\" ],\\n \"extent_mtxt\" : [ \"1 print : col. ; 28 x 35 cm. (11 x 13 3/4 in.)\" ],\\n \"extent_mtxt_s\" : [ \"1 print : col. ; 28 x 35 cm. (11 x 13 3/4 in.)\" ],\\n \"dateissued_mtxt\" : [ \"1878\" ],\\n \"dateissued_mtxt_s\" : [ \"1878\" ],\\n \"keyDate_st\" : \"1878\",\\n \"yearBegin_dt\" : \"1878-01-01T00:00:00Z\",\\n \"repositoryName_mtxt_s\" : [ \"The New York Public Library\" ],\\n \"repositoryName_mtxt\" : [ \"The New York Public Library\" ],\\n \"divisionFullname_mtxt_s\" : [ \"The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Picture Collection\" ],\\n \"divisionFullname_mtxt\" : [ \"The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Picture Collection\" ],\\n \"divisionShortname_mtxt_s\" : [ \"Wallach Division: Picture Collection\" ],\\n \"divisionShortname_mtxt\" : [ \"Wallach Division: Picture Collection\" ],\\n \"physicalLocation_mtxt_s\" : [ \"The New York Public Library\", \"The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Picture Collection\", \"PC ANI-Wea\", \"Wallach Division: Picture Collection\" ],\\n \"physicalLocation_mtxt\" : [ \"The New York Public Library\", \"The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Picture Collection\", \"PC ANI-Wea\", \"Wallach Division: Picture Collection\" ],\\n \"deriv_s\" : [ \"w\", \"r\", \"t\", \"b\", \"f\" ],\\n \"rightsNotes_rtxt\" : [ \"Over 30,000 images arranged alphabetically by subject. Most of these images were clipped from publications. The image details vary from one image to another. Some may contain a published date but no original source information, so the place of publication cannot be determined. Regarding copyright, if the publication source is listed and is American and the publication date is before 1923, or if published abroad and at least 140 years from the date of creation, then the use is unrestricted for images that do not contain people. Otherwise, there can be no commercial uses of these images. For images containing people there are additional privacy/publicity considerations. To avoid possible rights of publicity claims, it is NYPL\\'s policy that, in the case of photos for which we don\\'t have releases from the people in the photos, such as these images, NYPL should not use the images commercially (e.g., in merchandise or on sites like Flickr) until the earlier of the following two dates: (i) 50 years after the death of the person in the photo or (ii) 120 years after the date the photo was taken (if the person in the photo is a child), or 100 years after the date the photo was taken (if the person in the photo is an adult). If the photo contains a child and an adult, and you aren\\'t sure that they have both been dead for at least 50 years, then please apply the more restrictive rule (i.e., only use the photo if it was created at least 120 years ago.)\" ],\\n \"rightsNotes_rtxt_s\" : [ \"Over 30,000 images arranged alphabetically by subject. Most of these images were clipped from publications. The image details vary from one image to another. Some may contain a published date but no original source information, so the place of publication cannot be determined. Regarding copyright, if the publication source is listed and is American and the publication date is before 1923, or if published abroad and at least 140 years from the date of creation, then the use is unrestricted for images that do not contain people. Otherwise, there can be no commercial uses of these images. For images containing people there are additional privacy/publicity considerations. To avoid possible rights of publicity claims, it is NYPL\\'s policy that, in the case of photos for which we don\\'t have releases from the people in the photos, such as these images, NYPL should not use the images commercially (e.g., in merchandise or on sites like Flickr) until the earlier of the following two dates: (i) 50 years after the death of the person in the photo or (ii) 120 years after the date the photo was taken (if the person in the photo is a child), or 100 years after the date the photo was taken (if the person in the photo is an adult). If the photo contains a child and an adult, and you aren\\'t sure that they have both been dead for at least 50 years, then please apply the more restrictive rule (i.e., only use the photo if it was created at least 120 years ago.)\" ],\\n \"use_rtxt\" : [ \"Right of Publicity Issues Present\", \"Can be displayed on NYPL premises\", \"Can be used on NYPL website\", \"Can be used inside free NYPL exhibition catalogs and in free NYPL brochures\" ],\\n \"use_rtxt_s\" : [ \"Right of Publicity Issues Present\", \"Can be displayed on NYPL premises\", \"Can be used on NYPL website\", \"Can be used inside free NYPL exhibition catalogs and in free NYPL brochures\" ],\\n \"useStatementText_rtxt\" : [ \"The copyright and related rights status of this item has been reviewed by The New York Public Library, but we were unable to make a conclusive determination as to the copyright status of the item. You are free to use this Item in any way that is permitted by the copyright and related rights legislation that applies to your use.\" ],\\n \"useStatementText_rtxt_s\" : [ \"The copyright and related rights status of this item has been reviewed by The New York Public Library, but we were unable to make a conclusive determination as to the copyright status of the item. You are free to use this Item in any way that is permitted by the copyright and related rights legislation that applies to your use.\" ],\\n \"useStatementURI_rtxt\" : [ \"http://rightsstatements.org/vocab/UND/1.0/\" ],\\n \"useStatementURI_rtxt_s\" : [ \"http://rightsstatements.org/vocab/UND/1.0/\" ],\\n \"firstIndexed_s\" : [ \"2011-10-06T20:31:50.000+00:00\" ],\\n \"firstIndexed_dt\" : \"2011-10-06T20:31:50Z\",\\n \"dateIndexed_dt\" : \"2025-01-21T14:42:47Z\",\\n \"containsMultipleCaptures\" : false,\\n \"containsAVMaterial\" : false,\\n \"containsOnSiteMaterial\" : false,\\n \"imageID\" : \"823782\",\\n \"imageID_string\" : \"823782\",\\n \"_version_\" : 1821869945240158208\\n },\\n \"desc_xml\" : \"<\"\\n}'},\n", + " 'provider': {'@id': 'http://dp.la/api/contributor/nypl',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q219555'],\n", + " 'name': 'The New York Public Library'},\n", + " 'rights': 'http://rightsstatements.org/vocab/UND/1.0/',\n", + " 'rightsCategory': 'Unspecified Rights Status',\n", + " 'sourceResource': {'@id': 'http://dp.la/api/items/1bb63407b0c8a0b59958cba153269f81#SourceResource',\n", + " 'collection': [{'title': 'Wallach Division Picture Collection'}],\n", + " 'date': [{'begin': '1878', 'displayDate': '1878', 'end': '1878'}],\n", + " 'description': ['Printed on image: \"Teeth of weasel ; Foot of weasel.\" Printed on border: \"Entered according to act of Congress in the year 1878 by L. Prang & Co. in the office of the Librarian of Congress at Washington.\" \"Summer dress (stoat) ; Winter dress (ermine.)\" \"Order. Carnivora ; Family. Weasel -- Family (Mustelidae.)\" \"Size -- body 9 to 11 inches long. Tail 5 to 7 inches.\" Foxing on image.'],\n", + " 'extent': ['1 print : col. ; 28 x 35 cm. (11 x 13 3/4 in.)'],\n", + " 'format': ['Prints'],\n", + " 'publisher': [],\n", + " 'rights': ['The copyright and related rights status of this item has been reviewed by The New York Public Library, but we were unable to make a conclusive determination as to the copyright status of the item. You are free to use this Item in any way that is permitted by the copyright and related rights legislation that applies to your use.'],\n", + " 'spatial': [{'name': 'Italy'}],\n", + " 'subject': [{'name': 'Skulls'},\n", + " {'name': 'Weasels'},\n", + " {'name': 'Weasels -- Anatomy'},\n", + " {'name': 'Floral design'},\n", + " {'exactMatch': ['https://id.loc.gov/authorities/names/n79021783'],\n", + " 'name': 'Italy'},\n", + " {'exactMatch': ['https://id.loc.gov/authorities/subjects/sh2002012469'],\n", + " 'name': '15th century'}],\n", + " 'temporal': [{'displayDate': '15th century'}],\n", + " 'title': ['Weasels, Putorius ermineus'],\n", + " 'type': ['image']}},\n", + " {'@context': 'http://dp.la/api/items/context',\n", + " '@id': 'http://dp.la/api/items/12d3038a5f995cb6d3e184f1ec5affb3',\n", + " '@type': 'ore:Aggregation',\n", + " 'aggregatedCHO': '#sourceResource',\n", + " 'dataProvider': {'@id': 'http://dp.la/api/contributor/nmnh---anthropology-dept',\n", + " 'name': 'NMNH - Anthropology Dept'},\n", + " 'id': '12d3038a5f995cb6d3e184f1ec5affb3',\n", + " 'ingestDate': '2024-08-27T01:01:09.595Z',\n", + " 'ingestType': 'item',\n", + " 'isShownAt': 'http://collections.si.edu/search/results.htm?q=record_ID=nmnhanthropology_8378817&repo=DPLA',\n", + " 'mediaMaster': ['https://ids.si.edu/ids/deliveryService/id/ark:/65665/m32137da1de14d4415a68e2cf732c6c923/90',\n", + " 'https://ids.si.edu/ids/deliveryService/id/ark:/65665/m337a202bb097246c7840dedeacf3ce3c4/90',\n", + " 'https://ids.si.edu/ids/deliveryService/id/ark:/65665/m35f52b0f4be7946fe930bd4fce7677d05/90',\n", + " 'https://ids.si.edu/ids/deliveryService/id/ark:/65665/m39f55b614d93b4de5af801741334d7ac0/90',\n", + " 'https://ids.si.edu/ids/deliveryService/id/ark:/65665/m3ca292d6442154a32970af82a1a2d603f/90',\n", + " 'https://ids.si.edu/ids/deliveryService/id/ark:/65665/m3649fabb2c4014327ad0855bef3d8a5b5/90',\n", + " 'https://ids.si.edu/ids/deliveryService/id/ark:/65665/m395419844904c4b15bd44f44b1b914b93/90'],\n", + " 'object': 'https://ids.si.edu/ids/deliveryService/id/ark:/65665/m32137da1de14d4415a68e2cf732c6c923/90',\n", + " 'originalRecord': {'stringValue': '\\n \\n 1870s\\n \\n North America\\n United States\\n Rocky Mountains\\n \\n Headdresses\\n Sioux (Oceti Sakowin) (?)\\n Lewis & Clark Expedition\\n Thomas Nuttall\\n Lewis And Clark Expedition\\n Anthropology\\n Ethnology\\n Rocky Mountains\\n United States\\n North America\\n Images\\n \\n \\n nmnhanthropology_8378817\\n \\n \\n \\n Not determined\\n \\n https://ids.si.edu/ids/deliveryService/id/ark:/65665/m32137da1de14d4415a68e2cf732c6c923\\n\\n \\n \\n Not determined\\n \\n https://ids.si.edu/ids/deliveryService/id/ark:/65665/m337a202bb097246c7840dedeacf3ce3c4\\n\\n \\n \\n Not determined\\n \\n https://ids.si.edu/ids/deliveryService/id/ark:/65665/m35f52b0f4be7946fe930bd4fce7677d05\\n\\n \\n \\n Not determined\\n \\n https://ids.si.edu/ids/deliveryService/id/ark:/65665/m39f55b614d93b4de5af801741334d7ac0\\n\\n \\n \\n Not determined\\n \\n https://ids.si.edu/ids/deliveryService/id/ark:/65665/m3ca292d6442154a32970af82a1a2d603f\\n\\n \\n \\n Not determined\\n \\n https://ids.si.edu/ids/deliveryService/id/ark:/65665/m3649fabb2c4014327ad0855bef3d8a5b5\\n\\n \\n \\n Not determined\\n \\n https://ids.si.edu/ids/deliveryService/id/ark:/65665/m395419844904c4b15bd44f44b1b914b93\\n\\n \\n http://n2t.net/ark:/65665/3be8ed56e-87ff-498d-8b4c-75f637d590c9\\n NMNHANTHRO\\n ORNAMENT OF WEASELS SKINS\\n \\n https://collections.si.edu/search/detail/edanmdm:nmnhanthropology_8378817\\n \\n Ornament Of Weasels\\' Skins.\\n \\n CC0\\n \\n NMNH - Anthropology Dept.\\n \\n \\n 1877\\n Anthropology\\n 005818\\n E27050-0\\n \\n This artifact has two old tags attached to it. One very small tag says: "From Lewis + Clarke\\'s Exp. Presented by Thos. Nuttall to S.S. Haldeman." The other tag is an old USNM tag which says on side 1 of tag: "27050 Head ornament of weasel skins from Lewis and Clark Expedition. From Thos. Nuttall to Prof. S.S. Haldeman." On side 2 it says: "Rocky Mts." Thomas Nuttall, who gave the artifact to the donor, was a contemporary of Lewis and Clark and thus could possibly have acquired this artifact from them. Nuttall (1786-1859) was a botanist and ornithologist who made a number of collecting expeditions himself. He went up the Missouri River from St. Louis in 1811, and in 1834 went from St. Louis to the Columbia River. - F. Pickering 7-18-2007\\n \\n 5 Jun 2018\\n 1\\n Sioux (Oceti Sakowin) (?)\\n Lewis & Clark Expedition\\n Thomas Nuttall\\n Lewis And Clark Expedition\\n Ethnology\\n Rocky Mountains, United States, North America\\n NMNH - Anthropology Dept.\\n Headdress\\n \\n'},\n", + " 'provider': {'@id': 'http://dp.la/api/contributor/smithsonian',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q131626'],\n", + " 'name': 'Smithsonian Institution'},\n", + " 'rightsCategory': 'Unspecified Rights Status',\n", + " 'sourceResource': {'@id': 'http://dp.la/api/items/12d3038a5f995cb6d3e184f1ec5affb3#SourceResource',\n", + " 'collection': [{'title': 'Anthropology'}],\n", + " 'creator': ['Lewis & Clark Expedition',\n", + " 'Thomas Nuttall',\n", + " 'Lewis And Clark Expedition'],\n", + " 'date': [{'begin': '1877', 'displayDate': '1877', 'end': '1877'}],\n", + " 'description': ['This artifact has two old tags attached to it. One very small tag says: \"From Lewis + Clarke\\'s Exp. Presented by Thos. Nuttall to S.S. Haldeman.\" The other tag is an old USNM tag which says on side 1 of tag: \"27050 Head ornament of weasel skins from Lewis and Clark Expedition. From Thos. Nuttall to Prof. S.S. Haldeman.\" On side 2 it says: \"Rocky Mts.\" Thomas Nuttall, who gave the artifact to the donor, was a contemporary of Lewis and Clark and thus could possibly have acquired this artifact from them. Nuttall (1786-1859) was a botanist and ornithologist who made a number of collecting expeditions himself. He went up the Missouri River from St. Louis in 1811, and in 1834 went from St. Louis to the Columbia River. - F. Pickering 7-18-2007',\n", + " '5 Jun 2018',\n", + " '1'],\n", + " 'identifier': ['005818'],\n", + " 'spatial': [{'country': 'United States', 'county': 'Rocky Mountains'}],\n", + " 'subject': [{'name': 'Anthropology'},\n", + " {'name': 'Ethnology'},\n", + " {'name': 'Lewis & Clark Expedition'},\n", + " {'name': 'Thomas Nuttall'},\n", + " {'name': 'Lewis And Clark Expedition'},\n", + " {'name': 'Sioux (Oceti Sakowin)(?)'}],\n", + " 'temporal': [{'displayDate': '1877'}],\n", + " 'title': [\"Ornament Of Weasels' Skins.\"]}},\n", + " {'@context': 'http://dp.la/api/items/context',\n", + " '@id': 'http://dp.la/api/items/cab089f6d5101d326d8d7748d9eb9899',\n", + " '@type': 'ore:Aggregation',\n", + " 'aggregatedCHO': '#sourceResource',\n", + " 'dataProvider': {'@id': 'http://dp.la/api/contributor/state-library-of-pennsylvania',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q7603405'],\n", + " 'name': 'State Library of Pennsylvania'},\n", + " 'id': 'cab089f6d5101d326d8d7748d9eb9899',\n", + " 'ingestDate': '2025-01-29T18:00:57.660Z',\n", + " 'ingestType': 'item',\n", + " 'isShownAt': 'https://archive.org/details/weaselsbychuckfe00ferg',\n", + " 'object': 'https://archive.org/services/img/weaselsbychuckfe00ferg',\n", + " 'originalRecord': {'stringValue': '\\n
\\n oai:funnel_cake:padig:SLPA-weaselsbychuckfe00ferg\\n 2024-08-12T19:42:35Z\\n Set:dpla_test\\n
\\n \\n \\n padig:SLPA-weaselsbychuckfe00ferg\\n \\n https://archive.org/details/weaselsbychuckfe00ferg\\n \\n Weasels / by Chuck Fergus\\n Fergus, Charles.\\n Weasels\\n \\n Bureau of Information and Education, Pennsylvania Game Commission\\n \\n \\n https://archive.org/services/img/weaselsbychuckfe00ferg\\n \\n English\\n \\n Digital images copyright State Library of Pennsylvania. All rights reserved. May be used for educational purposes as long as a credit statement is included. For all other uses, contact the State Library of Pennsylvania, Digital Rights Office, 333 Market Street, Harrisburg, PA 17126-1745. Phone: (717) 783-5969\\n \\n State Library of Pennsylvania\\n State Library of Pennsylvania Collections\\n PA Digital\\n\\n \\n
\\n'},\n", + " 'provider': {'@id': 'http://dp.la/api/contributor/pa',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q83878501'],\n", + " 'name': 'PA Digital'},\n", + " 'rightsCategory': 'Unspecified Rights Status',\n", + " 'sourceResource': {'@id': 'http://dp.la/api/items/cab089f6d5101d326d8d7748d9eb9899#SourceResource',\n", + " 'collection': [{'title': 'State Library of Pennsylvania Collections'}],\n", + " 'creator': ['Fergus, Charles'],\n", + " 'identifier': ['padig:SLPA-weaselsbychuckfe00ferg'],\n", + " 'language': [{'iso639_3': 'English', 'name': 'English'}],\n", + " 'publisher': ['Bureau of Information and Education, Pennsylvania Game Commission'],\n", + " 'rights': ['Digital images copyright State Library of Pennsylvania. All rights reserved. May be used for educational purposes as long as a credit statement is included. For all other uses, contact the State Library of Pennsylvania, Digital Rights Office, 333 Market Street, Harrisburg, PA 17126-1745. Phone: (717) 783-5969'],\n", + " 'subject': [{'name': 'Weasels'}],\n", + " 'title': ['Weasels / by Chuck Fergus']}},\n", + " {'@context': 'http://dp.la/api/items/context',\n", + " '@id': 'http://dp.la/api/items/6198ae362ae6638694abcbcccbea3256',\n", + " '@type': 'ore:Aggregation',\n", + " 'aggregatedCHO': '#sourceResource',\n", + " 'dataProvider': {'@id': 'http://dp.la/api/contributor/denver-public-library',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q5259775'],\n", + " 'name': 'Denver Public Library'},\n", + " 'id': '6198ae362ae6638694abcbcccbea3256',\n", + " 'ingestDate': '2025-01-29T20:03:33.435Z',\n", + " 'ingestType': 'item',\n", + " 'isShownAt': 'https://digital.denverlibrary.org/nodes/view/132960',\n", + " 'object': 'https://digital.denverlibrary.org/assets/nodeimg/132960',\n", + " 'originalRecord': {'stringValue': '\\n
\\n \\n oai:YOUR_OAI_PREFIX:DPL:oai:digital.denverlibrary.org:132960\\n \\n 2025-01-28T01:28:08Z\\n
\\n \\n \\n Denver Public Library\\n \\n \\n https://digital.denverlibrary.org/nodes/view/132960\\n \\n \\n \\n http://rightsstatements.org/vocab/CNE/1.0/\\n \\n \\n Weasels at Camp Hale\\n \\n \\n \\n https://digital.denverlibrary.org/assets/nodeimg/132960\\n \\n \\n \\n 1943-1944\\n \\n \\n A line of Weasels towing heavy weapons is stopped on the side of the road at Camp Hale\\n \\n \\n United States. Army. Mountain Division, 10th\\n \\n \\n M29 (Armored military vehicle)\\n \\n \\n Military maneuvers--Cold weather conditions\\n \\n \\n Camp Hale (Colo.)\\n \\n Image\\n \\n Black &amp; white photographs\\n \\n \\n \\n
\\n'},\n", + " 'provider': {'@id': 'http://dp.la/api/contributor/p2p',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q83878503'],\n", + " 'name': 'Plains to Peaks Collective'},\n", + " 'rights': 'http://rightsstatements.org/vocab/CNE/1.0/',\n", + " 'rightsCategory': 'Unspecified Rights Status',\n", + " 'sourceResource': {'@id': 'http://dp.la/api/items/6198ae362ae6638694abcbcccbea3256#SourceResource',\n", + " 'date': [{'begin': '1943', 'displayDate': '1943-1944', 'end': '1944'}],\n", + " 'description': ['A line of Weasels towing heavy weapons is stopped on the side of the road at Camp Hale'],\n", + " 'format': ['Black &', 'White photographs'],\n", + " 'spatial': [{'name': 'Camp Hale (Colo.)'}],\n", + " 'subject': [{'name': 'United States. Army. Mountain Division, 10th'},\n", + " {'name': 'M29 (Armored military vehicle)'},\n", + " {'name': 'Military maneuvers--Cold weather conditions'}],\n", + " 'title': ['Weasels at Camp Hale'],\n", + " 'type': ['image']}},\n", + " {'@context': 'http://dp.la/api/items/context',\n", + " '@id': 'http://dp.la/api/items/86803e5ce80266475170a2f63725ab40',\n", + " '@type': 'ore:Aggregation',\n", + " 'aggregatedCHO': '#sourceResource',\n", + " 'dataProvider': {'@id': 'http://dp.la/api/contributor/state-library-of-oregon',\n", + " 'name': 'State Library of Oregon'},\n", + " 'id': '86803e5ce80266475170a2f63725ab40',\n", + " 'ingestDate': '2025-02-01T01:08:35.424Z',\n", + " 'ingestType': 'item',\n", + " 'isShownAt': 'https://digitalcollections.library.oregon.gov/nodes/view/125773',\n", + " 'object': 'https://digitalcollections.library.oregon.gov/assets/nodeimg/125773',\n", + " 'originalRecord': {'stringValue': '\\n
\\n \\n oai:northwestdigitalheritage.org:slo:oai:digitalcollections.library.oregon.gov:125773\\n \\n 2025-01-29T07:24:36Z\\n
\\n \\n \\n \\n oai:digitalcollections.library.oregon.gov:125773\\n \\n \\n Weasels, skunks, badgers and otters\\n \\n \\n Oregon Department of Fish and Wildlife\\n \\n creator\\n \\n \\n Text\\n \\n Oregon Department of Fish & Wildlife,\\n 2019\\n \\n \\n eng\\n \\n \\n Title from PDF caption (viewed on December 19, 2019). Converted from HTML. Part of the Wildlife viewing series. This archived document is maintained by the State Library of Oregon as part of the Oregon Documents Depository Program. It is for informational purposes and may not be suitable for legal purposes. Mode of access: Internet from the Oregon Government Publications Collection. Text in English.\\n \\n \\n Martens -- Oregon\\n Mustela -- Oregon\\n Skunks -- Oregon\\n Martens -- Oregon -- Identification\\n Mustela -- Oregon -- Identification\\n Skunks -- Oregon -- Identification\\n \\n State Library of Oregon\\n \\n \\n State Publications\\n Fish & Wildlife\\n \\n \\n \\n 1 online resource (10 pages) : color illustrations\\n \\n \\n http://rightsstatements.org/vocab/CNE/1.0/\\n \\n \\n \\n https://digitalcollections.library.oregon.gov/nodes/view/125773\\n \\n \\n \\n \\n https://digitalcollections.library.oregon.gov/assets/nodeimg/125773\\n \\n \\n \\n \\n
\\n'},\n", + " 'provider': {'@id': 'http://dp.la/api/contributor/northwest-digital-heritage',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q112194444'],\n", + " 'name': 'Northwest Digital Heritage'},\n", + " 'rights': 'http://rightsstatements.org/vocab/CNE/1.0/',\n", + " 'rightsCategory': 'Unspecified Rights Status',\n", + " 'sourceResource': {'@id': 'http://dp.la/api/items/86803e5ce80266475170a2f63725ab40#SourceResource',\n", + " 'collection': [{'title': 'State Publications'},\n", + " {'title': 'Fish & Wildlife'}],\n", + " 'creator': ['Oregon Department of Fish and Wildlife'],\n", + " 'date': [{'begin': '2019', 'displayDate': '2019', 'end': '2019'}],\n", + " 'description': ['Title from PDF caption (viewed on December 19, 2019). Converted from HTML. Part of the Wildlife viewing series. This archived document is maintained by the State Library of Oregon as part of the Oregon Documents Depository Program. It is for informational purposes and may not be suitable for legal purposes. Mode of access: Internet from the Oregon Government Publications Collection. Text in English.'],\n", + " 'format': ['1 online resource (10 pages) : color illustrations'],\n", + " 'language': [{'iso639_3': 'English', 'name': 'English'}],\n", + " 'publisher': ['Oregon Department of Fish & Wildlife'],\n", + " 'subject': [{'name': 'Martens -- Oregon'},\n", + " {'name': 'Mustela -- Oregon'},\n", + " {'name': 'Skunks -- Oregon'},\n", + " {'name': 'Martens -- Oregon -- Identification'},\n", + " {'name': 'Mustela -- Oregon -- Identification'},\n", + " {'name': 'Skunks -- Oregon -- Identification'}],\n", + " 'title': ['Weasels, skunks, badgers and otters'],\n", + " 'type': ['text']},\n", + " 'tags': ['nwdh']},\n", + " {'@context': 'http://dp.la/api/items/context',\n", + " '@id': 'http://dp.la/api/items/6f9825de2713c307fcb3c08ca8b836be',\n", + " '@type': 'ore:Aggregation',\n", + " 'aggregatedCHO': '#sourceResource',\n", + " 'dataProvider': {'@id': 'http://dp.la/api/contributor/denver-public-library',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q5259775'],\n", + " 'name': 'Denver Public Library'},\n", + " 'id': '6f9825de2713c307fcb3c08ca8b836be',\n", + " 'ingestDate': '2025-01-29T20:03:33.435Z',\n", + " 'ingestType': 'item',\n", + " 'isShownAt': 'https://digital.denverlibrary.org/nodes/view/132977',\n", + " 'object': 'https://digital.denverlibrary.org/assets/nodeimg/132977',\n", + " 'originalRecord': {'stringValue': '\\n
\\n \\n oai:YOUR_OAI_PREFIX:DPL:oai:digital.denverlibrary.org:132977\\n \\n 2025-01-27T21:51:10Z\\n
\\n \\n \\n Denver Public Library\\n \\n \\n https://digital.denverlibrary.org/nodes/view/132977\\n \\n \\n \\n http://rightsstatements.org/vocab/CNE/1.0/\\n \\n \\n These contraptions are called Weasels\\n \\n \\n \\n https://digital.denverlibrary.org/assets/nodeimg/132977\\n \\n \\n \\n April 1944\\n \\n \\n 10th Mountain Division soldiers stand next to Weasels during training exercises at Camp Hale\\n \\n \\n United States. Army. Mountain Division, 10th\\n \\n \\n Military maneuvers--Cold weather conditions\\n \\n \\n Ski troops\\n \\n \\n Camp Hale (Colo.)\\n \\n Image\\n \\n Black &amp; white photographs\\n \\n \\n Group portraits\\n \\n \\n \\n
\\n'},\n", + " 'provider': {'@id': 'http://dp.la/api/contributor/p2p',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q83878503'],\n", + " 'name': 'Plains to Peaks Collective'},\n", + " 'rights': 'http://rightsstatements.org/vocab/CNE/1.0/',\n", + " 'rightsCategory': 'Unspecified Rights Status',\n", + " 'sourceResource': {'@id': 'http://dp.la/api/items/6f9825de2713c307fcb3c08ca8b836be#SourceResource',\n", + " 'date': [{'displayDate': 'April 1944'}],\n", + " 'description': ['10th Mountain Division soldiers stand next to Weasels during training exercises at Camp Hale'],\n", + " 'format': ['Black &', 'White photographs', 'Group portraits'],\n", + " 'spatial': [{'name': 'Camp Hale (Colo.)'}],\n", + " 'subject': [{'name': 'United States. Army. Mountain Division, 10th'},\n", + " {'name': 'Military maneuvers--Cold weather conditions'},\n", + " {'name': 'Ski troops'}],\n", + " 'title': ['These contraptions are called Weasels'],\n", + " 'type': ['image']}},\n", + " {'@context': 'http://dp.la/api/items/context',\n", + " '@id': 'http://dp.la/api/items/f34ac3717bc9ed064c5826ca8eee1308',\n", + " '@type': 'ore:Aggregation',\n", + " 'aggregatedCHO': '#sourceResource',\n", + " 'dataProvider': {'@id': 'http://dp.la/api/contributor/the-miriam-and-ira-d-wallach-division-of-art-prints-and-photographs-print-collection-the-new-york-public-library',\n", + " 'name': 'The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Print Collection. The New York Public Library'},\n", + " 'id': 'f34ac3717bc9ed064c5826ca8eee1308',\n", + " 'ingestDate': '2025-03-01T19:25:34.013Z',\n", + " 'ingestType': 'item',\n", + " 'isShownAt': 'https://digitalcollections.nypl.org/items/f08a9560-c5d5-012f-847e-58d385a7bc34',\n", + " 'object': 'https://images.nypl.org/index.php?t=t&id=T000053',\n", + " 'originalRecord': {'stringValue': '{\\n \"id\" : 3947191,\\n \"type\" : \"Item\",\\n \"uuid\" : \"f08a9560-c5d5-012f-847e-58d385a7bc34\",\\n \"thumbnail_url\" : \"https://images.nypl.org/index.php?t=t&id=T000053\",\\n \"capture_image_ids\" : [ \"T000053\", \"1270934\", \"1270935\", \"1270936\", \"1270937\", \"1270938\", \"1270939\", \"1270940\", \"1270941\", \"1270942\", \"1270943\", \"1270944\", \"1270945\", \"1270946\" ],\\n \"created\" : \"2012-08-11 07:30:55 -0400\",\\n \"solr_doc_hash\" : {\\n \"uuid\" : \"f08a9560-c5d5-012f-847e-58d385a7bc34\",\\n \"firstInSequence\" : \"ebdf8f80-c5d5-012f-6faf-58d385a7bc34\",\\n \"immediateParent_s\" : [ \"eba863d0-c5d5-012f-75e4-58d385a7bc34\" ],\\n \"isPartOfSequence\" : true,\\n \"orderInSequence\" : 6,\\n \"parentUUID\" : [ \"eba863d0-c5d5-012f-75e4-58d385a7bc34\", \"eb4bfbd0-c5d5-012f-6554-58d385a7bc34\" ],\\n \"parentUUIDSort_s\" : [ \"eba863d0-c5d5-012f-75e4-58d385a7bc34_1\" ],\\n \"totalInSequence\" : 102,\\n \"numSubCollections_s\" : [ \"0\" ],\\n \"numItems_s\" : [ \"1\" ],\\n \"itemsCount\" : 1,\\n \"relatedInfo_title_s\" : [ \"Volume 1\", \"Alexander Anderson scrapbooks\" ],\\n \"relatedInfo_title_uuid_s\" : [ \"eba863d0-c5d5-012f-75e4-58d385a7bc34\", \"eb4bfbd0-c5d5-012f-6554-58d385a7bc34\" ],\\n \"rootCollectionUUID_s\" : [ \"eb4bfbd0-c5d5-012f-6554-58d385a7bc34\" ],\\n \"rootCollectionUUID_string\" : \"eb4bfbd0-c5d5-012f-6554-58d385a7bc34\",\\n \"rootCollection_rootCollectionUUID_s\" : [ \"Alexander Anderson scrapbooks||eb4bfbd0-c5d5-012f-6554-58d385a7bc34\" ],\\n \"rootCollection_s\" : [ \"Alexander Anderson scrapbooks\" ],\\n \"rootCollectionTitle_string\" : \"Alexander Anderson scrapbooks\",\\n \"title_uuid_s\" : [ \"Volume 1||eba863d0-c5d5-012f-75e4-58d385a7bc34\", \"Alexander Anderson scrapbooks||eb4bfbd0-c5d5-012f-6554-58d385a7bc34\" ],\\n \"sortString\" : \"0000000001|0000000001|0000000006\",\\n \"sortString_sort\" : \"0000000001|0000000001|0000000006\",\\n \"dateIndexed_s\" : [ \"2025-01-22T13:30:25.379Z\" ],\\n \"type_s\" : \"http://uri.nypl.org/vocabulary/repository_terms#Item\",\\n \"rights_st\" : \"\\\\n\\\\n \\\\n Can be displayed on NYPL premises\\\\n \\\\n \\\\n Can be used on NYPL website\\\\n \\\\n \\\\n Can be used inside free NYPL exhibition catalogs and in free NYPL brochures\\\\n \\\\n \\\\n Can be used in advertising for NYPL exhibitions, on catalog covers, in press kits, or fundraising activities\\\\n \\\\n \\\\n Can be sold through 3rd party print partner (e.g., New York Times)\\\\n \\\\n \\\\n Can be licensed to 3rd party websites\\\\n \\\\n \\\\n Can be used in products created by NYPL for commercial gain (e.g., Library Shop, CDs, DVDs, etc.)\\\\n \\\\n The collection consists of hundreds of wood engravings by the major illustrator and wood engraver Alexander Anderson that are pasted into a set of 12 albums. As the prints are proofs and represent a virtual complete catalog of the artist\\'s work, it is assumed they came directly from Anderson\\'s descendants to the Library, where they were re-bound in 1954. \\\\n \\\\nAlexander Anderson (1775-1870) was a New York physician active during the city\\'s Yellow Fever epidemics. He developed the technique of wood engraving in the United States soon after Thomas Bewick (1753-1828) invented the technique in England. During a career spanning seventy years, he produced a large number of illustrations for books, periodicals, newspapers, and other commercial ephemera, after both his own designs and those of other artists\\\\n \\\\n PPD100\\\\n The New York Public Library believes that this item is in the public domain under the laws of the United States, but did not make a determination as to its copyright status under the copyright laws of other countries. This item may not be in the public domain under the laws of other countries. Though not required, if you want to credit us as the source, please use the following statement, \\\\\"From The New York Public Library,\\\\\" and provide a link back to the item on our Digital Collections site. Doing so helps us track how our collection is used and helps justify freely releasing even more content in the future.\\\\n http://rightsstatements.org/vocab/NoC-US/1.0/\\\\n \\\\n\\\\n\",\\n \"mods_st\" : \"\\\\n\\\\n \\\\n Armadillos, beavers, porcupines, and weasels.\\\\n \\\\n \\\\n Anderson, Alexander (1775-1870)\\\\n \\\\n egr\\\\n Engraver\\\\n \\\\n \\\\n still image\\\\n Prints\\\\n Illustrations\\\\n \\\\n 1794\\\\n 1870\\\\n \\\\n \\\\n
Wood engravings
\\\\n
\\\\n 221\\\\n 347480\\\\n \\\\n nn\\\\n The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Print Collection\\\\n MEYI (Anderson, Scrap Book)\\\\n Wallach Division: Print Collection\\\\n PRN\\\\n \\\\n \\\\n The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Print Collection\\\\n Wallach Division: Print Collection\\\\n PRN\\\\n \\\\n f08a9560-c5d5-012f-847e-58d385a7bc34\\\\n \\\\n \\\\n Volume 1\\\\n \\\\n eba863d0-c5d5-012f-75e4-58d385a7bc34\\\\n 353825\\\\n \\\\n \\\\n Alexander Anderson scrapbooks\\\\n \\\\n eb4bfbd0-c5d5-012f-6554-58d385a7bc34\\\\n 105675\\\\n 221\\\\n \\\\n \\\\n
\\\\n\",\\n \"mainTitle\" : [ \"Armadillos, beavers, porcupines, and weasels.\" ],\\n \"mainTitle_htxt\" : [ \"Armadillos, beavers, porcupines, and weasels.\" ],\\n \"mainTitle_s\" : [ \"Armadillos, beavers, porcupines, and weasels.\" ],\\n \"mainTitle_st\" : \"Armadillos, beavers, porcupines, and weasels.\",\\n \"mainTitle_lit_idx\" : \"Armadillos, beavers, porcupines, and weasels.\",\\n \"mainTitle_sort\" : \"Armadillos, beavers, porcupines, and weasels.\",\\n \"mainTitle_ns\" : \"Armadillos, beavers, porcupines, and weasels.\",\\n \"title_mtxt\" : [ \"Armadillos, beavers, porcupines, and weasels.\", \"Volume 1\", \"Alexander Anderson scrapbooks\" ],\\n \"title_lit_idx\" : [ \"Armadillos, beavers, porcupines, and weasels.\", \"Volume 1\", \"Alexander Anderson scrapbooks\" ],\\n \"title_sort\" : [ \"Armadillos, beavers, porcupines, and weasels.\", \"Volume 1\", \"Alexander Anderson scrapbooks\" ],\\n \"title_mtxt_s\" : [ \"Armadillos, beavers, porcupines, and weasels.\", \"Volume 1\", \"Alexander Anderson scrapbooks\" ],\\n \"typeOfResource_mtxt\" : [ \"still image\" ],\\n \"typeOfResource_mtxt_s\" : [ \"still image\" ],\\n \"genre_mtxt\" : [ \"Prints\", \"Illustrations\" ],\\n \"genre_mtxt_s\" : [ \"Prints\", \"Illustrations\" ],\\n \"shelfLocator_mtxt\" : [ \"MEYI (Anderson, Scrap Book)\" ],\\n \"shelfLocator_mtxt_s\" : [ \"MEYI (Anderson, Scrap Book)\" ],\\n \"namePart_mtxt\" : [ \"Anderson, Alexander (1775-1870)\" ],\\n \"namePart_mtxt_s\" : [ \"Anderson, Alexander (1775-1870)\" ],\\n \"roleTermCode_s\" : [ \"egr\" ],\\n \"roleTermText_s\" : [ \"Engraver\" ],\\n \"roleTerm_mtxt\" : [ \"egr\", \"Engraver\" ],\\n \"roleTerm_mtxt_s\" : [ \"egr\", \"Engraver\" ],\\n \"engraver_name_s\" : [ \"Anderson, Alexander (1775-1870)\" ],\\n \"identifier_local_hades_collection\" : [ \"221\" ],\\n \"identifier_idx_local_hades_collection\" : [ \"221\" ],\\n \"identifier_local_hades\" : [ \"347480\" ],\\n \"identifier_idx_local_hades\" : [ \"347480\" ],\\n \"identifier_uuid\" : [ \"f08a9560-c5d5-012f-847e-58d385a7bc34\" ],\\n \"identifier_uuid_string\" : \"f08a9560-c5d5-012f-847e-58d385a7bc34\",\\n \"identifier_idx_uuid\" : [ \"f08a9560-c5d5-012f-847e-58d385a7bc34\" ],\\n \"form_mtxt\" : [ \"Wood engravings\" ],\\n \"form_mtxt_s\" : [ \"Wood engravings\" ],\\n \"datecreated_mtxt\" : [ \"1794\", \"1870\" ],\\n \"datecreated_mtxt_s\" : [ \"1794\", \"1870\" ],\\n \"keyDate_st\" : \"1794\",\\n \"yearBegin_dt\" : \"1794-01-01T00:00:00Z\",\\n \"yearEnd_dt\" : \"1870-01-01T00:00:00Z\",\\n \"repositoryName_mtxt_s\" : [ \"The New York Public Library\" ],\\n \"repositoryName_mtxt\" : [ \"The New York Public Library\" ],\\n \"divisionFullname_mtxt_s\" : [ \"The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Print Collection\" ],\\n \"divisionFullname_mtxt\" : [ \"The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Print Collection\" ],\\n \"divisionShortname_mtxt_s\" : [ \"Wallach Division: Print Collection\" ],\\n \"divisionShortname_mtxt\" : [ \"Wallach Division: Print Collection\" ],\\n \"physicalLocation_mtxt_s\" : [ \"The New York Public Library\", \"The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Print Collection\", \"MEYI (Anderson, Scrap Book)\", \"Wallach Division: Print Collection\" ],\\n \"physicalLocation_mtxt\" : [ \"The New York Public Library\", \"The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Print Collection\", \"MEYI (Anderson, Scrap Book)\", \"Wallach Division: Print Collection\" ],\\n \"deriv_s\" : [ \"w\", \"r\", \"t\", \"b\", \"f\" ],\\n \"rightsNotes_rtxt\" : [ \"The collection consists of hundreds of wood engravings by the major illustrator and wood engraver Alexander Anderson that are pasted into a set of 12 albums. As the prints are proofs and represent a virtual complete catalog of the artist\\'s work, it is assumed they came directly from Anderson\\'s descendants to the Library, where they were re-bound in 1954. \\\\r\\\\n\\\\r\\\\nAlexander Anderson (1775-1870) was a New York physician active during the city\\'s Yellow Fever epidemics. He developed the technique of wood engraving in the United States soon after Thomas Bewick (1753-1828) invented the technique in England. During a career spanning seventy years, he produced a large number of illustrations for books, periodicals, newspapers, and other commercial ephemera, after both his own designs and those of other artists\" ],\\n \"rightsNotes_rtxt_s\" : [ \"The collection consists of hundreds of wood engravings by the major illustrator and wood engraver Alexander Anderson that are pasted into a set of 12 albums. As the prints are proofs and represent a virtual complete catalog of the artist\\'s work, it is assumed they came directly from Anderson\\'s descendants to the Library, where they were re-bound in 1954. \\\\r\\\\n\\\\r\\\\nAlexander Anderson (1775-1870) was a New York physician active during the city\\'s Yellow Fever epidemics. He developed the technique of wood engraving in the United States soon after Thomas Bewick (1753-1828) invented the technique in England. During a career spanning seventy years, he produced a large number of illustrations for books, periodicals, newspapers, and other commercial ephemera, after both his own designs and those of other artists\" ],\\n \"use_rtxt\" : [ \"Can be displayed on NYPL premises\", \"Can be used on NYPL website\", \"Can be used inside free NYPL exhibition catalogs and in free NYPL brochures\", \"Can be used in advertising for NYPL exhibitions, on catalog covers, in press kits, or fundraising activities\", \"Can be sold through 3rd party print partner (e.g., New York Times)\", \"Can be licensed to 3rd party websites\", \"Can be used in products created by NYPL for commercial gain (e.g., Library Shop, CDs, DVDs, etc.)\", \"PPD100\" ],\\n \"use_rtxt_s\" : [ \"Can be displayed on NYPL premises\", \"Can be used on NYPL website\", \"Can be used inside free NYPL exhibition catalogs and in free NYPL brochures\", \"Can be used in advertising for NYPL exhibitions, on catalog covers, in press kits, or fundraising activities\", \"Can be sold through 3rd party print partner (e.g., New York Times)\", \"Can be licensed to 3rd party websites\", \"Can be used in products created by NYPL for commercial gain (e.g., Library Shop, CDs, DVDs, etc.)\", \"PPD100\" ],\\n \"useStatementText_rtxt\" : [ \"The New York Public Library believes that this item is in the public domain under the laws of the United States, but did not make a determination as to its copyright status under the copyright laws of other countries. This item may not be in the public domain under the laws of other countries. Though not required, if you want to credit us as the source, please use the following statement, \\\\\"From The New York Public Library,\\\\\" and provide a link back to the item on our Digital Collections site. Doing so helps us track how our collection is used and helps justify freely releasing even more content in the future.\" ],\\n \"useStatementText_rtxt_s\" : [ \"The New York Public Library believes that this item is in the public domain under the laws of the United States, but did not make a determination as to its copyright status under the copyright laws of other countries. This item may not be in the public domain under the laws of other countries. Though not required, if you want to credit us as the source, please use the following statement, \\\\\"From The New York Public Library,\\\\\" and provide a link back to the item on our Digital Collections site. Doing so helps us track how our collection is used and helps justify freely releasing even more content in the future.\" ],\\n \"useStatementURI_rtxt\" : [ \"http://rightsstatements.org/vocab/NoC-US/1.0/\" ],\\n \"useStatementURI_rtxt_s\" : [ \"http://rightsstatements.org/vocab/NoC-US/1.0/\" ],\\n \"firstIndexed_s\" : [ \"2011-10-11T08:32:51.000+00:00\" ],\\n \"firstIndexed_dt\" : \"2011-10-11T08:32:51Z\",\\n \"dateIndexed_dt\" : \"2025-01-22T13:30:25Z\",\\n \"containsMultipleCaptures\" : true,\\n \"containsAVMaterial\" : false,\\n \"containsOnSiteMaterial\" : false,\\n \"imageID\" : \"T000053\",\\n \"imageID_string\" : \"T000053\",\\n \"_version_\" : 1821955989496135680\\n },\\n \"desc_xml\" : \"<\"\\n}'},\n", + " 'provider': {'@id': 'http://dp.la/api/contributor/nypl',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q219555'],\n", + " 'name': 'The New York Public Library'},\n", + " 'rights': 'http://rightsstatements.org/vocab/NoC-US/1.0/',\n", + " 'rightsCategory': 'Unlimited Re-Use',\n", + " 'sourceResource': {'@id': 'http://dp.la/api/items/f34ac3717bc9ed064c5826ca8eee1308#SourceResource',\n", + " 'collection': [{'title': 'Alexander Anderson scrapbooks'}],\n", + " 'creator': ['Anderson, Alexander (1775-1870)'],\n", + " 'date': [{'begin': '1794', 'displayDate': '1794', 'end': '1794'}],\n", + " 'format': ['Prints', 'Illustrations'],\n", + " 'publisher': [],\n", + " 'rights': ['The New York Public Library believes that this item is in the public domain under the laws of the United States, but did not make a determination as to its copyright status under the copyright laws of other countries. This item may not be in the public domain under the laws of other countries. Though not required, if you want to credit us as the source, please use the following statement, \"From The New York Public Library,\" and provide a link back to the item on our Digital Collections site. Doing so helps us track how our collection is used and helps justify freely releasing even more content in the future.'],\n", + " 'title': ['Armadillos, beavers, porcupines, and weasels.'],\n", + " 'type': ['image']}},\n", + " {'@context': 'http://dp.la/api/items/context',\n", + " '@id': 'http://dp.la/api/items/436bc24114523be19cbcdabbb5cc1ba0',\n", + " '@type': 'ore:Aggregation',\n", + " 'aggregatedCHO': '#sourceResource',\n", + " 'dataProvider': {'@id': 'http://dp.la/api/contributor/denver-public-library',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q5259775'],\n", + " 'name': 'Denver Public Library'},\n", + " 'id': '436bc24114523be19cbcdabbb5cc1ba0',\n", + " 'ingestDate': '2025-01-29T20:03:33.435Z',\n", + " 'ingestType': 'item',\n", + " 'isShownAt': 'https://digital.denverlibrary.org/nodes/view/1116797',\n", + " 'object': 'https://digital.denverlibrary.org/assets/nodeimg/1116797',\n", + " 'originalRecord': {'stringValue': '\\n
\\n \\n oai:YOUR_OAI_PREFIX:DPL:oai:digital.denverlibrary.org:1116797\\n \\n 2025-01-27T23:44:21Z\\n
\\n \\n \\n Denver Public Library\\n \\n \\n https://digital.denverlibrary.org/nodes/view/1116797\\n \\n \\n \\n http://rightsstatements.org/vocab/CNE/1.0/\\n \\n \\n Richard Fogarty poses beside two "weasels"\\n \\n \\n \\n https://digital.denverlibrary.org/assets/nodeimg/1116797\\n \\n \\n \\n 1943-1944\\n \\n \\n Richard Foggarty of the Tenth Mountain Division poses beside two &quot;weasels&quot;, [a snow vehicle designed by Studebaker] without canvas covers, near the S4 warehouse and 86th Regiment Headquarters at Camp Hale, Colorado. He is wearing a cap, a pullover sweater, khaki pants and boots.\\n \\n \\n Camp Hale (Colo.)\\n \\n \\n Military vehicles--Colorado\\n \\n \\n Photographers\\n \\n \\n Soldiers--Colorado\\n \\n \\n Foggarty, Richard\\n \\n \\n United States. Army. Mountain Division, 10th\\n \\n \\n Camp Hale (Colo.)\\n \\n Image\\n \\n Pollock, John W.\\n \\n creator\\n \\n \\n \\n \\n 10th Mountain Division Resource Center Collection\\n \\n \\n \\n Portrait photographs\\n \\n \\n Slides\\n \\n \\n Color photographs\\n \\n \\n \\n
\\n'},\n", + " 'provider': {'@id': 'http://dp.la/api/contributor/p2p',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q83878503'],\n", + " 'name': 'Plains to Peaks Collective'},\n", + " 'rights': 'http://rightsstatements.org/vocab/CNE/1.0/',\n", + " 'rightsCategory': 'Unspecified Rights Status',\n", + " 'sourceResource': {'@id': 'http://dp.la/api/items/436bc24114523be19cbcdabbb5cc1ba0#SourceResource',\n", + " 'creator': ['Pollock, John W'],\n", + " 'date': [{'begin': '1943', 'displayDate': '1943-1944', 'end': '1944'}],\n", + " 'description': ['Richard Foggarty of the Tenth Mountain Division poses beside two \"weasels\", [a snow vehicle designed by Studebaker] without canvas covers, near the S4 warehouse and 86th Regiment Headquarters at Camp Hale, Colorado. He is wearing a cap, a pullover sweater, khaki pants and boots.'],\n", + " 'format': ['Portrait photographs', 'Slides', 'Color photographs'],\n", + " 'spatial': [{'name': 'Camp Hale (Colo.)'}],\n", + " 'subject': [{'name': 'Camp Hale (Colo.)'},\n", + " {'name': 'Military vehicles--Colorado'},\n", + " {'name': 'Photographers'},\n", + " {'name': 'Soldiers--Colorado'},\n", + " {'name': 'Foggarty, Richard'},\n", + " {'name': 'United States. Army. Mountain Division, 10th'}],\n", + " 'title': ['Richard Fogarty poses beside two \"weasels\"'],\n", + " 'type': ['image']}},\n", + " {'@context': 'http://dp.la/api/items/context',\n", + " '@id': 'http://dp.la/api/items/393af2dfba544397d514d30821660f41',\n", + " '@type': 'ore:Aggregation',\n", + " 'aggregatedCHO': '#sourceResource',\n", + " 'dataProvider': {'@id': 'http://dp.la/api/contributor/the-miriam-and-ira-d-wallach-division-of-art-prints-and-photographs-print-collection-the-new-york-public-library',\n", + " 'name': 'The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Print Collection. The New York Public Library'},\n", + " 'id': '393af2dfba544397d514d30821660f41',\n", + " 'ingestDate': '2025-03-01T19:25:34.013Z',\n", + " 'ingestType': 'item',\n", + " 'isShownAt': 'https://digitalcollections.nypl.org/items/04711bd0-c5d6-012f-f1b4-58d385a7bc34',\n", + " 'object': 'https://images.nypl.org/index.php?t=t&id=T000080',\n", + " 'originalRecord': {'stringValue': '{\\n \"id\" : 3947422,\\n \"type\" : \"Item\",\\n \"uuid\" : \"04711bd0-c5d6-012f-f1b4-58d385a7bc34\",\\n \"thumbnail_url\" : \"https://images.nypl.org/index.php?t=t&id=T000080\",\\n \"capture_image_ids\" : [ \"T000080\", \"1400172\", \"1400173\", \"1400174\", \"1400175\", \"1400176\", \"1400177\", \"1400178\", \"1400179\", \"1400180\", \"1400181\", \"1400182\", \"1400183\", \"1400184\", \"1400185\" ],\\n \"created\" : \"2012-08-11 07:31:29 -0400\",\\n \"solr_doc_hash\" : {\\n \"uuid\" : \"04711bd0-c5d6-012f-f1b4-58d385a7bc34\",\\n \"firstInSequence\" : \"ebdf8f80-c5d5-012f-6faf-58d385a7bc34\",\\n \"immediateParent_s\" : [ \"eba863d0-c5d5-012f-75e4-58d385a7bc34\" ],\\n \"isPartOfSequence\" : true,\\n \"orderInSequence\" : 33,\\n \"parentUUID\" : [ \"eba863d0-c5d5-012f-75e4-58d385a7bc34\", \"eb4bfbd0-c5d5-012f-6554-58d385a7bc34\" ],\\n \"parentUUIDSort_s\" : [ \"eba863d0-c5d5-012f-75e4-58d385a7bc34_1\" ],\\n \"totalInSequence\" : 102,\\n \"numSubCollections_s\" : [ \"0\" ],\\n \"numItems_s\" : [ \"1\" ],\\n \"itemsCount\" : 1,\\n \"relatedInfo_title_s\" : [ \"Volume 1\", \"Alexander Anderson scrapbooks\" ],\\n \"relatedInfo_title_uuid_s\" : [ \"eba863d0-c5d5-012f-75e4-58d385a7bc34\", \"eb4bfbd0-c5d5-012f-6554-58d385a7bc34\" ],\\n \"rootCollectionUUID_s\" : [ \"eb4bfbd0-c5d5-012f-6554-58d385a7bc34\" ],\\n \"rootCollectionUUID_string\" : \"eb4bfbd0-c5d5-012f-6554-58d385a7bc34\",\\n \"rootCollection_rootCollectionUUID_s\" : [ \"Alexander Anderson scrapbooks||eb4bfbd0-c5d5-012f-6554-58d385a7bc34\" ],\\n \"rootCollection_s\" : [ \"Alexander Anderson scrapbooks\" ],\\n \"rootCollectionTitle_string\" : \"Alexander Anderson scrapbooks\",\\n \"title_uuid_s\" : [ \"Volume 1||eba863d0-c5d5-012f-75e4-58d385a7bc34\", \"Alexander Anderson scrapbooks||eb4bfbd0-c5d5-012f-6554-58d385a7bc34\" ],\\n \"sortString\" : \"0000000001|0000000001|0000000033\",\\n \"sortString_sort\" : \"0000000001|0000000001|0000000033\",\\n \"dateIndexed_s\" : [ \"2025-01-21T23:42:50.123Z\" ],\\n \"type_s\" : \"http://uri.nypl.org/vocabulary/repository_terms#Item\",\\n \"rights_st\" : \"\\\\n\\\\n \\\\n Can be displayed on NYPL premises\\\\n \\\\n \\\\n Can be used on NYPL website\\\\n \\\\n \\\\n Can be used inside free NYPL exhibition catalogs and in free NYPL brochures\\\\n \\\\n \\\\n Can be used in advertising for NYPL exhibitions, on catalog covers, in press kits, or fundraising activities\\\\n \\\\n \\\\n Can be sold through 3rd party print partner (e.g., New York Times)\\\\n \\\\n \\\\n Can be licensed to 3rd party websites\\\\n \\\\n \\\\n Can be used in products created by NYPL for commercial gain (e.g., Library Shop, CDs, DVDs, etc.)\\\\n \\\\n The collection consists of hundreds of wood engravings by the major illustrator and wood engraver Alexander Anderson that are pasted into a set of 12 albums. As the prints are proofs and represent a virtual complete catalog of the artist\\'s work, it is assumed they came directly from Anderson\\'s descendants to the Library, where they were re-bound in 1954. \\\\n \\\\nAlexander Anderson (1775-1870) was a New York physician active during the city\\'s Yellow Fever epidemics. He developed the technique of wood engraving in the United States soon after Thomas Bewick (1753-1828) invented the technique in England. During a career spanning seventy years, he produced a large number of illustrations for books, periodicals, newspapers, and other commercial ephemera, after both his own designs and those of other artists\\\\n \\\\n PPD100\\\\n The New York Public Library believes that this item is in the public domain under the laws of the United States, but did not make a determination as to its copyright status under the copyright laws of other countries. This item may not be in the public domain under the laws of other countries. Though not required, if you want to credit us as the source, please use the following statement, \\\\\"From The New York Public Library,\\\\\" and provide a link back to the item on our Digital Collections site. Doing so helps us track how our collection is used and helps justify freely releasing even more content in the future.\\\\n http://rightsstatements.org/vocab/NoC-US/1.0/\\\\n \\\\n\\\\n\",\\n \"mods_st\" : \"\\\\n\\\\n \\\\n Wolves, weasels, foxes, raccoons, and badgers.\\\\n \\\\n \\\\n Anderson, Alexander (1775-1870)\\\\n \\\\n egr\\\\n Engraver\\\\n \\\\n \\\\n still image\\\\n Prints\\\\n Illustrations\\\\n \\\\n 1794\\\\n 1870\\\\n \\\\n \\\\n
Wood engravings
\\\\n
\\\\n 221\\\\n 347155\\\\n \\\\n nn\\\\n The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Print Collection\\\\n MEYI (Anderson, Scrap Book)\\\\n Wallach Division: Print Collection\\\\n PRN\\\\n \\\\n \\\\n The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Print Collection\\\\n Wallach Division: Print Collection\\\\n PRN\\\\n \\\\n 04711bd0-c5d6-012f-f1b4-58d385a7bc34\\\\n \\\\n \\\\n Volume 1\\\\n \\\\n eba863d0-c5d5-012f-75e4-58d385a7bc34\\\\n 353825\\\\n \\\\n \\\\n Alexander Anderson scrapbooks\\\\n \\\\n eb4bfbd0-c5d5-012f-6554-58d385a7bc34\\\\n 105675\\\\n 221\\\\n \\\\n \\\\n
\\\\n\",\\n \"mainTitle\" : [ \"Wolves, weasels, foxes, raccoons, and badgers.\" ],\\n \"mainTitle_htxt\" : [ \"Wolves, weasels, foxes, raccoons, and badgers.\" ],\\n \"mainTitle_s\" : [ \"Wolves, weasels, foxes, raccoons, and badgers.\" ],\\n \"mainTitle_st\" : \"Wolves, weasels, foxes, raccoons, and badgers.\",\\n \"mainTitle_lit_idx\" : \"Wolves, weasels, foxes, raccoons, and badgers.\",\\n \"mainTitle_sort\" : \"Wolves, weasels, foxes, raccoons, and badgers.\",\\n \"mainTitle_ns\" : \"Wolves, weasels, foxes, raccoons, and badgers.\",\\n \"title_mtxt\" : [ \"Wolves, weasels, foxes, raccoons, and badgers.\", \"Volume 1\", \"Alexander Anderson scrapbooks\" ],\\n \"title_lit_idx\" : [ \"Wolves, weasels, foxes, raccoons, and badgers.\", \"Volume 1\", \"Alexander Anderson scrapbooks\" ],\\n \"title_sort\" : [ \"Wolves, weasels, foxes, raccoons, and badgers.\", \"Volume 1\", \"Alexander Anderson scrapbooks\" ],\\n \"title_mtxt_s\" : [ \"Wolves, weasels, foxes, raccoons, and badgers.\", \"Volume 1\", \"Alexander Anderson scrapbooks\" ],\\n \"typeOfResource_mtxt\" : [ \"still image\" ],\\n \"typeOfResource_mtxt_s\" : [ \"still image\" ],\\n \"genre_mtxt\" : [ \"Prints\", \"Illustrations\" ],\\n \"genre_mtxt_s\" : [ \"Prints\", \"Illustrations\" ],\\n \"shelfLocator_mtxt\" : [ \"MEYI (Anderson, Scrap Book)\" ],\\n \"shelfLocator_mtxt_s\" : [ \"MEYI (Anderson, Scrap Book)\" ],\\n \"namePart_mtxt\" : [ \"Anderson, Alexander (1775-1870)\" ],\\n \"namePart_mtxt_s\" : [ \"Anderson, Alexander (1775-1870)\" ],\\n \"roleTermCode_s\" : [ \"egr\" ],\\n \"roleTermText_s\" : [ \"Engraver\" ],\\n \"roleTerm_mtxt\" : [ \"egr\", \"Engraver\" ],\\n \"roleTerm_mtxt_s\" : [ \"egr\", \"Engraver\" ],\\n \"engraver_name_s\" : [ \"Anderson, Alexander (1775-1870)\" ],\\n \"identifier_local_hades_collection\" : [ \"221\" ],\\n \"identifier_idx_local_hades_collection\" : [ \"221\" ],\\n \"identifier_local_hades\" : [ \"347155\" ],\\n \"identifier_idx_local_hades\" : [ \"347155\" ],\\n \"identifier_uuid\" : [ \"04711bd0-c5d6-012f-f1b4-58d385a7bc34\" ],\\n \"identifier_uuid_string\" : \"04711bd0-c5d6-012f-f1b4-58d385a7bc34\",\\n \"identifier_idx_uuid\" : [ \"04711bd0-c5d6-012f-f1b4-58d385a7bc34\" ],\\n \"form_mtxt\" : [ \"Wood engravings\" ],\\n \"form_mtxt_s\" : [ \"Wood engravings\" ],\\n \"datecreated_mtxt\" : [ \"1794\", \"1870\" ],\\n \"datecreated_mtxt_s\" : [ \"1794\", \"1870\" ],\\n \"keyDate_st\" : \"1794\",\\n \"yearBegin_dt\" : \"1794-01-01T00:00:00Z\",\\n \"yearEnd_dt\" : \"1870-01-01T00:00:00Z\",\\n \"repositoryName_mtxt_s\" : [ \"The New York Public Library\" ],\\n \"repositoryName_mtxt\" : [ \"The New York Public Library\" ],\\n \"divisionFullname_mtxt_s\" : [ \"The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Print Collection\" ],\\n \"divisionFullname_mtxt\" : [ \"The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Print Collection\" ],\\n \"divisionShortname_mtxt_s\" : [ \"Wallach Division: Print Collection\" ],\\n \"divisionShortname_mtxt\" : [ \"Wallach Division: Print Collection\" ],\\n \"physicalLocation_mtxt_s\" : [ \"The New York Public Library\", \"The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Print Collection\", \"MEYI (Anderson, Scrap Book)\", \"Wallach Division: Print Collection\" ],\\n \"physicalLocation_mtxt\" : [ \"The New York Public Library\", \"The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Print Collection\", \"MEYI (Anderson, Scrap Book)\", \"Wallach Division: Print Collection\" ],\\n \"deriv_s\" : [ \"w\", \"r\", \"t\", \"b\", \"f\" ],\\n \"rightsNotes_rtxt\" : [ \"The collection consists of hundreds of wood engravings by the major illustrator and wood engraver Alexander Anderson that are pasted into a set of 12 albums. As the prints are proofs and represent a virtual complete catalog of the artist\\'s work, it is assumed they came directly from Anderson\\'s descendants to the Library, where they were re-bound in 1954. \\\\r\\\\n\\\\r\\\\nAlexander Anderson (1775-1870) was a New York physician active during the city\\'s Yellow Fever epidemics. He developed the technique of wood engraving in the United States soon after Thomas Bewick (1753-1828) invented the technique in England. During a career spanning seventy years, he produced a large number of illustrations for books, periodicals, newspapers, and other commercial ephemera, after both his own designs and those of other artists\" ],\\n \"rightsNotes_rtxt_s\" : [ \"The collection consists of hundreds of wood engravings by the major illustrator and wood engraver Alexander Anderson that are pasted into a set of 12 albums. As the prints are proofs and represent a virtual complete catalog of the artist\\'s work, it is assumed they came directly from Anderson\\'s descendants to the Library, where they were re-bound in 1954. \\\\r\\\\n\\\\r\\\\nAlexander Anderson (1775-1870) was a New York physician active during the city\\'s Yellow Fever epidemics. He developed the technique of wood engraving in the United States soon after Thomas Bewick (1753-1828) invented the technique in England. During a career spanning seventy years, he produced a large number of illustrations for books, periodicals, newspapers, and other commercial ephemera, after both his own designs and those of other artists\" ],\\n \"use_rtxt\" : [ \"Can be displayed on NYPL premises\", \"Can be used on NYPL website\", \"Can be used inside free NYPL exhibition catalogs and in free NYPL brochures\", \"Can be used in advertising for NYPL exhibitions, on catalog covers, in press kits, or fundraising activities\", \"Can be sold through 3rd party print partner (e.g., New York Times)\", \"Can be licensed to 3rd party websites\", \"Can be used in products created by NYPL for commercial gain (e.g., Library Shop, CDs, DVDs, etc.)\", \"PPD100\" ],\\n \"use_rtxt_s\" : [ \"Can be displayed on NYPL premises\", \"Can be used on NYPL website\", \"Can be used inside free NYPL exhibition catalogs and in free NYPL brochures\", \"Can be used in advertising for NYPL exhibitions, on catalog covers, in press kits, or fundraising activities\", \"Can be sold through 3rd party print partner (e.g., New York Times)\", \"Can be licensed to 3rd party websites\", \"Can be used in products created by NYPL for commercial gain (e.g., Library Shop, CDs, DVDs, etc.)\", \"PPD100\" ],\\n \"useStatementText_rtxt\" : [ \"The New York Public Library believes that this item is in the public domain under the laws of the United States, but did not make a determination as to its copyright status under the copyright laws of other countries. This item may not be in the public domain under the laws of other countries. Though not required, if you want to credit us as the source, please use the following statement, \\\\\"From The New York Public Library,\\\\\" and provide a link back to the item on our Digital Collections site. Doing so helps us track how our collection is used and helps justify freely releasing even more content in the future.\" ],\\n \"useStatementText_rtxt_s\" : [ \"The New York Public Library believes that this item is in the public domain under the laws of the United States, but did not make a determination as to its copyright status under the copyright laws of other countries. This item may not be in the public domain under the laws of other countries. Though not required, if you want to credit us as the source, please use the following statement, \\\\\"From The New York Public Library,\\\\\" and provide a link back to the item on our Digital Collections site. Doing so helps us track how our collection is used and helps justify freely releasing even more content in the future.\" ],\\n \"useStatementURI_rtxt\" : [ \"http://rightsstatements.org/vocab/NoC-US/1.0/\" ],\\n \"useStatementURI_rtxt_s\" : [ \"http://rightsstatements.org/vocab/NoC-US/1.0/\" ],\\n \"firstIndexed_s\" : [ \"2011-10-11T08:32:51.000+00:00\" ],\\n \"firstIndexed_dt\" : \"2011-10-11T08:32:51Z\",\\n \"dateIndexed_dt\" : \"2025-01-21T23:42:50Z\",\\n \"containsMultipleCaptures\" : true,\\n \"containsAVMaterial\" : false,\\n \"containsOnSiteMaterial\" : false,\\n \"imageID\" : \"T000080\",\\n \"imageID_string\" : \"T000080\",\\n \"_version_\" : 1821903916281888768\\n },\\n \"desc_xml\" : \"<\"\\n}'},\n", + " 'provider': {'@id': 'http://dp.la/api/contributor/nypl',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q219555'],\n", + " 'name': 'The New York Public Library'},\n", + " 'rights': 'http://rightsstatements.org/vocab/NoC-US/1.0/',\n", + " 'rightsCategory': 'Unlimited Re-Use',\n", + " 'sourceResource': {'@id': 'http://dp.la/api/items/393af2dfba544397d514d30821660f41#SourceResource',\n", + " 'collection': [{'title': 'Alexander Anderson scrapbooks'}],\n", + " 'creator': ['Anderson, Alexander (1775-1870)'],\n", + " 'date': [{'begin': '1794', 'displayDate': '1794', 'end': '1794'}],\n", + " 'format': ['Prints', 'Illustrations'],\n", + " 'publisher': [],\n", + " 'rights': ['The New York Public Library believes that this item is in the public domain under the laws of the United States, but did not make a determination as to its copyright status under the copyright laws of other countries. This item may not be in the public domain under the laws of other countries. Though not required, if you want to credit us as the source, please use the following statement, \"From The New York Public Library,\" and provide a link back to the item on our Digital Collections site. Doing so helps us track how our collection is used and helps justify freely releasing even more content in the future.'],\n", + " 'title': ['Wolves, weasels, foxes, raccoons, and badgers.'],\n", + " 'type': ['image']}}],\n", + " 'facets': [],\n", + " 'limit': 10,\n", + " 'start': 1}" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "response = requests.get(f\"https://api.dp.la/v2/items?q=weasels&api_key={DPLA_API_KEY}\")\n", + "\n", + "response.json()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Reading responses\n", + "\n", + "As you can see above, the response returns a JSON (JavaScript Object Notation) object with a few top-level keys. If you're thinking, \"Hm, this JSON looks an awful lot like a Python dictionary,\" you're absolutely right. While the semantics of Python dictionaries and JSON _are_ different, in this case, the `requests` library has already coerced the raw JSON to a Python dictionary for us. You can access its values like you would with any Python dict:" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "245" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "parsed_response = response.json()\n", + "\n", + "parsed_response['count']" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + ":::{important}\n", + "Experiment a bit. How, for example, would you get all of the titles in a list?\n", + ":::" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'count': 1580,\n", + " 'docs': [{'sourceResource.title': 'Foxes'},\n", + " {'sourceResource.title': 'Foxes'},\n", + " {'sourceResource.title': 'Foxes'},\n", + " {'sourceResource.title': 'Foxes'},\n", + " {'sourceResource.title': 'Foxes'},\n", + " {'sourceResource.title': 'Foxes'},\n", + " {'sourceResource.title': 'Foxes'},\n", + " {'sourceResource.title': 'Foxes'},\n", + " {'sourceResource.title': 'Foxes'},\n", + " {'sourceResource.title': 'Foxes'}],\n", + " 'facets': [],\n", + " 'limit': 10,\n", + " 'start': 1}" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "my_query = \"foxes\"\n", + "my_url = f\"https://api.dp.la/v2/items?q={my_query}&fields=sourceResource.title&api_key={DPLA_API_KEY}\"\n", + "\n", + "response = requests.get(my_url)\n", + "\n", + "parsed_response = response.json()\n", + "parsed_response" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Constructing queries\n", + "\n", + "Naturally, when you're working with an API, you'll want to be able to construct your own queries. Above, we hard-coded the value `weasels` under the querystring parameter `q`. But you can use Python's string interpolation to set any value you want. For example" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'count': 1580,\n", + " 'docs': [{'@context': 'http://dp.la/api/items/context',\n", + " '@id': 'http://dp.la/api/items/d5728fb0ffcd131d28c33cbefd7437d0',\n", + " '@type': 'ore:Aggregation',\n", + " 'aggregatedCHO': '#sourceResource',\n", + " 'dataProvider': {'@id': 'http://dp.la/api/contributor/denver-public-library',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q5259775'],\n", + " 'name': 'Denver Public Library'},\n", + " 'id': 'd5728fb0ffcd131d28c33cbefd7437d0',\n", + " 'ingestDate': '2025-01-29T20:03:33.435Z',\n", + " 'ingestType': 'item',\n", + " 'isShownAt': 'https://digital.denverlibrary.org/nodes/view/1050323',\n", + " 'object': 'https://digital.denverlibrary.org/assets/nodeimg/1050323',\n", + " 'originalRecord': {'stringValue': '\\n
\\n \\n oai:YOUR_OAI_PREFIX:DPL:oai:digital.denverlibrary.org:1050323\\n \\n 2025-01-27T21:49:44Z\\n
\\n \\n \\n Denver Public Library\\n \\n \\n https://digital.denverlibrary.org/nodes/view/1050323\\n \\n \\n \\n http://rightsstatements.org/vocab/CNE/1.0/\\n \\n \\n Foxes\\n \\n \\n \\n https://digital.denverlibrary.org/assets/nodeimg/1050323\\n \\n \\n \\n View of a pile of fox pelts to be used probably for shawls at a building owned by E. H. Stephens.\\n \\n \\n Denver (Colo.)\\n \\n \\n Foxes--Colorado--Denver\\n \\n \\n Hides &amp; skins--Colorado--Denver\\n \\n \\n Denver (Colo.)\\n \\n Image\\n \\n Rocky Mountain Photo Company.\\n \\n creator\\n \\n \\n \\n Nitrate negatives\\n \\n \\n Photographic prints\\n \\n \\n \\n
\\n'},\n", + " 'provider': {'@id': 'http://dp.la/api/contributor/p2p',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q83878503'],\n", + " 'name': 'Plains to Peaks Collective'},\n", + " 'rights': 'http://rightsstatements.org/vocab/CNE/1.0/',\n", + " 'rightsCategory': 'Unspecified Rights Status',\n", + " 'sourceResource': {'@id': 'http://dp.la/api/items/d5728fb0ffcd131d28c33cbefd7437d0#SourceResource',\n", + " 'creator': ['Rocky Mountain Photo Company'],\n", + " 'description': ['View of a pile of fox pelts to be used probably for shawls at a building owned by E. H. Stephens.'],\n", + " 'format': ['Nitrate negatives', 'Photographic prints'],\n", + " 'spatial': [{'name': 'Denver (Colo.)'}],\n", + " 'subject': [{'name': 'Denver (Colo.)'},\n", + " {'name': 'Foxes--Colorado--Denver'},\n", + " {'name': 'Hides & skins--Colorado--Denver'}],\n", + " 'title': ['Foxes'],\n", + " 'type': ['image']}},\n", + " {'@context': 'http://dp.la/api/items/context',\n", + " '@id': 'http://dp.la/api/items/e0c640987e09a249bd746179aba8726d',\n", + " '@type': 'ore:Aggregation',\n", + " 'aggregatedCHO': '#sourceResource',\n", + " 'dataProvider': {'@id': 'http://dp.la/api/contributor/hargrett-library',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q55075345'],\n", + " 'name': 'Hargrett Library'},\n", + " 'id': 'e0c640987e09a249bd746179aba8726d',\n", + " 'iiifManifest': 'https://dlg.usg.edu/record/guan_caes_0004-001-015-094-001/presentation/manifest.json',\n", + " 'ingestDate': '2025-01-02T18:46:26.716Z',\n", + " 'ingestType': 'item',\n", + " 'isShownAt': 'https://dlg.usg.edu/record/guan_caes_0004-001-015-094-001',\n", + " 'object': 'https://dlg.galileo.usg.edu/do-th:guan_caes_0004-001-015-094-001',\n", + " 'originalRecord': {'stringValue': '{\\n \"id\" : \"guan_caes_0004-001-015-094-001\",\\n \"collection_titles_sms\" : [ \"College of Agriculture and Environmental Sciences (CAES) Photograph Collection\" ],\\n \"dcterms_provenance_display\" : [ \"Hargrett Library\" ],\\n \"dcterms_title_display\" : [ \"Foxes\" ],\\n \"dcterms_creator_display\" : [ \"Bell\" ],\\n \"dcterms_subject_display\" : [ \"University of Georgia. College of Agricultural and Environmental Sciences\", \"Agricultural education--Georgia\", \"Views--Georgia--Clarke County\" ],\\n \"dcterms_description_display\" : [ \"Miscellaneous\", \"Wildlife;This item has been aggregated as part of the Association of Southeastern Research Libraries (ASERL)\\'s \\\\\"Deeply Rooted: The Agricultural Rural History of the American South\\\\\" project.\" ],\\n \"edm_is_shown_at_display\" : [ \"https://dlg.usg.edu/record/guan_caes_0004-001-015-094-001\" ],\\n \"edm_is_shown_by_display\" : [ \"https://dlg.usg.edu/record/guan_caes_0004-001-015-094-001#item\" ],\\n \"dc_date_display\" : [ \"1965-05-13\" ],\\n \"dc_format_display\" : [ \"image/jpeg\" ],\\n \"dcterms_is_part_of_display\" : [ \"College of Agriculture and Environmental Sciences (CAES) Photograph Collection, University Archives, Hargrett Library, University of Georgia, Athens, Georgia\" ],\\n \"dc_right_display\" : [ \"http://rightsstatements.org/vocab/InC/1.0/\" ],\\n \"dcterms_bibliographic_citation_display\" : [ \"College of Agricultural and Environmental Sciences Photograph Collection, UA0004. University of Georgia Archives, Hargrett Rare Book and Manuscript Library, University of Georgia Libraries.\" ],\\n \"dc_relation_display\" : [ \"Deeply Rooted\" ],\\n \"dcterms_type_display\" : [ \"StillImage\" ],\\n \"dcterms_medium_display\" : [ \"photographs\" ],\\n \"dcterms_language_display\" : [ \"eng\" ],\\n \"created_at_dts\" : \"2017-05-26T07:52:59Z\",\\n \"updated_at_dts\" : \"2022-04-14T23:04:02Z\",\\n \"iiif_manifest_url_ss\" : \"https://dlg.usg.edu/record/guan_caes_0004-001-015-094-001/presentation/manifest.json\",\\n \"dcterms_spatial_display\" : [ {\\n \"names\" : [ \"United States\", \"Georgia\", \"Clarke County\" ],\\n \"coordinates\" : \"33.95117, -83.36733\",\\n \"uri\" : \"geonames.org/4188191\"\\n } ]\\n}'},\n", + " 'provider': {'@id': 'http://dp.la/api/contributor/dlg',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q5275908'],\n", + " 'name': 'Digital Library of Georgia'},\n", + " 'rights': 'http://rightsstatements.org/vocab/InC/1.0/',\n", + " 'rightsCategory': 'Permission or Fair Use',\n", + " 'sourceResource': {'@id': 'http://dp.la/api/items/e0c640987e09a249bd746179aba8726d#SourceResource',\n", + " 'collection': [{'title': 'College of Agriculture and Environmental Sciences (CAES) Photograph Collection'}],\n", + " 'creator': ['Bell'],\n", + " 'date': [{'displayDate': '1965-05-13'}],\n", + " 'description': ['Miscellaneous',\n", + " 'Wildlife;This item has been aggregated as part of the Association of Southeastern Research Libraries (ASERL)\\'s \"Deeply Rooted: The Agricultural Rural History of the American South\" project.'],\n", + " 'language': [{'iso639_3': 'English', 'name': 'English'}],\n", + " 'relation': ['Deeply Rooted'],\n", + " 'spatial': [{'name': 'United States'},\n", + " {'name': 'Georgia'},\n", + " {'coordinates': '33.95117, -83.36733', 'name': 'Clarke County'}],\n", + " 'subject': [{'name': 'University of Georgia. College of Agricultural and Environmental Sciences'},\n", + " {'name': 'Agricultural education--Georgia'},\n", + " {'name': 'Views--Georgia--Clarke County'}],\n", + " 'title': ['Foxes'],\n", + " 'type': ['image']}},\n", + " {'@context': 'http://dp.la/api/items/context',\n", + " '@id': 'http://dp.la/api/items/fde6a1df2daa53fe1d15c31f63bf5430',\n", + " '@type': 'ore:Aggregation',\n", + " 'aggregatedCHO': '#sourceResource',\n", + " 'dataProvider': {'@id': 'http://dp.la/api/contributor/hargrett-library',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q55075345'],\n", + " 'name': 'Hargrett Library'},\n", + " 'id': 'fde6a1df2daa53fe1d15c31f63bf5430',\n", + " 'iiifManifest': 'https://dlg.usg.edu/record/guan_caes_0004-001-015-094-004/presentation/manifest.json',\n", + " 'ingestDate': '2025-01-02T18:46:26.716Z',\n", + " 'ingestType': 'item',\n", + " 'isShownAt': 'https://dlg.usg.edu/record/guan_caes_0004-001-015-094-004',\n", + " 'object': 'https://dlg.galileo.usg.edu/do-th:guan_caes_0004-001-015-094-004',\n", + " 'originalRecord': {'stringValue': '{\\n \"id\" : \"guan_caes_0004-001-015-094-004\",\\n \"collection_titles_sms\" : [ \"College of Agriculture and Environmental Sciences (CAES) Photograph Collection\" ],\\n \"dcterms_provenance_display\" : [ \"Hargrett Library\" ],\\n \"dcterms_title_display\" : [ \"Foxes\" ],\\n \"dcterms_creator_display\" : [ \"Bell\" ],\\n \"dcterms_subject_display\" : [ \"University of Georgia. College of Agricultural and Environmental Sciences\", \"Agricultural education--Georgia\", \"Views--Georgia--Clarke County\" ],\\n \"dcterms_description_display\" : [ \"Miscellaneous\", \"Wildlife;This item has been aggregated as part of the Association of Southeastern Research Libraries (ASERL)\\'s \\\\\"Deeply Rooted: The Agricultural Rural History of the American South\\\\\" project.\" ],\\n \"edm_is_shown_at_display\" : [ \"https://dlg.usg.edu/record/guan_caes_0004-001-015-094-004\" ],\\n \"edm_is_shown_by_display\" : [ \"https://dlg.usg.edu/record/guan_caes_0004-001-015-094-004#item\" ],\\n \"dc_date_display\" : [ \"1965-05-13\" ],\\n \"dc_format_display\" : [ \"image/jpeg\" ],\\n \"dcterms_is_part_of_display\" : [ \"College of Agriculture and Environmental Sciences (CAES) Photograph Collection, University Archives, Hargrett Library, University of Georgia, Athens, Georgia\" ],\\n \"dc_right_display\" : [ \"http://rightsstatements.org/vocab/InC/1.0/\" ],\\n \"dcterms_bibliographic_citation_display\" : [ \"College of Agricultural and Environmental Sciences Photograph Collection, UA0004. University of Georgia Archives, Hargrett Rare Book and Manuscript Library, University of Georgia Libraries.\" ],\\n \"dc_relation_display\" : [ \"Deeply Rooted\" ],\\n \"dcterms_type_display\" : [ \"StillImage\" ],\\n \"dcterms_medium_display\" : [ \"photographs\" ],\\n \"dcterms_language_display\" : [ \"eng\" ],\\n \"created_at_dts\" : \"2017-05-26T07:52:59Z\",\\n \"updated_at_dts\" : \"2022-04-14T23:04:04Z\",\\n \"iiif_manifest_url_ss\" : \"https://dlg.usg.edu/record/guan_caes_0004-001-015-094-004/presentation/manifest.json\",\\n \"dcterms_spatial_display\" : [ {\\n \"names\" : [ \"United States\", \"Georgia\", \"Clarke County\" ],\\n \"coordinates\" : \"33.95117, -83.36733\",\\n \"uri\" : \"geonames.org/4188191\"\\n } ]\\n}'},\n", + " 'provider': {'@id': 'http://dp.la/api/contributor/dlg',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q5275908'],\n", + " 'name': 'Digital Library of Georgia'},\n", + " 'rights': 'http://rightsstatements.org/vocab/InC/1.0/',\n", + " 'rightsCategory': 'Permission or Fair Use',\n", + " 'sourceResource': {'@id': 'http://dp.la/api/items/fde6a1df2daa53fe1d15c31f63bf5430#SourceResource',\n", + " 'collection': [{'title': 'College of Agriculture and Environmental Sciences (CAES) Photograph Collection'}],\n", + " 'creator': ['Bell'],\n", + " 'date': [{'displayDate': '1965-05-13'}],\n", + " 'description': ['Miscellaneous',\n", + " 'Wildlife;This item has been aggregated as part of the Association of Southeastern Research Libraries (ASERL)\\'s \"Deeply Rooted: The Agricultural Rural History of the American South\" project.'],\n", + " 'language': [{'iso639_3': 'English', 'name': 'English'}],\n", + " 'relation': ['Deeply Rooted'],\n", + " 'spatial': [{'name': 'United States'},\n", + " {'name': 'Georgia'},\n", + " {'coordinates': '33.95117, -83.36733', 'name': 'Clarke County'}],\n", + " 'subject': [{'name': 'University of Georgia. College of Agricultural and Environmental Sciences'},\n", + " {'name': 'Agricultural education--Georgia'},\n", + " {'name': 'Views--Georgia--Clarke County'}],\n", + " 'title': ['Foxes'],\n", + " 'type': ['image']}},\n", + " {'@context': 'http://dp.la/api/items/context',\n", + " '@id': 'http://dp.la/api/items/b9b0e4e5208de32d8d7c2d23d44b217d',\n", + " '@type': 'ore:Aggregation',\n", + " 'aggregatedCHO': '#sourceResource',\n", + " 'dataProvider': {'@id': 'http://dp.la/api/contributor/hargrett-library',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q55075345'],\n", + " 'name': 'Hargrett Library'},\n", + " 'id': 'b9b0e4e5208de32d8d7c2d23d44b217d',\n", + " 'iiifManifest': 'https://dlg.usg.edu/record/guan_caes_0004-001-015-094-014/presentation/manifest.json',\n", + " 'ingestDate': '2025-01-02T18:46:26.716Z',\n", + " 'ingestType': 'item',\n", + " 'isShownAt': 'https://dlg.usg.edu/record/guan_caes_0004-001-015-094-014',\n", + " 'object': 'https://dlg.galileo.usg.edu/do-th:guan_caes_0004-001-015-094-014',\n", + " 'originalRecord': {'stringValue': '{\\n \"id\" : \"guan_caes_0004-001-015-094-014\",\\n \"collection_titles_sms\" : [ \"College of Agriculture and Environmental Sciences (CAES) Photograph Collection\" ],\\n \"dcterms_provenance_display\" : [ \"Hargrett Library\" ],\\n \"dcterms_title_display\" : [ \"Foxes\" ],\\n \"dcterms_creator_display\" : [ \"Bell\" ],\\n \"dcterms_subject_display\" : [ \"University of Georgia. College of Agricultural and Environmental Sciences\", \"Agricultural education--Georgia\", \"Views--Georgia--Clarke County\" ],\\n \"dcterms_description_display\" : [ \"Miscellaneous\", \"Wildlife;This item has been aggregated as part of the Association of Southeastern Research Libraries (ASERL)\\'s \\\\\"Deeply Rooted: The Agricultural Rural History of the American South\\\\\" project.\" ],\\n \"edm_is_shown_at_display\" : [ \"https://dlg.usg.edu/record/guan_caes_0004-001-015-094-014\" ],\\n \"edm_is_shown_by_display\" : [ \"https://dlg.usg.edu/record/guan_caes_0004-001-015-094-014#item\" ],\\n \"dc_date_display\" : [ \"1965-05-13\" ],\\n \"dc_format_display\" : [ \"image/jpeg\" ],\\n \"dcterms_is_part_of_display\" : [ \"College of Agriculture and Environmental Sciences (CAES) Photograph Collection, University Archives, Hargrett Library, University of Georgia, Athens, Georgia\" ],\\n \"dc_right_display\" : [ \"http://rightsstatements.org/vocab/InC/1.0/\" ],\\n \"dcterms_bibliographic_citation_display\" : [ \"College of Agricultural and Environmental Sciences Photograph Collection, UA0004. University of Georgia Archives, Hargrett Rare Book and Manuscript Library, University of Georgia Libraries.\" ],\\n \"dc_relation_display\" : [ \"Deeply Rooted\" ],\\n \"dcterms_type_display\" : [ \"StillImage\" ],\\n \"dcterms_medium_display\" : [ \"photographs\" ],\\n \"dcterms_language_display\" : [ \"eng\" ],\\n \"created_at_dts\" : \"2017-05-26T07:53:00Z\",\\n \"updated_at_dts\" : \"2022-04-14T23:04:11Z\",\\n \"iiif_manifest_url_ss\" : \"https://dlg.usg.edu/record/guan_caes_0004-001-015-094-014/presentation/manifest.json\",\\n \"dcterms_spatial_display\" : [ {\\n \"names\" : [ \"United States\", \"Georgia\", \"Clarke County\" ],\\n \"coordinates\" : \"33.95117, -83.36733\",\\n \"uri\" : \"geonames.org/4188191\"\\n } ]\\n}'},\n", + " 'provider': {'@id': 'http://dp.la/api/contributor/dlg',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q5275908'],\n", + " 'name': 'Digital Library of Georgia'},\n", + " 'rights': 'http://rightsstatements.org/vocab/InC/1.0/',\n", + " 'rightsCategory': 'Permission or Fair Use',\n", + " 'sourceResource': {'@id': 'http://dp.la/api/items/b9b0e4e5208de32d8d7c2d23d44b217d#SourceResource',\n", + " 'collection': [{'title': 'College of Agriculture and Environmental Sciences (CAES) Photograph Collection'}],\n", + " 'creator': ['Bell'],\n", + " 'date': [{'displayDate': '1965-05-13'}],\n", + " 'description': ['Miscellaneous',\n", + " 'Wildlife;This item has been aggregated as part of the Association of Southeastern Research Libraries (ASERL)\\'s \"Deeply Rooted: The Agricultural Rural History of the American South\" project.'],\n", + " 'language': [{'iso639_3': 'English', 'name': 'English'}],\n", + " 'relation': ['Deeply Rooted'],\n", + " 'spatial': [{'name': 'United States'},\n", + " {'name': 'Georgia'},\n", + " {'coordinates': '33.95117, -83.36733', 'name': 'Clarke County'}],\n", + " 'subject': [{'name': 'University of Georgia. College of Agricultural and Environmental Sciences'},\n", + " {'name': 'Agricultural education--Georgia'},\n", + " {'name': 'Views--Georgia--Clarke County'}],\n", + " 'title': ['Foxes'],\n", + " 'type': ['image']}},\n", + " {'@context': 'http://dp.la/api/items/context',\n", + " '@id': 'http://dp.la/api/items/3925b21c5124821d92e76b0269378a0c',\n", + " '@type': 'ore:Aggregation',\n", + " 'aggregatedCHO': '#sourceResource',\n", + " 'dataProvider': {'@id': 'http://dp.la/api/contributor/hargrett-library',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q55075345'],\n", + " 'name': 'Hargrett Library'},\n", + " 'id': '3925b21c5124821d92e76b0269378a0c',\n", + " 'iiifManifest': 'https://dlg.usg.edu/record/guan_caes_0004-001-015-094-005/presentation/manifest.json',\n", + " 'ingestDate': '2025-01-02T18:46:26.716Z',\n", + " 'ingestType': 'item',\n", + " 'isShownAt': 'https://dlg.usg.edu/record/guan_caes_0004-001-015-094-005',\n", + " 'object': 'https://dlg.galileo.usg.edu/do-th:guan_caes_0004-001-015-094-005',\n", + " 'originalRecord': {'stringValue': '{\\n \"id\" : \"guan_caes_0004-001-015-094-005\",\\n \"collection_titles_sms\" : [ \"College of Agriculture and Environmental Sciences (CAES) Photograph Collection\" ],\\n \"dcterms_provenance_display\" : [ \"Hargrett Library\" ],\\n \"dcterms_title_display\" : [ \"Foxes\" ],\\n \"dcterms_creator_display\" : [ \"Bell\" ],\\n \"dcterms_subject_display\" : [ \"University of Georgia. College of Agricultural and Environmental Sciences\", \"Agricultural education--Georgia\", \"Views--Georgia--Clarke County\" ],\\n \"dcterms_description_display\" : [ \"Miscellaneous\", \"Wildlife;This item has been aggregated as part of the Association of Southeastern Research Libraries (ASERL)\\'s \\\\\"Deeply Rooted: The Agricultural Rural History of the American South\\\\\" project.\" ],\\n \"edm_is_shown_at_display\" : [ \"https://dlg.usg.edu/record/guan_caes_0004-001-015-094-005\" ],\\n \"edm_is_shown_by_display\" : [ \"https://dlg.usg.edu/record/guan_caes_0004-001-015-094-005#item\" ],\\n \"dc_date_display\" : [ \"1965-05-13\" ],\\n \"dc_format_display\" : [ \"image/jpeg\" ],\\n \"dcterms_is_part_of_display\" : [ \"College of Agriculture and Environmental Sciences (CAES) Photograph Collection, University Archives, Hargrett Library, University of Georgia, Athens, Georgia\" ],\\n \"dc_right_display\" : [ \"http://rightsstatements.org/vocab/InC/1.0/\" ],\\n \"dcterms_bibliographic_citation_display\" : [ \"College of Agricultural and Environmental Sciences Photograph Collection, UA0004. University of Georgia Archives, Hargrett Rare Book and Manuscript Library, University of Georgia Libraries.\" ],\\n \"dc_relation_display\" : [ \"Deeply Rooted\" ],\\n \"dcterms_type_display\" : [ \"StillImage\" ],\\n \"dcterms_medium_display\" : [ \"photographs\" ],\\n \"dcterms_language_display\" : [ \"eng\" ],\\n \"created_at_dts\" : \"2017-05-26T07:53:00Z\",\\n \"updated_at_dts\" : \"2022-04-14T23:04:05Z\",\\n \"iiif_manifest_url_ss\" : \"https://dlg.usg.edu/record/guan_caes_0004-001-015-094-005/presentation/manifest.json\",\\n \"dcterms_spatial_display\" : [ {\\n \"names\" : [ \"United States\", \"Georgia\", \"Clarke County\" ],\\n \"coordinates\" : \"33.95117, -83.36733\",\\n \"uri\" : \"geonames.org/4188191\"\\n } ]\\n}'},\n", + " 'provider': {'@id': 'http://dp.la/api/contributor/dlg',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q5275908'],\n", + " 'name': 'Digital Library of Georgia'},\n", + " 'rights': 'http://rightsstatements.org/vocab/InC/1.0/',\n", + " 'rightsCategory': 'Permission or Fair Use',\n", + " 'sourceResource': {'@id': 'http://dp.la/api/items/3925b21c5124821d92e76b0269378a0c#SourceResource',\n", + " 'collection': [{'title': 'College of Agriculture and Environmental Sciences (CAES) Photograph Collection'}],\n", + " 'creator': ['Bell'],\n", + " 'date': [{'displayDate': '1965-05-13'}],\n", + " 'description': ['Miscellaneous',\n", + " 'Wildlife;This item has been aggregated as part of the Association of Southeastern Research Libraries (ASERL)\\'s \"Deeply Rooted: The Agricultural Rural History of the American South\" project.'],\n", + " 'language': [{'iso639_3': 'English', 'name': 'English'}],\n", + " 'relation': ['Deeply Rooted'],\n", + " 'spatial': [{'name': 'United States'},\n", + " {'name': 'Georgia'},\n", + " {'coordinates': '33.95117, -83.36733', 'name': 'Clarke County'}],\n", + " 'subject': [{'name': 'University of Georgia. College of Agricultural and Environmental Sciences'},\n", + " {'name': 'Agricultural education--Georgia'},\n", + " {'name': 'Views--Georgia--Clarke County'}],\n", + " 'title': ['Foxes'],\n", + " 'type': ['image']}},\n", + " {'@context': 'http://dp.la/api/items/context',\n", + " '@id': 'http://dp.la/api/items/bfa22c4e6a2fb0f1b3fdf82184c56b2f',\n", + " '@type': 'ore:Aggregation',\n", + " 'aggregatedCHO': '#sourceResource',\n", + " 'dataProvider': {'@id': 'http://dp.la/api/contributor/hargrett-library',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q55075345'],\n", + " 'name': 'Hargrett Library'},\n", + " 'id': 'bfa22c4e6a2fb0f1b3fdf82184c56b2f',\n", + " 'iiifManifest': 'https://dlg.usg.edu/record/guan_caes_0004-001-015-094-008/presentation/manifest.json',\n", + " 'ingestDate': '2025-01-02T18:46:26.716Z',\n", + " 'ingestType': 'item',\n", + " 'isShownAt': 'https://dlg.usg.edu/record/guan_caes_0004-001-015-094-008',\n", + " 'object': 'https://dlg.galileo.usg.edu/do-th:guan_caes_0004-001-015-094-008',\n", + " 'originalRecord': {'stringValue': '{\\n \"id\" : \"guan_caes_0004-001-015-094-008\",\\n \"collection_titles_sms\" : [ \"College of Agriculture and Environmental Sciences (CAES) Photograph Collection\" ],\\n \"dcterms_provenance_display\" : [ \"Hargrett Library\" ],\\n \"dcterms_title_display\" : [ \"Foxes\" ],\\n \"dcterms_creator_display\" : [ \"Bell\" ],\\n \"dcterms_subject_display\" : [ \"University of Georgia. College of Agricultural and Environmental Sciences\", \"Agricultural education--Georgia\", \"Views--Georgia--Clarke County\" ],\\n \"dcterms_description_display\" : [ \"Miscellaneous\", \"Wildlife;This item has been aggregated as part of the Association of Southeastern Research Libraries (ASERL)\\'s \\\\\"Deeply Rooted: The Agricultural Rural History of the American South\\\\\" project.\" ],\\n \"edm_is_shown_at_display\" : [ \"https://dlg.usg.edu/record/guan_caes_0004-001-015-094-008\" ],\\n \"edm_is_shown_by_display\" : [ \"https://dlg.usg.edu/record/guan_caes_0004-001-015-094-008#item\" ],\\n \"dc_date_display\" : [ \"1965-05-13\" ],\\n \"dc_format_display\" : [ \"image/jpeg\" ],\\n \"dcterms_is_part_of_display\" : [ \"College of Agriculture and Environmental Sciences (CAES) Photograph Collection, University Archives, Hargrett Library, University of Georgia, Athens, Georgia\" ],\\n \"dc_right_display\" : [ \"http://rightsstatements.org/vocab/InC/1.0/\" ],\\n \"dcterms_bibliographic_citation_display\" : [ \"College of Agricultural and Environmental Sciences Photograph Collection, UA0004. University of Georgia Archives, Hargrett Rare Book and Manuscript Library, University of Georgia Libraries.\" ],\\n \"dc_relation_display\" : [ \"Deeply Rooted\" ],\\n \"dcterms_type_display\" : [ \"StillImage\" ],\\n \"dcterms_medium_display\" : [ \"photographs\" ],\\n \"dcterms_language_display\" : [ \"eng\" ],\\n \"created_at_dts\" : \"2017-05-26T07:53:00Z\",\\n \"updated_at_dts\" : \"2022-04-14T23:04:07Z\",\\n \"iiif_manifest_url_ss\" : \"https://dlg.usg.edu/record/guan_caes_0004-001-015-094-008/presentation/manifest.json\",\\n \"dcterms_spatial_display\" : [ {\\n \"names\" : [ \"United States\", \"Georgia\", \"Clarke County\" ],\\n \"coordinates\" : \"33.95117, -83.36733\",\\n \"uri\" : \"geonames.org/4188191\"\\n } ]\\n}'},\n", + " 'provider': {'@id': 'http://dp.la/api/contributor/dlg',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q5275908'],\n", + " 'name': 'Digital Library of Georgia'},\n", + " 'rights': 'http://rightsstatements.org/vocab/InC/1.0/',\n", + " 'rightsCategory': 'Permission or Fair Use',\n", + " 'sourceResource': {'@id': 'http://dp.la/api/items/bfa22c4e6a2fb0f1b3fdf82184c56b2f#SourceResource',\n", + " 'collection': [{'title': 'College of Agriculture and Environmental Sciences (CAES) Photograph Collection'}],\n", + " 'creator': ['Bell'],\n", + " 'date': [{'displayDate': '1965-05-13'}],\n", + " 'description': ['Miscellaneous',\n", + " 'Wildlife;This item has been aggregated as part of the Association of Southeastern Research Libraries (ASERL)\\'s \"Deeply Rooted: The Agricultural Rural History of the American South\" project.'],\n", + " 'language': [{'iso639_3': 'English', 'name': 'English'}],\n", + " 'relation': ['Deeply Rooted'],\n", + " 'spatial': [{'name': 'United States'},\n", + " {'name': 'Georgia'},\n", + " {'coordinates': '33.95117, -83.36733', 'name': 'Clarke County'}],\n", + " 'subject': [{'name': 'University of Georgia. College of Agricultural and Environmental Sciences'},\n", + " {'name': 'Agricultural education--Georgia'},\n", + " {'name': 'Views--Georgia--Clarke County'}],\n", + " 'title': ['Foxes'],\n", + " 'type': ['image']}},\n", + " {'@context': 'http://dp.la/api/items/context',\n", + " '@id': 'http://dp.la/api/items/0bf7ddb085f9b36304cf778d8cd55c1f',\n", + " '@type': 'ore:Aggregation',\n", + " 'aggregatedCHO': '#sourceResource',\n", + " 'dataProvider': {'@id': 'http://dp.la/api/contributor/hargrett-library',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q55075345'],\n", + " 'name': 'Hargrett Library'},\n", + " 'id': '0bf7ddb085f9b36304cf778d8cd55c1f',\n", + " 'iiifManifest': 'https://dlg.usg.edu/record/guan_caes_0004-001-015-094-010/presentation/manifest.json',\n", + " 'ingestDate': '2025-01-02T18:46:26.716Z',\n", + " 'ingestType': 'item',\n", + " 'isShownAt': 'https://dlg.usg.edu/record/guan_caes_0004-001-015-094-010',\n", + " 'object': 'https://dlg.galileo.usg.edu/do-th:guan_caes_0004-001-015-094-010',\n", + " 'originalRecord': {'stringValue': '{\\n \"id\" : \"guan_caes_0004-001-015-094-010\",\\n \"collection_titles_sms\" : [ \"College of Agriculture and Environmental Sciences (CAES) Photograph Collection\" ],\\n \"dcterms_provenance_display\" : [ \"Hargrett Library\" ],\\n \"dcterms_title_display\" : [ \"Foxes\" ],\\n \"dcterms_creator_display\" : [ \"Bell\" ],\\n \"dcterms_subject_display\" : [ \"University of Georgia. College of Agricultural and Environmental Sciences\", \"Agricultural education--Georgia\", \"Views--Georgia--Clarke County\" ],\\n \"dcterms_description_display\" : [ \"Miscellaneous\", \"Wildlife;This item has been aggregated as part of the Association of Southeastern Research Libraries (ASERL)\\'s \\\\\"Deeply Rooted: The Agricultural Rural History of the American South\\\\\" project.\" ],\\n \"edm_is_shown_at_display\" : [ \"https://dlg.usg.edu/record/guan_caes_0004-001-015-094-010\" ],\\n \"edm_is_shown_by_display\" : [ \"https://dlg.usg.edu/record/guan_caes_0004-001-015-094-010#item\" ],\\n \"dc_date_display\" : [ \"1965-05-13\" ],\\n \"dc_format_display\" : [ \"image/jpeg\" ],\\n \"dcterms_is_part_of_display\" : [ \"College of Agriculture and Environmental Sciences (CAES) Photograph Collection, University Archives, Hargrett Library, University of Georgia, Athens, Georgia\" ],\\n \"dc_right_display\" : [ \"http://rightsstatements.org/vocab/InC/1.0/\" ],\\n \"dcterms_bibliographic_citation_display\" : [ \"College of Agricultural and Environmental Sciences Photograph Collection, UA0004. University of Georgia Archives, Hargrett Rare Book and Manuscript Library, University of Georgia Libraries.\" ],\\n \"dc_relation_display\" : [ \"Deeply Rooted\" ],\\n \"dcterms_type_display\" : [ \"StillImage\" ],\\n \"dcterms_medium_display\" : [ \"photographs\" ],\\n \"dcterms_language_display\" : [ \"eng\" ],\\n \"created_at_dts\" : \"2017-05-26T07:53:00Z\",\\n \"updated_at_dts\" : \"2022-04-14T23:04:08Z\",\\n \"iiif_manifest_url_ss\" : \"https://dlg.usg.edu/record/guan_caes_0004-001-015-094-010/presentation/manifest.json\",\\n \"dcterms_spatial_display\" : [ {\\n \"names\" : [ \"United States\", \"Georgia\", \"Clarke County\" ],\\n \"coordinates\" : \"33.95117, -83.36733\",\\n \"uri\" : \"geonames.org/4188191\"\\n } ]\\n}'},\n", + " 'provider': {'@id': 'http://dp.la/api/contributor/dlg',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q5275908'],\n", + " 'name': 'Digital Library of Georgia'},\n", + " 'rights': 'http://rightsstatements.org/vocab/InC/1.0/',\n", + " 'rightsCategory': 'Permission or Fair Use',\n", + " 'sourceResource': {'@id': 'http://dp.la/api/items/0bf7ddb085f9b36304cf778d8cd55c1f#SourceResource',\n", + " 'collection': [{'title': 'College of Agriculture and Environmental Sciences (CAES) Photograph Collection'}],\n", + " 'creator': ['Bell'],\n", + " 'date': [{'displayDate': '1965-05-13'}],\n", + " 'description': ['Miscellaneous',\n", + " 'Wildlife;This item has been aggregated as part of the Association of Southeastern Research Libraries (ASERL)\\'s \"Deeply Rooted: The Agricultural Rural History of the American South\" project.'],\n", + " 'language': [{'iso639_3': 'English', 'name': 'English'}],\n", + " 'relation': ['Deeply Rooted'],\n", + " 'spatial': [{'name': 'United States'},\n", + " {'name': 'Georgia'},\n", + " {'coordinates': '33.95117, -83.36733', 'name': 'Clarke County'}],\n", + " 'subject': [{'name': 'University of Georgia. College of Agricultural and Environmental Sciences'},\n", + " {'name': 'Agricultural education--Georgia'},\n", + " {'name': 'Views--Georgia--Clarke County'}],\n", + " 'title': ['Foxes'],\n", + " 'type': ['image']}},\n", + " {'@context': 'http://dp.la/api/items/context',\n", + " '@id': 'http://dp.la/api/items/270fa495f34d485320713f00a917458a',\n", + " '@type': 'ore:Aggregation',\n", + " 'aggregatedCHO': '#sourceResource',\n", + " 'dataProvider': {'@id': 'http://dp.la/api/contributor/hargrett-library',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q55075345'],\n", + " 'name': 'Hargrett Library'},\n", + " 'id': '270fa495f34d485320713f00a917458a',\n", + " 'iiifManifest': 'https://dlg.usg.edu/record/guan_caes_0004-001-015-094-006/presentation/manifest.json',\n", + " 'ingestDate': '2025-01-02T18:46:26.716Z',\n", + " 'ingestType': 'item',\n", + " 'isShownAt': 'https://dlg.usg.edu/record/guan_caes_0004-001-015-094-006',\n", + " 'object': 'https://dlg.galileo.usg.edu/do-th:guan_caes_0004-001-015-094-006',\n", + " 'originalRecord': {'stringValue': '{\\n \"id\" : \"guan_caes_0004-001-015-094-006\",\\n \"collection_titles_sms\" : [ \"College of Agriculture and Environmental Sciences (CAES) Photograph Collection\" ],\\n \"dcterms_provenance_display\" : [ \"Hargrett Library\" ],\\n \"dcterms_title_display\" : [ \"Foxes\" ],\\n \"dcterms_creator_display\" : [ \"Bell\" ],\\n \"dcterms_subject_display\" : [ \"University of Georgia. College of Agricultural and Environmental Sciences\", \"Agricultural education--Georgia\", \"Views--Georgia--Clarke County\" ],\\n \"dcterms_description_display\" : [ \"Miscellaneous\", \"Wildlife;This item has been aggregated as part of the Association of Southeastern Research Libraries (ASERL)\\'s \\\\\"Deeply Rooted: The Agricultural Rural History of the American South\\\\\" project.\" ],\\n \"edm_is_shown_at_display\" : [ \"https://dlg.usg.edu/record/guan_caes_0004-001-015-094-006\" ],\\n \"edm_is_shown_by_display\" : [ \"https://dlg.usg.edu/record/guan_caes_0004-001-015-094-006#item\" ],\\n \"dc_date_display\" : [ \"1965-05-13\" ],\\n \"dc_format_display\" : [ \"image/jpeg\" ],\\n \"dcterms_is_part_of_display\" : [ \"College of Agriculture and Environmental Sciences (CAES) Photograph Collection, University Archives, Hargrett Library, University of Georgia, Athens, Georgia\" ],\\n \"dc_right_display\" : [ \"http://rightsstatements.org/vocab/InC/1.0/\" ],\\n \"dcterms_bibliographic_citation_display\" : [ \"College of Agricultural and Environmental Sciences Photograph Collection, UA0004. University of Georgia Archives, Hargrett Rare Book and Manuscript Library, University of Georgia Libraries.\" ],\\n \"dc_relation_display\" : [ \"Deeply Rooted\" ],\\n \"dcterms_type_display\" : [ \"StillImage\" ],\\n \"dcterms_medium_display\" : [ \"photographs\" ],\\n \"dcterms_language_display\" : [ \"eng\" ],\\n \"created_at_dts\" : \"2017-05-26T07:53:00Z\",\\n \"updated_at_dts\" : \"2022-04-14T23:04:05Z\",\\n \"iiif_manifest_url_ss\" : \"https://dlg.usg.edu/record/guan_caes_0004-001-015-094-006/presentation/manifest.json\",\\n \"dcterms_spatial_display\" : [ {\\n \"names\" : [ \"United States\", \"Georgia\", \"Clarke County\" ],\\n \"coordinates\" : \"33.95117, -83.36733\",\\n \"uri\" : \"geonames.org/4188191\"\\n } ]\\n}'},\n", + " 'provider': {'@id': 'http://dp.la/api/contributor/dlg',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q5275908'],\n", + " 'name': 'Digital Library of Georgia'},\n", + " 'rights': 'http://rightsstatements.org/vocab/InC/1.0/',\n", + " 'rightsCategory': 'Permission or Fair Use',\n", + " 'sourceResource': {'@id': 'http://dp.la/api/items/270fa495f34d485320713f00a917458a#SourceResource',\n", + " 'collection': [{'title': 'College of Agriculture and Environmental Sciences (CAES) Photograph Collection'}],\n", + " 'creator': ['Bell'],\n", + " 'date': [{'displayDate': '1965-05-13'}],\n", + " 'description': ['Miscellaneous',\n", + " 'Wildlife;This item has been aggregated as part of the Association of Southeastern Research Libraries (ASERL)\\'s \"Deeply Rooted: The Agricultural Rural History of the American South\" project.'],\n", + " 'language': [{'iso639_3': 'English', 'name': 'English'}],\n", + " 'relation': ['Deeply Rooted'],\n", + " 'spatial': [{'name': 'United States'},\n", + " {'name': 'Georgia'},\n", + " {'coordinates': '33.95117, -83.36733', 'name': 'Clarke County'}],\n", + " 'subject': [{'name': 'University of Georgia. College of Agricultural and Environmental Sciences'},\n", + " {'name': 'Agricultural education--Georgia'},\n", + " {'name': 'Views--Georgia--Clarke County'}],\n", + " 'title': ['Foxes'],\n", + " 'type': ['image']}},\n", + " {'@context': 'http://dp.la/api/items/context',\n", + " '@id': 'http://dp.la/api/items/6e6c2f23dc070cb5a448573f0de1ea7b',\n", + " '@type': 'ore:Aggregation',\n", + " 'aggregatedCHO': '#sourceResource',\n", + " 'dataProvider': {'@id': 'http://dp.la/api/contributor/hargrett-library',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q55075345'],\n", + " 'name': 'Hargrett Library'},\n", + " 'id': '6e6c2f23dc070cb5a448573f0de1ea7b',\n", + " 'iiifManifest': 'https://dlg.usg.edu/record/guan_caes_0004-001-015-094-009/presentation/manifest.json',\n", + " 'ingestDate': '2025-01-02T18:46:26.716Z',\n", + " 'ingestType': 'item',\n", + " 'isShownAt': 'https://dlg.usg.edu/record/guan_caes_0004-001-015-094-009',\n", + " 'object': 'https://dlg.galileo.usg.edu/do-th:guan_caes_0004-001-015-094-009',\n", + " 'originalRecord': {'stringValue': '{\\n \"id\" : \"guan_caes_0004-001-015-094-009\",\\n \"collection_titles_sms\" : [ \"College of Agriculture and Environmental Sciences (CAES) Photograph Collection\" ],\\n \"dcterms_provenance_display\" : [ \"Hargrett Library\" ],\\n \"dcterms_title_display\" : [ \"Foxes\" ],\\n \"dcterms_creator_display\" : [ \"Bell\" ],\\n \"dcterms_subject_display\" : [ \"University of Georgia. College of Agricultural and Environmental Sciences\", \"Agricultural education--Georgia\", \"Views--Georgia--Clarke County\" ],\\n \"dcterms_description_display\" : [ \"Miscellaneous\", \"Wildlife;This item has been aggregated as part of the Association of Southeastern Research Libraries (ASERL)\\'s \\\\\"Deeply Rooted: The Agricultural Rural History of the American South\\\\\" project.\" ],\\n \"edm_is_shown_at_display\" : [ \"https://dlg.usg.edu/record/guan_caes_0004-001-015-094-009\" ],\\n \"edm_is_shown_by_display\" : [ \"https://dlg.usg.edu/record/guan_caes_0004-001-015-094-009#item\" ],\\n \"dc_date_display\" : [ \"1965-05-13\" ],\\n \"dc_format_display\" : [ \"image/jpeg\" ],\\n \"dcterms_is_part_of_display\" : [ \"College of Agriculture and Environmental Sciences (CAES) Photograph Collection, University Archives, Hargrett Library, University of Georgia, Athens, Georgia\" ],\\n \"dc_right_display\" : [ \"http://rightsstatements.org/vocab/InC/1.0/\" ],\\n \"dcterms_bibliographic_citation_display\" : [ \"College of Agricultural and Environmental Sciences Photograph Collection, UA0004. University of Georgia Archives, Hargrett Rare Book and Manuscript Library, University of Georgia Libraries.\" ],\\n \"dc_relation_display\" : [ \"Deeply Rooted\" ],\\n \"dcterms_type_display\" : [ \"StillImage\" ],\\n \"dcterms_medium_display\" : [ \"photographs\" ],\\n \"dcterms_language_display\" : [ \"eng\" ],\\n \"created_at_dts\" : \"2017-05-26T07:53:00Z\",\\n \"updated_at_dts\" : \"2022-04-14T23:04:07Z\",\\n \"iiif_manifest_url_ss\" : \"https://dlg.usg.edu/record/guan_caes_0004-001-015-094-009/presentation/manifest.json\",\\n \"dcterms_spatial_display\" : [ {\\n \"names\" : [ \"United States\", \"Georgia\", \"Clarke County\" ],\\n \"coordinates\" : \"33.95117, -83.36733\",\\n \"uri\" : \"geonames.org/4188191\"\\n } ]\\n}'},\n", + " 'provider': {'@id': 'http://dp.la/api/contributor/dlg',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q5275908'],\n", + " 'name': 'Digital Library of Georgia'},\n", + " 'rights': 'http://rightsstatements.org/vocab/InC/1.0/',\n", + " 'rightsCategory': 'Permission or Fair Use',\n", + " 'sourceResource': {'@id': 'http://dp.la/api/items/6e6c2f23dc070cb5a448573f0de1ea7b#SourceResource',\n", + " 'collection': [{'title': 'College of Agriculture and Environmental Sciences (CAES) Photograph Collection'}],\n", + " 'creator': ['Bell'],\n", + " 'date': [{'displayDate': '1965-05-13'}],\n", + " 'description': ['Miscellaneous',\n", + " 'Wildlife;This item has been aggregated as part of the Association of Southeastern Research Libraries (ASERL)\\'s \"Deeply Rooted: The Agricultural Rural History of the American South\" project.'],\n", + " 'language': [{'iso639_3': 'English', 'name': 'English'}],\n", + " 'relation': ['Deeply Rooted'],\n", + " 'spatial': [{'name': 'United States'},\n", + " {'name': 'Georgia'},\n", + " {'coordinates': '33.95117, -83.36733', 'name': 'Clarke County'}],\n", + " 'subject': [{'name': 'University of Georgia. College of Agricultural and Environmental Sciences'},\n", + " {'name': 'Agricultural education--Georgia'},\n", + " {'name': 'Views--Georgia--Clarke County'}],\n", + " 'title': ['Foxes'],\n", + " 'type': ['image']}},\n", + " {'@context': 'http://dp.la/api/items/context',\n", + " '@id': 'http://dp.la/api/items/c91980a4d2cf9c3c3199b7b10661c8d4',\n", + " '@type': 'ore:Aggregation',\n", + " 'aggregatedCHO': '#sourceResource',\n", + " 'dataProvider': {'@id': 'http://dp.la/api/contributor/hargrett-library',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q55075345'],\n", + " 'name': 'Hargrett Library'},\n", + " 'id': 'c91980a4d2cf9c3c3199b7b10661c8d4',\n", + " 'iiifManifest': 'https://dlg.usg.edu/record/guan_caes_0004-001-015-094-012/presentation/manifest.json',\n", + " 'ingestDate': '2025-01-02T18:46:26.716Z',\n", + " 'ingestType': 'item',\n", + " 'isShownAt': 'https://dlg.usg.edu/record/guan_caes_0004-001-015-094-012',\n", + " 'object': 'https://dlg.galileo.usg.edu/do-th:guan_caes_0004-001-015-094-012',\n", + " 'originalRecord': {'stringValue': '{\\n \"id\" : \"guan_caes_0004-001-015-094-012\",\\n \"collection_titles_sms\" : [ \"College of Agriculture and Environmental Sciences (CAES) Photograph Collection\" ],\\n \"dcterms_provenance_display\" : [ \"Hargrett Library\" ],\\n \"dcterms_title_display\" : [ \"Foxes\" ],\\n \"dcterms_creator_display\" : [ \"Bell\" ],\\n \"dcterms_subject_display\" : [ \"University of Georgia. College of Agricultural and Environmental Sciences\", \"Agricultural education--Georgia\", \"Views--Georgia--Clarke County\" ],\\n \"dcterms_description_display\" : [ \"Miscellaneous\", \"Wildlife;This item has been aggregated as part of the Association of Southeastern Research Libraries (ASERL)\\'s \\\\\"Deeply Rooted: The Agricultural Rural History of the American South\\\\\" project.\" ],\\n \"edm_is_shown_at_display\" : [ \"https://dlg.usg.edu/record/guan_caes_0004-001-015-094-012\" ],\\n \"edm_is_shown_by_display\" : [ \"https://dlg.usg.edu/record/guan_caes_0004-001-015-094-012#item\" ],\\n \"dc_date_display\" : [ \"1965-05-13\" ],\\n \"dc_format_display\" : [ \"image/jpeg\" ],\\n \"dcterms_is_part_of_display\" : [ \"College of Agriculture and Environmental Sciences (CAES) Photograph Collection, University Archives, Hargrett Library, University of Georgia, Athens, Georgia\" ],\\n \"dc_right_display\" : [ \"http://rightsstatements.org/vocab/InC/1.0/\" ],\\n \"dcterms_bibliographic_citation_display\" : [ \"College of Agricultural and Environmental Sciences Photograph Collection, UA0004. University of Georgia Archives, Hargrett Rare Book and Manuscript Library, University of Georgia Libraries.\" ],\\n \"dc_relation_display\" : [ \"Deeply Rooted\" ],\\n \"dcterms_type_display\" : [ \"StillImage\" ],\\n \"dcterms_medium_display\" : [ \"photographs\" ],\\n \"dcterms_language_display\" : [ \"eng\" ],\\n \"created_at_dts\" : \"2017-05-26T07:53:00Z\",\\n \"updated_at_dts\" : \"2022-04-14T23:04:09Z\",\\n \"iiif_manifest_url_ss\" : \"https://dlg.usg.edu/record/guan_caes_0004-001-015-094-012/presentation/manifest.json\",\\n \"dcterms_spatial_display\" : [ {\\n \"names\" : [ \"United States\", \"Georgia\", \"Clarke County\" ],\\n \"coordinates\" : \"33.95117, -83.36733\",\\n \"uri\" : \"geonames.org/4188191\"\\n } ]\\n}'},\n", + " 'provider': {'@id': 'http://dp.la/api/contributor/dlg',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q5275908'],\n", + " 'name': 'Digital Library of Georgia'},\n", + " 'rights': 'http://rightsstatements.org/vocab/InC/1.0/',\n", + " 'rightsCategory': 'Permission or Fair Use',\n", + " 'sourceResource': {'@id': 'http://dp.la/api/items/c91980a4d2cf9c3c3199b7b10661c8d4#SourceResource',\n", + " 'collection': [{'title': 'College of Agriculture and Environmental Sciences (CAES) Photograph Collection'}],\n", + " 'creator': ['Bell'],\n", + " 'date': [{'displayDate': '1965-05-13'}],\n", + " 'description': ['Miscellaneous',\n", + " 'Wildlife;This item has been aggregated as part of the Association of Southeastern Research Libraries (ASERL)\\'s \"Deeply Rooted: The Agricultural Rural History of the American South\" project.'],\n", + " 'language': [{'iso639_3': 'English', 'name': 'English'}],\n", + " 'relation': ['Deeply Rooted'],\n", + " 'spatial': [{'name': 'United States'},\n", + " {'name': 'Georgia'},\n", + " {'coordinates': '33.95117, -83.36733', 'name': 'Clarke County'}],\n", + " 'subject': [{'name': 'University of Georgia. College of Agricultural and Environmental Sciences'},\n", + " {'name': 'Agricultural education--Georgia'},\n", + " {'name': 'Views--Georgia--Clarke County'}],\n", + " 'title': ['Foxes'],\n", + " 'type': ['image']}}],\n", + " 'facets': [],\n", + " 'limit': 10,\n", + " 'start': 1}" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "my_query = \"foxes\"\n", + "my_url = f\"https://api.dp.la/v2/items?q={my_query}&api_key={DPLA_API_KEY}\"\n", + "\n", + "response = requests.get(my_url)\n", + "\n", + "parsed_response = response.json()\n", + "parsed_response" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "You could even write a function that puts constructs the request URL and returns the parsed response so that you don't have to do these things manually over and over again." + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "def make_dpla_request(query: str):\n", + " url = f\"https://api.dp.la/v2/items?q={query}&api_key={DPLA_API_KEY}\"\n", + " response = requests.get(url)\n", + "\n", + " return response.json()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "There's a problem with this code, however. What happens if you try to make a request with a query that contains spaces, such as `\"red foxes\"`?\n", + "\n", + "Can you find the appropriate workaround using the documentation? https://pro.dp.la/developers/requests\n", + "\n", + "What other features does this API support?" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'count': 138,\n", + " 'docs': [{'@context': 'http://dp.la/api/items/context',\n", + " '@id': 'http://dp.la/api/items/d9dd4dc15414b61176ea5400aae31089',\n", + " '@type': 'ore:Aggregation',\n", + " 'aggregatedCHO': '#sourceResource',\n", + " 'dataProvider': {'@id': 'http://dp.la/api/contributor/missouri-state-archives-through-missouri-digital-heritage',\n", + " 'name': 'Missouri State Archives through Missouri Digital Heritage'},\n", + " 'id': 'd9dd4dc15414b61176ea5400aae31089',\n", + " 'iiifManifest': 'http://cdm16795.contentdm.oclc.org/iiif/info/p16795coll24/4146/manifest.json',\n", + " 'ingestDate': '2025-01-02T21:39:04.590Z',\n", + " 'ingestType': 'item',\n", + " 'isShownAt': 'http://cdm16795.contentdm.oclc.org/cdm/ref/collection/p16795coll24/id/4146',\n", + " 'object': 'http://cdm16795.contentdm.oclc.org/utils/getthumbnail/collection/p16795coll24/id/4146',\n", + " 'originalRecord': {'stringValue': '{\\n \"@context\" : \"http://dp.la/api/items/context\",\\n \"isShownAt\" : \"http://cdm16795.contentdm.oclc.org/cdm/ref/collection/p16795coll24/id/4146\",\\n \"dataProvider\" : \"Missouri State Archives through Missouri Digital Heritage\",\\n \"@type\" : \"ore:Aggregation\",\\n \"hasView\" : {\\n \"@id\" : \"http://cdm16795.contentdm.oclc.org/cdm/ref/collection/p16795coll24/id/4146\"\\n },\\n \"provider\" : {\\n \"@id\" : \"http://dp.la/api/contributor/missouri-hub\",\\n \"name\" : \"Missouri Hub\"\\n },\\n \"object\" : \"http://cdm16795.contentdm.oclc.org/utils/getthumbnail/collection/p16795coll24/id/4146\",\\n \"aggregatedCHO\" : \"#sourceResource\",\\n \"sourceResource\" : {\\n \"title\" : [ \"Red Foxes\" ],\\n \"description\" : [ \"A young red fox ventures out of its den.\" ],\\n \"subject\" : [ {\\n \"name\" : \"Mammals\"\\n }, {\\n \"name\" : \"Omnivores\"\\n }, {\\n \"name\" : \"Red fox\"\\n }, {\\n \"name\" : \"Vulpes vulpes\"\\n }, {\\n \"name\" : \"Wild canines\"\\n }, {\\n \"name\" : \"Canids\"\\n }, {\\n \"name\" : \"Kits\"\\n }, {\\n \"name\" : \"Missouri, United States\"\\n } ],\\n \"temporal\" : [ {\\n \"displayDate\" : \"n.d.\"\\n } ],\\n \"identifier\" : [ \"http://cdm16795.contentdm.oclc.org/cdm/ref/collection/p16795coll24/id/4146\" ],\\n \"creator\" : [ \"Wooldridge, Don\" ],\\n \"language\" : [ {\\n \"iso639_3\" : \"eng\",\\n \"name\" : \"English\"\\n } ],\\n \"rights\" : \"Public domain. Items reproduced for publication should carry the credit line: Courtesy of the Missouri State Archives, RG103 Department of Conservation Photograph Collection.\",\\n \"@id\" : \"oai:cdm16795.contentdm.oclc.org:p16795coll24/4146\",\\n \"format\" : \"\"\\n },\\n \"@id\" : \"missouri--urn:data.mohistory.org:mdh_all:oai:cdm16795.contentdm.oclc.org:p16795coll24/4146\",\\n \"iiifManifest\" : \"http://cdm16795.contentdm.oclc.org/iiif/info/p16795coll24/4146/manifest.json\"\\n}'},\n", + " 'provider': {'@id': 'http://dp.la/api/contributor/heartland-hub',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q83878488'],\n", + " 'name': 'Heartland Hub'},\n", + " 'rightsCategory': 'Unspecified Rights Status',\n", + " 'sourceResource': {'@id': 'http://dp.la/api/items/d9dd4dc15414b61176ea5400aae31089#SourceResource',\n", + " 'creator': ['Wooldridge, Don'],\n", + " 'date': [{'displayDate': 'n.d.'}],\n", + " 'description': ['A young red fox ventures out of its den.'],\n", + " 'identifier': ['http://cdm16795.contentdm.oclc.org/cdm/ref/collection/p16795coll24/id/4146'],\n", + " 'language': [{'iso639_3': 'English', 'name': 'English'}],\n", + " 'rights': ['Public domain. Items reproduced for publication should carry the credit line: Courtesy of the Missouri State Archives, RG103 Department of Conservation Photograph Collection.'],\n", + " 'subject': [{'name': 'Mammals'},\n", + " {'name': 'Omnivores'},\n", + " {'name': 'Red fox'},\n", + " {'name': 'Vulpes vulpes'},\n", + " {'name': 'Wild canines'},\n", + " {'name': 'Canids'},\n", + " {'name': 'Kits'},\n", + " {'name': 'Missouri, United States'}],\n", + " 'title': ['Red Foxes']}},\n", + " {'@context': 'http://dp.la/api/items/context',\n", + " '@id': 'http://dp.la/api/items/a1869179a15cda600e6c231024ec2218',\n", + " '@type': 'ore:Aggregation',\n", + " 'aggregatedCHO': '#sourceResource',\n", + " 'dataProvider': {'@id': 'http://dp.la/api/contributor/missouri-state-archives-through-missouri-digital-heritage',\n", + " 'name': 'Missouri State Archives through Missouri Digital Heritage'},\n", + " 'id': 'a1869179a15cda600e6c231024ec2218',\n", + " 'iiifManifest': 'http://cdm16795.contentdm.oclc.org/iiif/info/p16795coll24/4087/manifest.json',\n", + " 'ingestDate': '2025-01-02T21:39:04.590Z',\n", + " 'ingestType': 'item',\n", + " 'isShownAt': 'http://cdm16795.contentdm.oclc.org/cdm/ref/collection/p16795coll24/id/4087',\n", + " 'object': 'http://cdm16795.contentdm.oclc.org/utils/getthumbnail/collection/p16795coll24/id/4087',\n", + " 'originalRecord': {'stringValue': '{\\n \"@context\" : \"http://dp.la/api/items/context\",\\n \"isShownAt\" : \"http://cdm16795.contentdm.oclc.org/cdm/ref/collection/p16795coll24/id/4087\",\\n \"dataProvider\" : \"Missouri State Archives through Missouri Digital Heritage\",\\n \"@type\" : \"ore:Aggregation\",\\n \"hasView\" : {\\n \"@id\" : \"http://cdm16795.contentdm.oclc.org/cdm/ref/collection/p16795coll24/id/4087\"\\n },\\n \"provider\" : {\\n \"@id\" : \"http://dp.la/api/contributor/missouri-hub\",\\n \"name\" : \"Missouri Hub\"\\n },\\n \"object\" : \"http://cdm16795.contentdm.oclc.org/utils/getthumbnail/collection/p16795coll24/id/4087\",\\n \"aggregatedCHO\" : \"#sourceResource\",\\n \"sourceResource\" : {\\n \"title\" : [ \"Red Foxes\" ],\\n \"description\" : [ \"A young red fox sits alone in a plowed farm field near its den.\" ],\\n \"subject\" : [ {\\n \"name\" : \"Mammals\"\\n }, {\\n \"name\" : \"Omnivores\"\\n }, {\\n \"name\" : \"Red fox\"\\n }, {\\n \"name\" : \"Vulpes vulpes\"\\n }, {\\n \"name\" : \"Wild canines\"\\n }, {\\n \"name\" : \"Canids\"\\n }, {\\n \"name\" : \"Kits\"\\n }, {\\n \"name\" : \"Treloar, Warren County, Missouri, United States\"\\n } ],\\n \"temporal\" : [ {\\n \"displayDate\" : \"5/15/1948\"\\n } ],\\n \"identifier\" : [ \"http://cdm16795.contentdm.oclc.org/cdm/ref/collection/p16795coll24/id/4087\" ],\\n \"creator\" : [ \"Schmidt, Rex Gary\" ],\\n \"language\" : [ {\\n \"iso639_3\" : \"eng\",\\n \"name\" : \"English\"\\n } ],\\n \"rights\" : \"Public domain. Items reproduced for publication should carry the credit line: Courtesy of the Missouri State Archives, RG103 Department of Conservation Photograph Collection.\",\\n \"@id\" : \"oai:cdm16795.contentdm.oclc.org:p16795coll24/4087\",\\n \"format\" : \"\"\\n },\\n \"@id\" : \"missouri--urn:data.mohistory.org:mdh_all:oai:cdm16795.contentdm.oclc.org:p16795coll24/4087\",\\n \"iiifManifest\" : \"http://cdm16795.contentdm.oclc.org/iiif/info/p16795coll24/4087/manifest.json\"\\n}'},\n", + " 'provider': {'@id': 'http://dp.la/api/contributor/heartland-hub',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q83878488'],\n", + " 'name': 'Heartland Hub'},\n", + " 'rightsCategory': 'Unspecified Rights Status',\n", + " 'sourceResource': {'@id': 'http://dp.la/api/items/a1869179a15cda600e6c231024ec2218#SourceResource',\n", + " 'creator': ['Schmidt, Rex Gary'],\n", + " 'date': [{'displayDate': '5/15/1948'}],\n", + " 'description': ['A young red fox sits alone in a plowed farm field near its den.'],\n", + " 'identifier': ['http://cdm16795.contentdm.oclc.org/cdm/ref/collection/p16795coll24/id/4087'],\n", + " 'language': [{'iso639_3': 'English', 'name': 'English'}],\n", + " 'rights': ['Public domain. Items reproduced for publication should carry the credit line: Courtesy of the Missouri State Archives, RG103 Department of Conservation Photograph Collection.'],\n", + " 'subject': [{'name': 'Mammals'},\n", + " {'name': 'Omnivores'},\n", + " {'name': 'Red fox'},\n", + " {'name': 'Vulpes vulpes'},\n", + " {'name': 'Wild canines'},\n", + " {'name': 'Canids'},\n", + " {'name': 'Kits'},\n", + " {'name': 'Treloar, Warren County, Missouri, United States'}],\n", + " 'title': ['Red Foxes']}},\n", + " {'@context': 'http://dp.la/api/items/context',\n", + " '@id': 'http://dp.la/api/items/7b48cc4977d683c99bbfd73a32dd16c9',\n", + " '@type': 'ore:Aggregation',\n", + " 'aggregatedCHO': '#sourceResource',\n", + " 'dataProvider': {'@id': 'http://dp.la/api/contributor/missouri-state-archives-through-missouri-digital-heritage',\n", + " 'name': 'Missouri State Archives through Missouri Digital Heritage'},\n", + " 'id': '7b48cc4977d683c99bbfd73a32dd16c9',\n", + " 'iiifManifest': 'http://cdm16795.contentdm.oclc.org/iiif/info/p16795coll24/4467/manifest.json',\n", + " 'ingestDate': '2025-01-02T21:39:04.590Z',\n", + " 'ingestType': 'item',\n", + " 'isShownAt': 'http://cdm16795.contentdm.oclc.org/cdm/ref/collection/p16795coll24/id/4467',\n", + " 'object': 'http://cdm16795.contentdm.oclc.org/utils/getthumbnail/collection/p16795coll24/id/4467',\n", + " 'originalRecord': {'stringValue': '{\\n \"@context\" : \"http://dp.la/api/items/context\",\\n \"isShownAt\" : \"http://cdm16795.contentdm.oclc.org/cdm/ref/collection/p16795coll24/id/4467\",\\n \"dataProvider\" : \"Missouri State Archives through Missouri Digital Heritage\",\\n \"@type\" : \"ore:Aggregation\",\\n \"hasView\" : {\\n \"@id\" : \"http://cdm16795.contentdm.oclc.org/cdm/ref/collection/p16795coll24/id/4467\"\\n },\\n \"provider\" : {\\n \"@id\" : \"http://dp.la/api/contributor/missouri-hub\",\\n \"name\" : \"Missouri Hub\"\\n },\\n \"object\" : \"http://cdm16795.contentdm.oclc.org/utils/getthumbnail/collection/p16795coll24/id/4467\",\\n \"aggregatedCHO\" : \"#sourceResource\",\\n \"sourceResource\" : {\\n \"title\" : [ \"Red Foxes\" ],\\n \"description\" : [ \"Two young red foxes venture out of their den in the woods.\" ],\\n \"subject\" : [ {\\n \"name\" : \"Mammals\"\\n }, {\\n \"name\" : \"Omnivores\"\\n }, {\\n \"name\" : \"Red fox\"\\n }, {\\n \"name\" : \"Vulpes vulpes\"\\n }, {\\n \"name\" : \"Wild canines\"\\n }, {\\n \"name\" : \"Canids\"\\n }, {\\n \"name\" : \"Kits\"\\n }, {\\n \"name\" : \"Missouri, United States\"\\n } ],\\n \"temporal\" : [ {\\n \"displayDate\" : \"n.d.\"\\n } ],\\n \"identifier\" : [ \"http://cdm16795.contentdm.oclc.org/cdm/ref/collection/p16795coll24/id/4467\" ],\\n \"creator\" : [ \"Wooldridge, Don\" ],\\n \"language\" : [ {\\n \"iso639_3\" : \"eng\",\\n \"name\" : \"English\"\\n } ],\\n \"rights\" : \"Public domain. Items reproduced for publication should carry the credit line: Courtesy of the Missouri State Archives, RG103 Department of Conservation Photograph Collection.\",\\n \"@id\" : \"oai:cdm16795.contentdm.oclc.org:p16795coll24/4467\",\\n \"format\" : \"\"\\n },\\n \"@id\" : \"missouri--urn:data.mohistory.org:mdh_all:oai:cdm16795.contentdm.oclc.org:p16795coll24/4467\",\\n \"iiifManifest\" : \"http://cdm16795.contentdm.oclc.org/iiif/info/p16795coll24/4467/manifest.json\"\\n}'},\n", + " 'provider': {'@id': 'http://dp.la/api/contributor/heartland-hub',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q83878488'],\n", + " 'name': 'Heartland Hub'},\n", + " 'rightsCategory': 'Unspecified Rights Status',\n", + " 'sourceResource': {'@id': 'http://dp.la/api/items/7b48cc4977d683c99bbfd73a32dd16c9#SourceResource',\n", + " 'creator': ['Wooldridge, Don'],\n", + " 'date': [{'displayDate': 'n.d.'}],\n", + " 'description': ['Two young red foxes venture out of their den in the woods.'],\n", + " 'identifier': ['http://cdm16795.contentdm.oclc.org/cdm/ref/collection/p16795coll24/id/4467'],\n", + " 'language': [{'iso639_3': 'English', 'name': 'English'}],\n", + " 'rights': ['Public domain. Items reproduced for publication should carry the credit line: Courtesy of the Missouri State Archives, RG103 Department of Conservation Photograph Collection.'],\n", + " 'subject': [{'name': 'Mammals'},\n", + " {'name': 'Omnivores'},\n", + " {'name': 'Red fox'},\n", + " {'name': 'Vulpes vulpes'},\n", + " {'name': 'Wild canines'},\n", + " {'name': 'Canids'},\n", + " {'name': 'Kits'},\n", + " {'name': 'Missouri, United States'}],\n", + " 'title': ['Red Foxes']}},\n", + " {'@context': 'http://dp.la/api/items/context',\n", + " '@id': 'http://dp.la/api/items/5917d2cd44c455a5b75f58feabd48825',\n", + " '@type': 'ore:Aggregation',\n", + " 'aggregatedCHO': '#sourceResource',\n", + " 'dataProvider': {'name': 'Palisades Interstate Park Commission'},\n", + " 'id': '5917d2cd44c455a5b75f58feabd48825',\n", + " 'ingestDate': '2020-02-19T18:54:41.375Z',\n", + " 'ingestType': 'item',\n", + " 'intermediateProvider': 'Southeastern New York Library Resources Council',\n", + " 'isShownAt': 'https://www.hrvh.org/cdm/ref/collection/pipc/id/130',\n", + " 'object': 'https://www.hrvh.org/utils/getthumbnail/collection/pipc/id/130',\n", + " 'originalRecord': {'stringValue': '\\n
\\n oai:repox.ist.utl.pt:pipc:oai:www.hrvh.org:pipc/130\\n 2018-04-09\\n pipc\\n
\\n \\n \\n \\n Red foxes\\n \\n Tinted photo of two chained red foxes.\\n PIPC_25_Untitled-3_0061.jpg\\n \\n \\n https://www.hrvh.org/cdm/ref/collection/pipc/id/130\\n \\n \\n \\n \\n https://www.hrvh.org/utils/getthumbnail/collection/pipc/id/130\\n \\n \\n \\n No Copyright - United States\\n\\n \\n Lantern slides\\n \\n \\n Zoo animals\\n \\n \\n Foxes\\n \\n \\n Red fox\\n \\n \\n \\n Bear Mountain Trailside Museum, Palisades Interstate Park Commission\\n \\n \\n \\n
lantern slide
\\n 4 x 5 inches\\n image/jpeg\\n
\\n still image\\n \\n \\n Palisades Interstate Park Commission\\n \\n \\n \\n Southeastern New York Library Resources Council\\n \\n Palisades Interstate Park Commission\\n \\n \\n Lantern Slides\\n \\n \\n
\\n
\\n \\n \\n \\n https://www.hrvh.org/oai/oai.php\\n oai:www.hrvh.org:pipc/130\\n 2018-04-09\\n \\n http://www.openarchives.org/OAI/2.0/\\n \\n \\n\\n \\n
\\n'},\n", + " 'provider': {'@id': 'http://dp.la/api/contributor/esdn',\n", + " 'name': 'Empire State Digital Network'},\n", + " 'rights': 'http://rightsstatements.org/vocab/NoC-US/1.0/',\n", + " 'rightsCategory': 'Unlimited Re-Use',\n", + " 'sourceResource': {'@id': 'http://dp.la/api/items/5917d2cd44c455a5b75f58feabd48825#SourceResource',\n", + " 'collection': [{'title': 'Palisades Interstate Park Commission'}],\n", + " 'description': ['Tinted photo of two chained red foxes.'],\n", + " 'extent': ['4 x 5 inches'],\n", + " 'format': ['Lantern slide'],\n", + " 'identifier': ['PIPC_25_Untitled-3_0061.jpg'],\n", + " 'relation': ['Palisades Interstate Park Commission', 'Lantern Slides'],\n", + " 'subject': [{'name': 'Lantern slides'},\n", + " {'name': 'Zoo animals'},\n", + " {'name': 'Foxes'},\n", + " {'name': 'Red fox'},\n", + " {'name': 'Bear Mountain Trailside Museum, Palisades Interstate Park Commission'}],\n", + " 'title': ['Red foxes'],\n", + " 'type': ['image']}},\n", + " {'@context': 'http://dp.la/api/items/context',\n", + " '@id': 'http://dp.la/api/items/72234ee860f73d045b7a5b63c205feb1',\n", + " '@type': 'ore:Aggregation',\n", + " 'aggregatedCHO': '#sourceResource',\n", + " 'dataProvider': {'@id': 'http://dp.la/api/contributor/missouri-state-archives-through-missouri-digital-heritage',\n", + " 'name': 'Missouri State Archives through Missouri Digital Heritage'},\n", + " 'id': '72234ee860f73d045b7a5b63c205feb1',\n", + " 'iiifManifest': 'http://cdm16795.contentdm.oclc.org/iiif/info/p16795coll24/4172/manifest.json',\n", + " 'ingestDate': '2025-01-02T21:39:04.590Z',\n", + " 'ingestType': 'item',\n", + " 'isShownAt': 'http://cdm16795.contentdm.oclc.org/cdm/ref/collection/p16795coll24/id/4172',\n", + " 'object': 'http://cdm16795.contentdm.oclc.org/utils/getthumbnail/collection/p16795coll24/id/4172',\n", + " 'originalRecord': {'stringValue': '{\\n \"@context\" : \"http://dp.la/api/items/context\",\\n \"isShownAt\" : \"http://cdm16795.contentdm.oclc.org/cdm/ref/collection/p16795coll24/id/4172\",\\n \"dataProvider\" : \"Missouri State Archives through Missouri Digital Heritage\",\\n \"@type\" : \"ore:Aggregation\",\\n \"hasView\" : {\\n \"@id\" : \"http://cdm16795.contentdm.oclc.org/cdm/ref/collection/p16795coll24/id/4172\"\\n },\\n \"provider\" : {\\n \"@id\" : \"http://dp.la/api/contributor/missouri-hub\",\\n \"name\" : \"Missouri Hub\"\\n },\\n \"object\" : \"http://cdm16795.contentdm.oclc.org/utils/getthumbnail/collection/p16795coll24/id/4172\",\\n \"aggregatedCHO\" : \"#sourceResource\",\\n \"sourceResource\" : {\\n \"title\" : [ \"Red Foxes\" ],\\n \"description\" : [ \"A man holds a tiny, muddy red fox kit in his hand.\" ],\\n \"subject\" : [ {\\n \"name\" : \"Mammals\"\\n }, {\\n \"name\" : \"Omnivores\"\\n }, {\\n \"name\" : \"Red fox\"\\n }, {\\n \"name\" : \"Vulpes vulpes\"\\n }, {\\n \"name\" : \"Wild canines\"\\n }, {\\n \"name\" : \"Canids\"\\n }, {\\n \"name\" : \"Kits\"\\n }, {\\n \"name\" : \"Poplar Bluff, Butler County, Missouri, United States\"\\n } ],\\n \"temporal\" : [ {\\n \"displayDate\" : \"3/30/1947\"\\n } ],\\n \"identifier\" : [ \"http://cdm16795.contentdm.oclc.org/cdm/ref/collection/p16795coll24/id/4172\" ],\\n \"creator\" : [ \"Gamble, William C.\" ],\\n \"language\" : [ {\\n \"iso639_3\" : \"eng\",\\n \"name\" : \"English\"\\n } ],\\n \"rights\" : \"Public domain. Items reproduced for publication should carry the credit line: Courtesy of the Missouri State Archives, RG103 Department of Conservation Photograph Collection.\",\\n \"@id\" : \"oai:cdm16795.contentdm.oclc.org:p16795coll24/4172\",\\n \"format\" : \"\"\\n },\\n \"@id\" : \"missouri--urn:data.mohistory.org:mdh_all:oai:cdm16795.contentdm.oclc.org:p16795coll24/4172\",\\n \"iiifManifest\" : \"http://cdm16795.contentdm.oclc.org/iiif/info/p16795coll24/4172/manifest.json\"\\n}'},\n", + " 'provider': {'@id': 'http://dp.la/api/contributor/heartland-hub',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q83878488'],\n", + " 'name': 'Heartland Hub'},\n", + " 'rightsCategory': 'Unspecified Rights Status',\n", + " 'sourceResource': {'@id': 'http://dp.la/api/items/72234ee860f73d045b7a5b63c205feb1#SourceResource',\n", + " 'creator': ['Gamble, William C'],\n", + " 'date': [{'displayDate': '3/30/1947'}],\n", + " 'description': ['A man holds a tiny, muddy red fox kit in his hand.'],\n", + " 'identifier': ['http://cdm16795.contentdm.oclc.org/cdm/ref/collection/p16795coll24/id/4172'],\n", + " 'language': [{'iso639_3': 'English', 'name': 'English'}],\n", + " 'rights': ['Public domain. Items reproduced for publication should carry the credit line: Courtesy of the Missouri State Archives, RG103 Department of Conservation Photograph Collection.'],\n", + " 'subject': [{'name': 'Mammals'},\n", + " {'name': 'Omnivores'},\n", + " {'name': 'Red fox'},\n", + " {'name': 'Vulpes vulpes'},\n", + " {'name': 'Wild canines'},\n", + " {'name': 'Canids'},\n", + " {'name': 'Kits'},\n", + " {'name': 'Poplar Bluff, Butler County, Missouri, United States'}],\n", + " 'title': ['Red Foxes']}},\n", + " {'@context': 'http://dp.la/api/items/context',\n", + " '@id': 'http://dp.la/api/items/d52336e9af2a31ed282d3826b094b952',\n", + " '@type': 'ore:Aggregation',\n", + " 'aggregatedCHO': '#sourceResource',\n", + " 'dataProvider': {'@id': 'http://dp.la/api/contributor/missouri-state-archives-through-missouri-digital-heritage',\n", + " 'name': 'Missouri State Archives through Missouri Digital Heritage'},\n", + " 'id': 'd52336e9af2a31ed282d3826b094b952',\n", + " 'iiifManifest': 'http://cdm16795.contentdm.oclc.org/iiif/info/p16795coll24/4348/manifest.json',\n", + " 'ingestDate': '2025-01-02T21:39:04.590Z',\n", + " 'ingestType': 'item',\n", + " 'isShownAt': 'http://cdm16795.contentdm.oclc.org/cdm/ref/collection/p16795coll24/id/4348',\n", + " 'object': 'http://cdm16795.contentdm.oclc.org/utils/getthumbnail/collection/p16795coll24/id/4348',\n", + " 'originalRecord': {'stringValue': '{\\n \"@context\" : \"http://dp.la/api/items/context\",\\n \"isShownAt\" : \"http://cdm16795.contentdm.oclc.org/cdm/ref/collection/p16795coll24/id/4348\",\\n \"dataProvider\" : \"Missouri State Archives through Missouri Digital Heritage\",\\n \"@type\" : \"ore:Aggregation\",\\n \"hasView\" : {\\n \"@id\" : \"http://cdm16795.contentdm.oclc.org/cdm/ref/collection/p16795coll24/id/4348\"\\n },\\n \"provider\" : {\\n \"@id\" : \"http://dp.la/api/contributor/missouri-hub\",\\n \"name\" : \"Missouri Hub\"\\n },\\n \"object\" : \"http://cdm16795.contentdm.oclc.org/utils/getthumbnail/collection/p16795coll24/id/4348\",\\n \"aggregatedCHO\" : \"#sourceResource\",\\n \"sourceResource\" : {\\n \"title\" : [ \"Red Foxes\" ],\\n \"description\" : [ \"A red fox is curled up outside its den in the woods.\" ],\\n \"subject\" : [ {\\n \"name\" : \"Mammals\"\\n }, {\\n \"name\" : \"Omnivores\"\\n }, {\\n \"name\" : \"Red fox\"\\n }, {\\n \"name\" : \"Vulpes vulpes\"\\n }, {\\n \"name\" : \"Wild canines\"\\n }, {\\n \"name\" : \"Canids\"\\n }, {\\n \"name\" : \"Missouri, United States\"\\n } ],\\n \"temporal\" : [ {\\n \"displayDate\" : \"n.d.\"\\n } ],\\n \"identifier\" : [ \"http://cdm16795.contentdm.oclc.org/cdm/ref/collection/p16795coll24/id/4348\" ],\\n \"creator\" : [ \"Wooldridge, Don\" ],\\n \"language\" : [ {\\n \"iso639_3\" : \"eng\",\\n \"name\" : \"English\"\\n } ],\\n \"rights\" : \"Public domain. Items reproduced for publication should carry the credit line: Courtesy of the Missouri State Archives, RG103 Department of Conservation Photograph Collection.\",\\n \"@id\" : \"oai:cdm16795.contentdm.oclc.org:p16795coll24/4348\",\\n \"format\" : \"\"\\n },\\n \"@id\" : \"missouri--urn:data.mohistory.org:mdh_all:oai:cdm16795.contentdm.oclc.org:p16795coll24/4348\",\\n \"iiifManifest\" : \"http://cdm16795.contentdm.oclc.org/iiif/info/p16795coll24/4348/manifest.json\"\\n}'},\n", + " 'provider': {'@id': 'http://dp.la/api/contributor/heartland-hub',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q83878488'],\n", + " 'name': 'Heartland Hub'},\n", + " 'rightsCategory': 'Unspecified Rights Status',\n", + " 'sourceResource': {'@id': 'http://dp.la/api/items/d52336e9af2a31ed282d3826b094b952#SourceResource',\n", + " 'creator': ['Wooldridge, Don'],\n", + " 'date': [{'displayDate': 'n.d.'}],\n", + " 'description': ['A red fox is curled up outside its den in the woods.'],\n", + " 'identifier': ['http://cdm16795.contentdm.oclc.org/cdm/ref/collection/p16795coll24/id/4348'],\n", + " 'language': [{'iso639_3': 'English', 'name': 'English'}],\n", + " 'rights': ['Public domain. Items reproduced for publication should carry the credit line: Courtesy of the Missouri State Archives, RG103 Department of Conservation Photograph Collection.'],\n", + " 'subject': [{'name': 'Mammals'},\n", + " {'name': 'Omnivores'},\n", + " {'name': 'Red fox'},\n", + " {'name': 'Vulpes vulpes'},\n", + " {'name': 'Wild canines'},\n", + " {'name': 'Canids'},\n", + " {'name': 'Missouri, United States'}],\n", + " 'title': ['Red Foxes']}},\n", + " {'@context': 'http://dp.la/api/items/context',\n", + " '@id': 'http://dp.la/api/items/c069137daf81a34b1226673f06b807e6',\n", + " '@type': 'ore:Aggregation',\n", + " 'aggregatedCHO': '#sourceResource',\n", + " 'dataProvider': {'@id': 'http://dp.la/api/contributor/missouri-state-archives-through-missouri-digital-heritage',\n", + " 'name': 'Missouri State Archives through Missouri Digital Heritage'},\n", + " 'id': 'c069137daf81a34b1226673f06b807e6',\n", + " 'iiifManifest': 'http://cdm16795.contentdm.oclc.org/iiif/info/p16795coll24/4270/manifest.json',\n", + " 'ingestDate': '2025-01-02T21:39:04.590Z',\n", + " 'ingestType': 'item',\n", + " 'isShownAt': 'http://cdm16795.contentdm.oclc.org/cdm/ref/collection/p16795coll24/id/4270',\n", + " 'object': 'http://cdm16795.contentdm.oclc.org/utils/getthumbnail/collection/p16795coll24/id/4270',\n", + " 'originalRecord': {'stringValue': '{\\n \"@context\" : \"http://dp.la/api/items/context\",\\n \"isShownAt\" : \"http://cdm16795.contentdm.oclc.org/cdm/ref/collection/p16795coll24/id/4270\",\\n \"dataProvider\" : \"Missouri State Archives through Missouri Digital Heritage\",\\n \"@type\" : \"ore:Aggregation\",\\n \"hasView\" : {\\n \"@id\" : \"http://cdm16795.contentdm.oclc.org/cdm/ref/collection/p16795coll24/id/4270\"\\n },\\n \"provider\" : {\\n \"@id\" : \"http://dp.la/api/contributor/missouri-hub\",\\n \"name\" : \"Missouri Hub\"\\n },\\n \"object\" : \"http://cdm16795.contentdm.oclc.org/utils/getthumbnail/collection/p16795coll24/id/4270\",\\n \"aggregatedCHO\" : \"#sourceResource\",\\n \"sourceResource\" : {\\n \"title\" : [ \"Red Foxes\" ],\\n \"description\" : [ \"Portrait of a red fox curled up inside a hollow log.\" ],\\n \"subject\" : [ {\\n \"name\" : \"Mammals\"\\n }, {\\n \"name\" : \"Omnivores\"\\n }, {\\n \"name\" : \"Red fox\"\\n }, {\\n \"name\" : \"Vulpes vulpes\"\\n }, {\\n \"name\" : \"Wild canines\"\\n }, {\\n \"name\" : \"Canids\"\\n }, {\\n \"name\" : \"Missouri, United States\"\\n } ],\\n \"temporal\" : [ {\\n \"displayDate\" : \"October 1958\"\\n } ],\\n \"identifier\" : [ \"http://cdm16795.contentdm.oclc.org/cdm/ref/collection/p16795coll24/id/4270\" ],\\n \"creator\" : [ \"Wooldridge, Don\" ],\\n \"language\" : [ {\\n \"iso639_3\" : \"eng\",\\n \"name\" : \"English\"\\n } ],\\n \"rights\" : \"Public domain. Items reproduced for publication should carry the credit line: Courtesy of the Missouri State Archives, RG103 Department of Conservation Photograph Collection.\",\\n \"@id\" : \"oai:cdm16795.contentdm.oclc.org:p16795coll24/4270\",\\n \"format\" : \"\"\\n },\\n \"@id\" : \"missouri--urn:data.mohistory.org:mdh_all:oai:cdm16795.contentdm.oclc.org:p16795coll24/4270\",\\n \"iiifManifest\" : \"http://cdm16795.contentdm.oclc.org/iiif/info/p16795coll24/4270/manifest.json\"\\n}'},\n", + " 'provider': {'@id': 'http://dp.la/api/contributor/heartland-hub',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q83878488'],\n", + " 'name': 'Heartland Hub'},\n", + " 'rightsCategory': 'Unspecified Rights Status',\n", + " 'sourceResource': {'@id': 'http://dp.la/api/items/c069137daf81a34b1226673f06b807e6#SourceResource',\n", + " 'creator': ['Wooldridge, Don'],\n", + " 'date': [{'displayDate': 'October 1958'}],\n", + " 'description': ['Portrait of a red fox curled up inside a hollow log.'],\n", + " 'identifier': ['http://cdm16795.contentdm.oclc.org/cdm/ref/collection/p16795coll24/id/4270'],\n", + " 'language': [{'iso639_3': 'English', 'name': 'English'}],\n", + " 'rights': ['Public domain. Items reproduced for publication should carry the credit line: Courtesy of the Missouri State Archives, RG103 Department of Conservation Photograph Collection.'],\n", + " 'subject': [{'name': 'Mammals'},\n", + " {'name': 'Omnivores'},\n", + " {'name': 'Red fox'},\n", + " {'name': 'Vulpes vulpes'},\n", + " {'name': 'Wild canines'},\n", + " {'name': 'Canids'},\n", + " {'name': 'Missouri, United States'}],\n", + " 'title': ['Red Foxes']}},\n", + " {'@context': 'http://dp.la/api/items/context',\n", + " '@id': 'http://dp.la/api/items/622cb57f4f2884c21e44db73cbeb622e',\n", + " '@type': 'ore:Aggregation',\n", + " 'aggregatedCHO': '#sourceResource',\n", + " 'dataProvider': {'@id': 'http://dp.la/api/contributor/tennessee-state-library-and-archives',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q7700170'],\n", + " 'name': 'Tennessee State Library and Archives'},\n", + " 'id': '622cb57f4f2884c21e44db73cbeb622e',\n", + " 'iiifManifest': 'https://cdm15138.contentdm.oclc.org/iiif/info/p15138coll28/4025/manifest.json',\n", + " 'ingestDate': '2025-01-03T15:28:40.549Z',\n", + " 'ingestType': 'item',\n", + " 'isShownAt': 'http://cdm15138.contentdm.oclc.org/cdm/ref/collection/p15138coll28/id/4025',\n", + " 'object': 'http://cdm15138.contentdm.oclc.org/utils/getthumbnail/collection/p15138coll28/id/4025',\n", + " 'originalRecord': {'stringValue': '\\n
\\n \\n urn:dpla.lib.utk.edu.tsla_p15138coll28:oai:cdm15138.contentdm.oclc.org:p15138coll28/4025\\n \\n 2020-02-25\\n tsla_p15138coll28\\n
\\n \\n \\n \\n Red foxes\\n \\n \\n Copyright Not Evaluated\\n\\n \\n \\n http://cdm15138.contentdm.oclc.org/cdm/ref/collection/p15138coll28/id/4025\\n \\n \\n http://cdm15138.contentdm.oclc.org/utils/getthumbnail/collection/p15138coll28/id/4025\\n \\n \\n https://cdm15138.contentdm.oclc.org/iiif/info/p15138coll28/4025/manifest.json\\n \\n \\n \\n A black and white photograph of two red foxes in a large wire pen. Both foxes are on their feet and are staring off into the distance.\\n \\n \\n 1938 March 8\\n \\n \\n Tennessee State Library and Archives\\n \\n eng\\n \\n \\n \\n Red fox\\n \\n \\n Vulpes\\n \\n \\n Photography of animals\\n \\n \\n Foxes\\n \\n \\n Animal housing\\n \\n \\n Cages\\n \\n \\n Ears\\n \\n \\n Whiskers\\n \\n \\n \\n \\n Tennessee Department of Conservation Photograph Collection, 1937-1976\\n \\n \\n \\n \\n \\n Animals\\n \\n \\n \\n \\n Tennessee State Library and Archives\\n \\n \\n \\n
Photographs
\\n
\\n still image\\n
\\n
\\n \\n \\n \\n \\n http://cdm15138.contentdm.oclc.org/oai/oai.php\\n \\n \\n oai:cdm15138.contentdm.oclc.org:p15138coll28/4025\\n \\n 2020-02-25\\n \\n http://worldcat.org/xmlschemas/qdc-1.0\\n \\n \\n\\n \\n
\\n'},\n", + " 'provider': {'@id': 'http://dp.la/api/contributor/tennessee',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q83878449'],\n", + " 'name': 'Digital Library of Tennessee'},\n", + " 'rights': 'http://rightsstatements.org/vocab/CNE/1.0/',\n", + " 'rightsCategory': 'Unspecified Rights Status',\n", + " 'sourceResource': {'@id': 'http://dp.la/api/items/622cb57f4f2884c21e44db73cbeb622e#SourceResource',\n", + " 'date': [{'displayDate': '1938 March 8'}],\n", + " 'description': ['A black and white photograph of two red foxes in a large wire pen. Both foxes are on their feet and are staring off into the distance.'],\n", + " 'format': ['Photographs'],\n", + " 'subject': [{'name': 'Red fox'},\n", + " {'name': 'Vulpes'},\n", + " {'name': 'Photography of animals'},\n", + " {'name': 'Foxes'},\n", + " {'name': 'Animal housing'},\n", + " {'name': 'Cages'},\n", + " {'name': 'Ears'},\n", + " {'name': 'Whiskers'}],\n", + " 'title': ['Red foxes'],\n", + " 'type': ['image']}},\n", + " {'@context': 'http://dp.la/api/items/context',\n", + " '@id': 'http://dp.la/api/items/9225e4df382482e6c55bf9d052cfc52f',\n", + " '@type': 'ore:Aggregation',\n", + " 'aggregatedCHO': '#sourceResource',\n", + " 'dataProvider': {'@id': 'http://dp.la/api/contributor/missouri-state-archives-through-missouri-digital-heritage',\n", + " 'name': 'Missouri State Archives through Missouri Digital Heritage'},\n", + " 'id': '9225e4df382482e6c55bf9d052cfc52f',\n", + " 'iiifManifest': 'http://cdm16795.contentdm.oclc.org/iiif/info/p16795coll24/4126/manifest.json',\n", + " 'ingestDate': '2025-01-02T21:39:04.590Z',\n", + " 'ingestType': 'item',\n", + " 'isShownAt': 'http://cdm16795.contentdm.oclc.org/cdm/ref/collection/p16795coll24/id/4126',\n", + " 'object': 'http://cdm16795.contentdm.oclc.org/utils/getthumbnail/collection/p16795coll24/id/4126',\n", + " 'originalRecord': {'stringValue': '{\\n \"@context\" : \"http://dp.la/api/items/context\",\\n \"isShownAt\" : \"http://cdm16795.contentdm.oclc.org/cdm/ref/collection/p16795coll24/id/4126\",\\n \"dataProvider\" : \"Missouri State Archives through Missouri Digital Heritage\",\\n \"@type\" : \"ore:Aggregation\",\\n \"hasView\" : {\\n \"@id\" : \"http://cdm16795.contentdm.oclc.org/cdm/ref/collection/p16795coll24/id/4126\"\\n },\\n \"provider\" : {\\n \"@id\" : \"http://dp.la/api/contributor/missouri-hub\",\\n \"name\" : \"Missouri Hub\"\\n },\\n \"object\" : \"http://cdm16795.contentdm.oclc.org/utils/getthumbnail/collection/p16795coll24/id/4126\",\\n \"aggregatedCHO\" : \"#sourceResource\",\\n \"sourceResource\" : {\\n \"title\" : [ \"Red Foxes\" ],\\n \"description\" : [ \"A young red fox ventures out of its den and peers at the camera.\" ],\\n \"subject\" : [ {\\n \"name\" : \"Mammals\"\\n }, {\\n \"name\" : \"Omnivores\"\\n }, {\\n \"name\" : \"Red fox\"\\n }, {\\n \"name\" : \"Vulpes vulpes\"\\n }, {\\n \"name\" : \"Wild canines\"\\n }, {\\n \"name\" : \"Canids\"\\n }, {\\n \"name\" : \"Kits\"\\n }, {\\n \"name\" : \"Missouri, United States\"\\n } ],\\n \"temporal\" : [ {\\n \"displayDate\" : \"n.d.\"\\n } ],\\n \"identifier\" : [ \"http://cdm16795.contentdm.oclc.org/cdm/ref/collection/p16795coll24/id/4126\" ],\\n \"creator\" : [ \"Wooldridge, Don\" ],\\n \"language\" : [ {\\n \"iso639_3\" : \"eng\",\\n \"name\" : \"English\"\\n } ],\\n \"rights\" : \"Public domain. Items reproduced for publication should carry the credit line: Courtesy of the Missouri State Archives, RG103 Department of Conservation Photograph Collection.\",\\n \"@id\" : \"oai:cdm16795.contentdm.oclc.org:p16795coll24/4126\",\\n \"format\" : \"\"\\n },\\n \"@id\" : \"missouri--urn:data.mohistory.org:mdh_all:oai:cdm16795.contentdm.oclc.org:p16795coll24/4126\",\\n \"iiifManifest\" : \"http://cdm16795.contentdm.oclc.org/iiif/info/p16795coll24/4126/manifest.json\"\\n}'},\n", + " 'provider': {'@id': 'http://dp.la/api/contributor/heartland-hub',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q83878488'],\n", + " 'name': 'Heartland Hub'},\n", + " 'rightsCategory': 'Unspecified Rights Status',\n", + " 'sourceResource': {'@id': 'http://dp.la/api/items/9225e4df382482e6c55bf9d052cfc52f#SourceResource',\n", + " 'creator': ['Wooldridge, Don'],\n", + " 'date': [{'displayDate': 'n.d.'}],\n", + " 'description': ['A young red fox ventures out of its den and peers at the camera.'],\n", + " 'identifier': ['http://cdm16795.contentdm.oclc.org/cdm/ref/collection/p16795coll24/id/4126'],\n", + " 'language': [{'iso639_3': 'English', 'name': 'English'}],\n", + " 'rights': ['Public domain. Items reproduced for publication should carry the credit line: Courtesy of the Missouri State Archives, RG103 Department of Conservation Photograph Collection.'],\n", + " 'subject': [{'name': 'Mammals'},\n", + " {'name': 'Omnivores'},\n", + " {'name': 'Red fox'},\n", + " {'name': 'Vulpes vulpes'},\n", + " {'name': 'Wild canines'},\n", + " {'name': 'Canids'},\n", + " {'name': 'Kits'},\n", + " {'name': 'Missouri, United States'}],\n", + " 'title': ['Red Foxes']}},\n", + " {'@context': 'http://dp.la/api/items/context',\n", + " '@id': 'http://dp.la/api/items/403e1998bec15b2f775c09e097c8a8e4',\n", + " '@type': 'ore:Aggregation',\n", + " 'aggregatedCHO': '#sourceResource',\n", + " 'dataProvider': {'@id': 'http://dp.la/api/contributor/missouri-state-archives-through-missouri-digital-heritage',\n", + " 'name': 'Missouri State Archives through Missouri Digital Heritage'},\n", + " 'id': '403e1998bec15b2f775c09e097c8a8e4',\n", + " 'iiifManifest': 'http://cdm16795.contentdm.oclc.org/iiif/info/p16795coll24/4437/manifest.json',\n", + " 'ingestDate': '2025-01-02T21:39:04.590Z',\n", + " 'ingestType': 'item',\n", + " 'isShownAt': 'http://cdm16795.contentdm.oclc.org/cdm/ref/collection/p16795coll24/id/4437',\n", + " 'object': 'http://cdm16795.contentdm.oclc.org/utils/getthumbnail/collection/p16795coll24/id/4437',\n", + " 'originalRecord': {'stringValue': '{\\n \"@context\" : \"http://dp.la/api/items/context\",\\n \"isShownAt\" : \"http://cdm16795.contentdm.oclc.org/cdm/ref/collection/p16795coll24/id/4437\",\\n \"dataProvider\" : \"Missouri State Archives through Missouri Digital Heritage\",\\n \"@type\" : \"ore:Aggregation\",\\n \"hasView\" : {\\n \"@id\" : \"http://cdm16795.contentdm.oclc.org/cdm/ref/collection/p16795coll24/id/4437\"\\n },\\n \"provider\" : {\\n \"@id\" : \"http://dp.la/api/contributor/missouri-hub\",\\n \"name\" : \"Missouri Hub\"\\n },\\n \"object\" : \"http://cdm16795.contentdm.oclc.org/utils/getthumbnail/collection/p16795coll24/id/4437\",\\n \"aggregatedCHO\" : \"#sourceResource\",\\n \"sourceResource\" : {\\n \"title\" : [ \"Red Foxes\" ],\\n \"description\" : [ \"Two red foxes are in the woods near their den.\" ],\\n \"subject\" : [ {\\n \"name\" : \"Mammals\"\\n }, {\\n \"name\" : \"Omnivores\"\\n }, {\\n \"name\" : \"Red fox\"\\n }, {\\n \"name\" : \"Vulpes vulpes\"\\n }, {\\n \"name\" : \"Wild canines\"\\n }, {\\n \"name\" : \"Canids\"\\n }, {\\n \"name\" : \"Missouri, United States\"\\n } ],\\n \"temporal\" : [ {\\n \"displayDate\" : \"n.d.\"\\n } ],\\n \"identifier\" : [ \"http://cdm16795.contentdm.oclc.org/cdm/ref/collection/p16795coll24/id/4437\" ],\\n \"creator\" : [ \"Wooldridge, Don\" ],\\n \"language\" : [ {\\n \"iso639_3\" : \"eng\",\\n \"name\" : \"English\"\\n } ],\\n \"rights\" : \"Public domain. Items reproduced for publication should carry the credit line: Courtesy of the Missouri State Archives, RG103 Department of Conservation Photograph Collection.\",\\n \"@id\" : \"oai:cdm16795.contentdm.oclc.org:p16795coll24/4437\",\\n \"format\" : \"\"\\n },\\n \"@id\" : \"missouri--urn:data.mohistory.org:mdh_all:oai:cdm16795.contentdm.oclc.org:p16795coll24/4437\",\\n \"iiifManifest\" : \"http://cdm16795.contentdm.oclc.org/iiif/info/p16795coll24/4437/manifest.json\"\\n}'},\n", + " 'provider': {'@id': 'http://dp.la/api/contributor/heartland-hub',\n", + " 'exactMatch': ['http://www.wikidata.org/entity/Q83878488'],\n", + " 'name': 'Heartland Hub'},\n", + " 'rightsCategory': 'Unspecified Rights Status',\n", + " 'sourceResource': {'@id': 'http://dp.la/api/items/403e1998bec15b2f775c09e097c8a8e4#SourceResource',\n", + " 'creator': ['Wooldridge, Don'],\n", + " 'date': [{'displayDate': 'n.d.'}],\n", + " 'description': ['Two red foxes are in the woods near their den.'],\n", + " 'identifier': ['http://cdm16795.contentdm.oclc.org/cdm/ref/collection/p16795coll24/id/4437'],\n", + " 'language': [{'iso639_3': 'English', 'name': 'English'}],\n", + " 'rights': ['Public domain. Items reproduced for publication should carry the credit line: Courtesy of the Missouri State Archives, RG103 Department of Conservation Photograph Collection.'],\n", + " 'subject': [{'name': 'Mammals'},\n", + " {'name': 'Omnivores'},\n", + " {'name': 'Red fox'},\n", + " {'name': 'Vulpes vulpes'},\n", + " {'name': 'Wild canines'},\n", + " {'name': 'Canids'},\n", + " {'name': 'Missouri, United States'}],\n", + " 'title': ['Red Foxes']}}],\n", + " 'facets': [],\n", + " 'limit': 10,\n", + " 'start': 1}" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "my_url = f\"https://api.dp.la/v2/items?q=red+foxes&api_key={DPLA_API_KEY}\"\n", + "\n", + "response = requests.get(my_url)\n", + "\n", + "parsed_response = response.json()\n", + "parsed_response" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [], + "source": [ + "def make_dpla_request(query: str):\n", + " url = f\"https://api.dp.la/v2/items?q={query}&api_key={DPLA_API_KEY}\"\n", + " response = requests.get(url)\n", + "\n", + " return response.json()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## RESTful APIs\n", + "\n", + "Many APIs, including the DPLA's, are built on RESTful principles. REST stands for **Re**presentational **S**tate **T**ransfer. In terms of web APIs, REST means that a given server will respond with a representation of the data that it has available, and that representation will contain additional information for manipulating the data or requesting further data.\n", + "\n", + "Although it is not, strictly speaking, a requirement of REST APIs, many REST implementations use a predictable URL scheme.\n", + "\n", + "For example, you might find a list of \"collections\" at the `/collections` endpoint. To request a specific collection, you would append its ID — e.g., for Collection 3, `/collections/3`.\n", + "\n", + "Each collection might contain items, so to get a list of items in Collection 3 you could send a request to `/collections/3/items`. And then to get a specific item in that collection — you guessed it, `/collections/3/items/12`.\n", + "\n", + "DPLA does _not_ implement this kind of schema, and instead relies on facets and other search parameters. But it is worth being aware of such schemes if you want to use other APIs in your work and research." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Readings\n", + "\n", + "- @Walker2019\n", + "- @Matthes2023 [chs. 15–17]\n", + "\n", + "## Homework\n", + "\n", + "Design and test an experiment using the data from a publicly available API, such as the [Digital Public Library of America](https://pro.dp.la/developers) or [Chronicling America](https://chroniclingamerica.loc.gov/about/api/) — you can also use another data source, just run it by me first.\n", + "\n", + "In your report, be sure to discuss your research question, hypothesis, methods, results, and conclusion — in other words, walk the reader through the full scientific process.\n", + "\n", + "These experiments need not be large — think of a small, answerable question that you could tackle in the space of 4 hours of work (i.e., the amount of outside work generally expected for each lab)." + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.12.1" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} From 77add861388d4ed58d47183ad8c2754759dca928 Mon Sep 17 00:00:00 2001 From: jthorne2000 Date: Wed, 2 Apr 2025 13:45:05 +0000 Subject: [PATCH 5/8] in class practice part 1 --- 11_nlp.ipynb | 4367 +++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 4354 insertions(+), 13 deletions(-) diff --git a/11_nlp.ipynb b/11_nlp.ipynb index 7d02dcd..c32a6b2 100644 --- a/11_nlp.ipynb +++ b/11_nlp.ipynb @@ -36,7 +36,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 1, "metadata": {}, "outputs": [], "source": [ @@ -57,9 +57,20 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 2, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'e Sunium promontory stands out from the Attic land. When you have rounded the promontory you see a h'" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "book_1[100:200]" ] @@ -79,9 +90,132 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 3, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Collecting spacy\n", + " Downloading spacy-3.8.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (27 kB)\n", + "Collecting spacy-legacy<3.1.0,>=3.0.11 (from spacy)\n", + " Downloading spacy_legacy-3.0.12-py2.py3-none-any.whl.metadata (2.8 kB)\n", + "Collecting spacy-loggers<2.0.0,>=1.0.0 (from spacy)\n", + " Downloading spacy_loggers-1.0.5-py3-none-any.whl.metadata (23 kB)\n", + "Collecting murmurhash<1.1.0,>=0.28.0 (from spacy)\n", + " Downloading murmurhash-1.0.12-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.1 kB)\n", + "Collecting cymem<2.1.0,>=2.0.2 (from spacy)\n", + " Downloading cymem-2.0.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (8.5 kB)\n", + "Collecting preshed<3.1.0,>=3.0.2 (from spacy)\n", + " Downloading preshed-3.0.9-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.2 kB)\n", + "Collecting thinc<8.4.0,>=8.3.4 (from spacy)\n", + " Downloading thinc-8.3.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (15 kB)\n", + "Collecting wasabi<1.2.0,>=0.9.1 (from spacy)\n", + " Downloading wasabi-1.1.3-py3-none-any.whl.metadata (28 kB)\n", + "Collecting srsly<3.0.0,>=2.4.3 (from spacy)\n", + " Downloading srsly-2.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (19 kB)\n", + "Collecting catalogue<2.1.0,>=2.0.6 (from spacy)\n", + " Downloading catalogue-2.0.10-py3-none-any.whl.metadata (14 kB)\n", + "Collecting weasel<0.5.0,>=0.1.0 (from spacy)\n", + " Downloading weasel-0.4.1-py3-none-any.whl.metadata (4.6 kB)\n", + "Collecting typer<1.0.0,>=0.3.0 (from spacy)\n", + " Downloading typer-0.15.2-py3-none-any.whl.metadata (15 kB)\n", + "Requirement already satisfied: tqdm<5.0.0,>=4.38.0 in /home/codespace/.local/lib/python3.12/site-packages (from spacy) (4.67.1)\n", + "Requirement already satisfied: numpy>=1.19.0 in /home/codespace/.local/lib/python3.12/site-packages (from spacy) (2.2.4)\n", + "Requirement already satisfied: requests<3.0.0,>=2.13.0 in /home/codespace/.local/lib/python3.12/site-packages (from spacy) (2.32.3)\n", + "Collecting pydantic!=1.8,!=1.8.1,<3.0.0,>=1.7.4 (from spacy)\n", + " Downloading pydantic-2.11.1-py3-none-any.whl.metadata (63 kB)\n", + "Requirement already satisfied: jinja2 in /home/codespace/.local/lib/python3.12/site-packages (from spacy) (3.1.6)\n", + "Requirement already satisfied: setuptools in /home/codespace/.local/lib/python3.12/site-packages (from spacy) (76.0.0)\n", + "Requirement already satisfied: packaging>=20.0 in /home/codespace/.local/lib/python3.12/site-packages (from spacy) (24.2)\n", + "Collecting langcodes<4.0.0,>=3.2.0 (from spacy)\n", + " Downloading langcodes-3.5.0-py3-none-any.whl.metadata (29 kB)\n", + "Collecting language-data>=1.2 (from langcodes<4.0.0,>=3.2.0->spacy)\n", + " Downloading language_data-1.3.0-py3-none-any.whl.metadata (4.3 kB)\n", + "Collecting annotated-types>=0.6.0 (from pydantic!=1.8,!=1.8.1,<3.0.0,>=1.7.4->spacy)\n", + " Downloading annotated_types-0.7.0-py3-none-any.whl.metadata (15 kB)\n", + "Collecting pydantic-core==2.33.0 (from pydantic!=1.8,!=1.8.1,<3.0.0,>=1.7.4->spacy)\n", + " Downloading pydantic_core-2.33.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.8 kB)\n", + "Requirement already satisfied: typing-extensions>=4.12.2 in /home/codespace/.local/lib/python3.12/site-packages (from pydantic!=1.8,!=1.8.1,<3.0.0,>=1.7.4->spacy) (4.13.0)\n", + "Collecting typing-inspection>=0.4.0 (from pydantic!=1.8,!=1.8.1,<3.0.0,>=1.7.4->spacy)\n", + " Downloading typing_inspection-0.4.0-py3-none-any.whl.metadata (2.6 kB)\n", + "Requirement already satisfied: charset-normalizer<4,>=2 in /home/codespace/.local/lib/python3.12/site-packages (from requests<3.0.0,>=2.13.0->spacy) (3.4.1)\n", + "Requirement already satisfied: idna<4,>=2.5 in /home/codespace/.local/lib/python3.12/site-packages (from requests<3.0.0,>=2.13.0->spacy) (3.10)\n", + "Requirement already satisfied: urllib3<3,>=1.21.1 in /home/codespace/.local/lib/python3.12/site-packages (from requests<3.0.0,>=2.13.0->spacy) (2.3.0)\n", + "Requirement already satisfied: certifi>=2017.4.17 in /home/codespace/.local/lib/python3.12/site-packages (from requests<3.0.0,>=2.13.0->spacy) (2025.1.31)\n", + "Collecting blis<1.3.0,>=1.2.0 (from thinc<8.4.0,>=8.3.4->spacy)\n", + " Downloading blis-1.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (7.4 kB)\n", + "Collecting confection<1.0.0,>=0.0.1 (from thinc<8.4.0,>=8.3.4->spacy)\n", + " Downloading confection-0.1.5-py3-none-any.whl.metadata (19 kB)\n", + "Requirement already satisfied: click>=8.0.0 in /home/codespace/.local/lib/python3.12/site-packages (from typer<1.0.0,>=0.3.0->spacy) (8.1.8)\n", + "Collecting shellingham>=1.3.0 (from typer<1.0.0,>=0.3.0->spacy)\n", + " Downloading shellingham-1.5.4-py2.py3-none-any.whl.metadata (3.5 kB)\n", + "Collecting rich>=10.11.0 (from typer<1.0.0,>=0.3.0->spacy)\n", + " Downloading rich-14.0.0-py3-none-any.whl.metadata (18 kB)\n", + "Collecting cloudpathlib<1.0.0,>=0.7.0 (from weasel<0.5.0,>=0.1.0->spacy)\n", + " Downloading cloudpathlib-0.21.0-py3-none-any.whl.metadata (14 kB)\n", + "Collecting smart-open<8.0.0,>=5.2.1 (from weasel<0.5.0,>=0.1.0->spacy)\n", + " Downloading smart_open-7.1.0-py3-none-any.whl.metadata (24 kB)\n", + "Requirement already satisfied: MarkupSafe>=2.0 in /home/codespace/.local/lib/python3.12/site-packages (from jinja2->spacy) (3.0.2)\n", + "Collecting marisa-trie>=1.1.0 (from language-data>=1.2->langcodes<4.0.0,>=3.2.0->spacy)\n", + " Downloading marisa_trie-1.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.0 kB)\n", + "Collecting markdown-it-py>=2.2.0 (from rich>=10.11.0->typer<1.0.0,>=0.3.0->spacy)\n", + " Downloading markdown_it_py-3.0.0-py3-none-any.whl.metadata (6.9 kB)\n", + "Requirement already satisfied: pygments<3.0.0,>=2.13.0 in /home/codespace/.local/lib/python3.12/site-packages (from rich>=10.11.0->typer<1.0.0,>=0.3.0->spacy) (2.19.1)\n", + "Collecting wrapt (from smart-open<8.0.0,>=5.2.1->weasel<0.5.0,>=0.1.0->spacy)\n", + " Downloading wrapt-1.17.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.4 kB)\n", + "Collecting mdurl~=0.1 (from markdown-it-py>=2.2.0->rich>=10.11.0->typer<1.0.0,>=0.3.0->spacy)\n", + " Downloading mdurl-0.1.2-py3-none-any.whl.metadata (1.6 kB)\n", + "Downloading spacy-3.8.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.8 MB)\n", + "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m31.8/31.8 MB\u001b[0m \u001b[31m48.6 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m:00:01\u001b[0m\n", + "\u001b[?25hDownloading catalogue-2.0.10-py3-none-any.whl (17 kB)\n", + "Downloading cymem-2.0.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (227 kB)\n", + "Downloading langcodes-3.5.0-py3-none-any.whl (182 kB)\n", + "Downloading murmurhash-1.0.12-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (138 kB)\n", + "Downloading preshed-3.0.9-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (156 kB)\n", + "Downloading pydantic-2.11.1-py3-none-any.whl (442 kB)\n", + "Downloading pydantic_core-2.33.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB)\n", + "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m2.0/2.0 MB\u001b[0m \u001b[31m44.4 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[?25hDownloading spacy_legacy-3.0.12-py2.py3-none-any.whl (29 kB)\n", + "Downloading spacy_loggers-1.0.5-py3-none-any.whl (22 kB)\n", + "Downloading srsly-2.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB)\n", + "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m1.1/1.1 MB\u001b[0m \u001b[31m40.0 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[?25hDownloading thinc-8.3.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.7 MB)\n", + "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m3.7/3.7 MB\u001b[0m \u001b[31m50.2 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[?25hDownloading typer-0.15.2-py3-none-any.whl (45 kB)\n", + "Downloading wasabi-1.1.3-py3-none-any.whl (27 kB)\n", + "Downloading weasel-0.4.1-py3-none-any.whl (50 kB)\n", + "Downloading annotated_types-0.7.0-py3-none-any.whl (13 kB)\n", + "Downloading blis-1.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.6 MB)\n", + "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m11.6/11.6 MB\u001b[0m \u001b[31m52.0 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m:00:01\u001b[0m\n", + "\u001b[?25hDownloading cloudpathlib-0.21.0-py3-none-any.whl (52 kB)\n", + "Downloading confection-0.1.5-py3-none-any.whl (35 kB)\n", + "Downloading language_data-1.3.0-py3-none-any.whl (5.4 MB)\n", + "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m5.4/5.4 MB\u001b[0m \u001b[31m55.9 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[?25hDownloading rich-14.0.0-py3-none-any.whl (243 kB)\n", + "Downloading shellingham-1.5.4-py2.py3-none-any.whl (9.8 kB)\n", + "Downloading smart_open-7.1.0-py3-none-any.whl (61 kB)\n", + "Downloading typing_inspection-0.4.0-py3-none-any.whl (14 kB)\n", + "Downloading marisa_trie-1.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB)\n", + "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m1.4/1.4 MB\u001b[0m \u001b[31m44.2 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[?25hDownloading markdown_it_py-3.0.0-py3-none-any.whl (87 kB)\n", + "Downloading wrapt-1.17.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (89 kB)\n", + "Downloading mdurl-0.1.2-py3-none-any.whl (10.0 kB)\n", + "Installing collected packages: cymem, wrapt, wasabi, typing-inspection, spacy-loggers, spacy-legacy, shellingham, pydantic-core, murmurhash, mdurl, marisa-trie, cloudpathlib, catalogue, blis, annotated-types, srsly, smart-open, pydantic, preshed, markdown-it-py, language-data, rich, langcodes, confection, typer, thinc, weasel, spacy\n", + "\u001b[33m WARNING: The script markdown-it is installed in '/usr/local/python/3.12.1/bin' which is not on PATH.\n", + " Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.\u001b[0m\u001b[33m\n", + "\u001b[0m\u001b[33m WARNING: The script typer is installed in '/usr/local/python/3.12.1/bin' which is not on PATH.\n", + " Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.\u001b[0m\u001b[33m\n", + "\u001b[0m\u001b[33m WARNING: The script weasel is installed in '/usr/local/python/3.12.1/bin' which is not on PATH.\n", + " Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.\u001b[0m\u001b[33m\n", + "\u001b[0m\u001b[33m WARNING: The script spacy is installed in '/usr/local/python/3.12.1/bin' which is not on PATH.\n", + " Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.\u001b[0m\u001b[33m\n", + "\u001b[0mSuccessfully installed annotated-types-0.7.0 blis-1.2.1 catalogue-2.0.10 cloudpathlib-0.21.0 confection-0.1.5 cymem-2.0.11 langcodes-3.5.0 language-data-1.3.0 marisa-trie-1.2.1 markdown-it-py-3.0.0 mdurl-0.1.2 murmurhash-1.0.12 preshed-3.0.9 pydantic-2.11.1 pydantic-core-2.33.0 rich-14.0.0 shellingham-1.5.4 smart-open-7.1.0 spacy-3.8.5 spacy-legacy-3.0.12 spacy-loggers-1.0.5 srsly-2.5.1 thinc-8.3.4 typer-0.15.2 typing-inspection-0.4.0 wasabi-1.1.3 weasel-0.4.1 wrapt-1.17.2\n", + "Note: you may need to restart the kernel to use updated packages.\n" + ] + } + ], "source": [ "%pip install spacy" ] @@ -97,9 +231,27 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 4, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Collecting en-core-web-md==3.8.0\n", + " Downloading https://github.com/explosion/spacy-models/releases/download/en_core_web_md-3.8.0/en_core_web_md-3.8.0-py3-none-any.whl (33.5 MB)\n", + "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m33.5/33.5 MB\u001b[0m \u001b[31m60.4 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m00:01\u001b[0m\n", + "\u001b[?25hInstalling collected packages: en-core-web-md\n", + "Successfully installed en-core-web-md-3.8.0\n", + "\u001b[38;5;2m✔ Download and installation successful\u001b[0m\n", + "You can now load the package via spacy.load('en_core_web_md')\n", + "\u001b[38;5;3m⚠ Restart to reload dependencies\u001b[0m\n", + "If you are in a Jupyter or Colab notebook, you may need to restart Python in\n", + "order to load all the package's dependencies. You can do this by selecting the\n", + "'Restart kernel' or 'Restart runtime' option.\n" + ] + } + ], "source": [ "%run -m spacy download en_core_web_md" ] @@ -113,7 +265,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 5, "metadata": {}, "outputs": [], "source": [ @@ -132,9 +284,4173 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 6, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "('SUNIUM & LAURIUM', 'ORG')\n", + "('1.1.1', 'CARDINAL')\n", + "('I.', 'PERSON')\n", + "('Greek', 'NORP')\n", + "('the Cyclades Islands', 'LOC')\n", + "('the Aegean Sea', 'LOC')\n", + "('Sunium', 'LOC')\n", + "('Attic', 'NORP')\n", + "('Athena of Sunium', 'ORG')\n", + "('Laurium', 'PERSON')\n", + "('Athenians', 'NORP')\n", + "('the Island of Patroclus', 'LOC')\n", + "('Patroclus', 'ORG')\n", + "('Egyptian', 'NORP')\n", + "('Ptolemy', 'PERSON')\n", + "('Ptolemy', 'GPE')\n", + "('Lagus', 'PERSON')\n", + "('Athenians', 'NORP')\n", + "('Antigonus', 'LOC')\n", + "('Demetrius', 'PERSON')\n", + "('PEIRAEUS', 'ORG')\n", + "('1.1.2', 'CARDINAL')\n", + "('Peiraeus', 'PERSON')\n", + "('Themistocles', 'ORG')\n", + "('Phalerum', 'GPE')\n", + "('Athens', 'GPE')\n", + "('Menestheus', 'PERSON')\n", + "('Troy', 'PERSON')\n", + "('Theseus', 'PERSON')\n", + "('Minos', 'ORG')\n", + "('Androgeos', 'ORG')\n", + "('Themistocles', 'ORG')\n", + "('Peiraeus', 'PERSON')\n", + "('three', 'CARDINAL')\n", + "('Phalerum', 'GPE')\n", + "('Athenian', 'NORP')\n", + "('Themistocles', 'ORG')\n", + "('Athenians', 'NORP')\n", + "('Themistocles', 'ORG')\n", + "('Magnesia', 'LOC')\n", + "('Themistocles', 'ORG')\n", + "('Parthenon', 'GPE')\n", + "('Themistocles', 'ORG')\n", + "('1.1.3', 'CARDINAL')\n", + "('Peiraeus', 'PERSON')\n", + "('Athena', 'GPE')\n", + "('Zeus', 'PERSON')\n", + "('Zeus', 'PERSON')\n", + "('Athena', 'ORG')\n", + "('Arcesilaus', 'ORG')\n", + "('Athenians', 'NORP')\n", + "('the united', 'GPE')\n", + "('Greeks', 'NORP')\n", + "('Macedonians', 'NORP')\n", + "('Boeotia', 'GPE')\n", + "('Thermopylae', 'ORG')\n", + "('Lamia', 'PERSON')\n", + "('Oeta', 'PERSON')\n", + "('Zeus', 'PERSON')\n", + "('Leochares', 'WORK_OF_ART')\n", + "('Aphrodite', 'PERSON')\n", + "('Lacedaemonian', 'PERSON')\n", + "('Cnidus', 'PERSON')\n", + "('Carian', 'NORP')\n", + "('Cnidians', 'NORP')\n", + "('Aphrodite', 'PERSON')\n", + "('Doritis (Bountiful', 'ORG')\n", + "('Acraea', 'ORG')\n", + "('Aphrodite', 'PERSON')\n", + "('Cnidian', 'NORP')\n", + "('Euploia', 'PERSON')\n", + "('Cnidians', 'NORP')\n", + "('1.1.4', 'CARDINAL')\n", + "('Athenians', 'NORP')\n", + "('Munychia', 'GPE')\n", + "('Artemis of Munychia', 'ORG')\n", + "('Phalerum', 'GPE')\n", + "('Demeter', 'PERSON')\n", + "('Athena Sciras', 'ORG')\n", + "('one', 'CARDINAL')\n", + "('Zeus', 'PERSON')\n", + "('Theseus', 'PERSON')\n", + "('Phalerus', 'PERSON')\n", + "('Athenians', 'NORP')\n", + "('Jason', 'PERSON')\n", + "('Androgeos', 'ORG')\n", + "('Minos', 'ORG')\n", + "('Heros', 'GPE')\n", + "('Androgeos', 'ORG')\n", + "('1.1.5', 'CARDINAL')\n", + "('Twenty', 'CARDINAL')\n", + "('Coliad', 'NORP')\n", + "('Persian', 'NORP')\n", + "('the Coliad Aphrodite', 'ORG')\n", + "('Genetyllides', 'PERSON')\n", + "('Phocaeans', 'NORP')\n", + "('Ionia', 'GPE')\n", + "('Colias', 'ORG')\n", + "('Phalerum', 'GPE')\n", + "('Athens', 'GPE')\n", + "('Hera', 'GPE')\n", + "('Mardonius', 'ORG')\n", + "('Gobryas', 'ORG')\n", + "('Alcamenes.6', 'DATE')\n", + "('Persians', 'NORP')\n", + "('1.2.1', 'CARDINAL')\n", + "('Antiope', 'PERSON')\n", + "('Amazon', 'ORG')\n", + "('Antiope', 'PERSON')\n", + "('Pindar', 'PERSON')\n", + "('Peirithous', 'PERSON')\n", + "('Theseus', 'PERSON')\n", + "('Hegias', 'PERSON')\n", + "('Troezen', 'ORG')\n", + "('Heracles', 'PERSON')\n", + "('Themiscyra', 'PERSON')\n", + "('Thermodon', 'LOC')\n", + "('Antiope', 'PERSON')\n", + "('Theseus', 'PERSON')\n", + "('Heracles', 'PERSON')\n", + "('Hegias', 'PERSON')\n", + "('Athenians', 'NORP')\n", + "('Amazons', 'ORG')\n", + "('Antiope', 'PERSON')\n", + "('Molpadia', 'ORG')\n", + "('Molpadia', 'ORG')\n", + "('Theseus', 'PERSON')\n", + "('Molpadia', 'ORG')\n", + "('Athenians', 'NORP')\n", + "('Peiraeus', 'PERSON')\n", + "('Cnidus', 'PERSON')\n", + "('Themistocles', 'ORG')\n", + "('Persians', 'NORP')\n", + "('Menander', 'PERSON')\n", + "('Diopeithes', 'PERSON')\n", + "('Euripides', 'PRODUCT')\n", + "('King Archelaus', 'PERSON')\n", + "('Macedonia', 'GPE')\n", + "('Anacreon', 'WORK_OF_ART')\n", + "('Polycrates', 'ORG')\n", + "('Samos', 'PERSON')\n", + "('Aeschylus', 'PERSON')\n", + "('Simonides', 'PRODUCT')\n", + "('Syracuse', 'GPE')\n", + "('Dionysius', 'PERSON')\n", + "('Sicily', 'PERSON')\n", + "('Philoxenus', 'PERSON')\n", + "('Macedonia', 'GPE')\n", + "('Antagoras of Rhodes and Aratus of Soli', 'ORG')\n", + "('Hesiod', 'PERSON')\n", + "('Homer', 'PERSON')\n", + "('Hesiod', 'PERSON')\n", + "('Homer', 'PERSON')\n", + "('Demodocus', 'ORG')\n", + "('Alcinous', 'ORG')\n", + "('Agamemnon', 'ORG')\n", + "('Praxiteles', 'ORG')\n", + "('ATHENS', 'GPE')\n", + "('1.2.4', 'CARDINAL')\n", + "('every year', 'DATE')\n", + "('Demeter', 'PERSON')\n", + "('Iacchus', 'NORP')\n", + "('Attic', 'NORP')\n", + "('Praxiteles', 'ORG')\n", + "('Poseidon', 'GPE')\n", + "('Polybotes', 'GPE')\n", + "('Coans', 'NORP')\n", + "('Chelone', 'ORG')\n", + "('Poseidon', 'GPE')\n", + "('Cerameicus', 'ORG')\n", + "('2.2.5', 'CARDINAL')\n", + "('One', 'CARDINAL')\n", + "('porticoes', 'ORG')\n", + "('Hermes', 'ORG')\n", + "('the house of Pulytion', 'ORG')\n", + "('Athenians', 'NORP')\n", + "('Eleusinian', 'NORP')\n", + "('Dionysus', 'PERSON')\n", + "('Dionysus', 'PERSON')\n", + "('Melpomenus', 'LOC')\n", + "('Apollo Musegetes', 'PERSON')\n", + "('Muses', 'WORK_OF_ART')\n", + "('Athena Paeonia', 'ORG')\n", + "('Healer', 'ORG')\n", + "('Zeus', 'PERSON')\n", + "('Mnemosyne (Memory', 'ORG')\n", + "('Muses', 'PRODUCT')\n", + "('Apollo', 'ORG')\n", + "('Eubulides', 'GPE')\n", + "('Acratus', 'ORG')\n", + "('Apollo', 'ORG')\n", + "('Apollo', 'ORG')\n", + "('Amphictyon', 'PERSON')\n", + "('Athens', 'GPE')\n", + "('Dionysus', 'PERSON')\n", + "('Athenians', 'NORP')\n", + "('Delphi', 'ORG')\n", + "('Athens', 'GPE')\n", + "('the days', 'DATE')\n", + "('Icarius', 'PERSON')\n", + "('Actaeus', 'PERSON')\n", + "('first', 'ORDINAL')\n", + "('Attica', 'GPE')\n", + "('Cecrops', 'PERSON')\n", + "('Herse', 'GPE')\n", + "('Pandrosus', 'PERSON')\n", + "('Erysichthon', 'PERSON')\n", + "('Athenians', 'NORP')\n", + "('Cecrops', 'GPE')\n", + "('Cranaus', 'PERSON')\n", + "('Athenians', 'NORP')\n", + "('Cranaus', 'PERSON')\n", + "('Attica', 'GPE')\n", + "('Actaea', 'ORG')\n", + "('Amphictyon', 'PERSON')\n", + "('Cranaus', 'PERSON')\n", + "('Erichthonius', 'ORG')\n", + "('Erichthonius', 'ORG')\n", + "('Hephaestus', 'ORG')\n", + "('Earth', 'LOC')\n", + "('1.3.1', 'CARDINAL')\n", + "('Cerameicus', 'ORG')\n", + "('Ceramus', 'PERSON')\n", + "('Dionysus', 'PERSON')\n", + "('Ariadne', 'PERSON')\n", + "('First', 'ORDINAL')\n", + "('the Royal Portico', 'ORG')\n", + "('yearly', 'DATE')\n", + "('Theseus', 'PERSON')\n", + "('Cephalus', 'ORG')\n", + "('Phaethon', 'LOC')\n", + "('Hesiod', 'PERSON')\n", + "('1.3.2', 'CARDINAL')\n", + "('Conon, Timotheus', 'PERSON')\n", + "('Phoenician', 'NORP')\n", + "('Conon by King Artaxerxes', 'WORK_OF_ART')\n", + "('Athenian', 'NORP')\n", + "('Salamis', 'ORG')\n", + "('Teucer', 'PERSON')\n", + "('Cinyras', 'ORG')\n", + "('Zeus', 'PERSON')\n", + "('Zeus of Freedom', 'ORG')\n", + "('Hadrian', 'NORP')\n", + "('Athenians', 'NORP')\n", + "('1.3.3', 'CARDINAL')\n", + "('Twelve', 'CARDINAL')\n", + "('Theseus', 'PERSON')\n", + "('Theseus', 'PERSON')\n", + "('Athenians', 'NORP')\n", + "('Theseus', 'PERSON')\n", + "('Peisistratus', 'ORG')\n", + "('one', 'CARDINAL')\n", + "('Theseus', 'PERSON')\n", + "('Menestheus', 'PERSON')\n", + "('Theseus', 'PERSON')\n", + "('fourth', 'ORDINAL')\n", + "('Melanthus', 'NORP')\n", + "('Cleidicus', 'GPE')\n", + "('Aesimides', 'ORG')\n", + "('1.3.4', 'CARDINAL')\n", + "('Mantinea', 'GPE')\n", + "('Athenians', 'NORP')\n", + "('Xenophon', 'ORG')\n", + "('Cadmea', 'ORG')\n", + "('Lacedaemonians', 'NORP')\n", + "('Leuctra', 'GPE')\n", + "('Boeotians', 'NORP')\n", + "('Peloponnesus', 'PERSON')\n", + "('Lacedacmonians', 'ORG')\n", + "('Athenians', 'NORP')\n", + "('Athenians', 'NORP')\n", + "('Xenophon', 'PERSON')\n", + "('Boeotian', 'NORP')\n", + "('Epaminondas the Theban', 'PERSON')\n", + "('Athenians', 'NORP')\n", + "('Euphranor', 'PERSON')\n", + "('Apollo', 'ORG')\n", + "('one', 'CARDINAL')\n", + "('Apollo', 'ORG')\n", + "('Leochares', 'ORG')\n", + "('Apollo', 'ORG')\n", + "('Averter', 'PERSON')\n", + "('Calamis', 'NORP')\n", + "('Delphi', 'ORG')\n", + "('Athenians', 'NORP')\n", + "('Peloponnesian', 'NORP')\n", + "('1.3.5', 'CARDINAL')\n", + "('Athenian', 'NORP')\n", + "('a year', 'DATE')\n", + "('Zeus Counsellor', 'PERSON')\n", + "('Apollo', 'ORG')\n", + "('Peisias,14', 'PERSON')\n", + "('a Demos by Lyson', 'WORK_OF_ART')\n", + "('Caunian', 'NORP')\n", + "('Callippus', 'PERSON')\n", + "('Athenians', 'NORP')\n", + "('Thermopylae', 'GPE')\n", + "('Gauls', 'PERSON')\n", + "('1.4.1', 'CARDINAL')\n", + "('Gauls', 'PERSON')\n", + "('Europe', 'LOC')\n", + "('Eridanus', 'GPE')\n", + "('Helius (Sun', 'ORG')\n", + "('Phaethon', 'WORK_OF_ART')\n", + "('Gauls', 'PERSON')\n", + "('Celts', 'NORP')\n", + "('the Ionian Sea', 'LOC')\n", + "('Illyrian', 'NORP')\n", + "('Macedonia', 'GPE')\n", + "('Macedonians', 'NORP')\n", + "('Thessaly', 'GPE')\n", + "('Thermopylae', 'GPE')\n", + "('Greeks', 'NORP')\n", + "('Alexander', 'PERSON')\n", + "('Philip', 'PERSON')\n", + "('Antipater', 'PERSON')\n", + "('Greeks', 'NORP')\n", + "('1.4.2', 'CARDINAL')\n", + "('Athenians', 'NORP')\n", + "('Greeks', 'NORP')\n", + "('Macedonian', 'NORP')\n", + "('Thermopylae', 'GPE')\n", + "('Greeks', 'NORP')\n", + "('Greece', 'GPE')\n", + "('Celts', 'NORP')\n", + "('Ephialtes of Trachis once', 'ORG')\n", + "('Persians', 'NORP')\n", + "('Phocians', 'NORP')\n", + "('Oeta', 'PERSON')\n", + "('1.4.3', 'CARDINAL')\n", + "('Athenians', 'NORP')\n", + "('Greeks', 'NORP')\n", + "('two', 'CARDINAL')\n", + "('Athenians', 'NORP')\n", + "('the Lamian gulf', 'LOC')\n", + "('Thermopylae', 'GPE')\n", + "('Greeks', 'NORP')\n", + "('Greece', 'GPE')\n", + "('Gauls', 'PERSON')\n", + "('Delphi', 'ORG')\n", + "('Delphians', 'ORG')\n", + "('Phocians', 'NORP')\n", + "('Aetolians', 'GPE')\n", + "('Aetolians', 'PERSON')\n", + "('Parnassus', 'ORG')\n", + "('Gauls', 'PERSON')\n", + "('two', 'CARDINAL')\n", + "('Hyperochus', 'PERSON')\n", + "('Amadocus', 'ORG')\n", + "('Hyperboreans', 'NORP')\n", + "('third', 'ORDINAL')\n", + "('Pyrrhus', 'NORP')\n", + "('Achilles', 'PERSON')\n", + "('Delphians', 'NORP')\n", + "('1.4.5', 'CARDINAL')\n", + "('Gauls', 'PERSON')\n", + "('Asia', 'LOC')\n", + "('Pergamus', 'GPE')\n", + "('Teuthrania', 'GPE')\n", + "('Gauls', 'PERSON')\n", + "('Sangarius', 'ORG')\n", + "('Ancyra', 'PERSON')\n", + "('Phrygians', 'NORP')\n", + "('Midas', 'PRODUCT')\n", + "('Gordius', 'ORG')\n", + "('Midas', 'ORG')\n", + "('Zeus', 'PERSON')\n", + "('the Spring of Midas', 'EVENT')\n", + "('Midas', 'PERSON')\n", + "('Silenus', 'PERSON')\n", + "('Pergameni', 'PERSON')\n", + "('Ancyra', 'PRODUCT')\n", + "('Pessinus', 'LOC')\n", + "('Mount Agdistis', 'ORG')\n", + "('Attis', 'ORG')\n", + "('Gauls', 'PERSON')\n", + "('Cabeiri', 'ORG')\n", + "('Arcadians', 'NORP')\n", + "('Asia', 'LOC')\n", + "('Telephus', 'NORP')\n", + "('three', 'CARDINAL')\n", + "('Asia', 'LOC')\n", + "('Gauls', 'PERSON')\n", + "('Telephus', 'NORP')\n", + "('Agamemnon', 'ORG')\n", + "('Greeks', 'NORP')\n", + "('Troy', 'PERSON')\n", + "('Meian', 'NORP')\n", + "('the Council Chamber of the Five Hundred', 'ORG')\n", + "('Tholos (Round House', 'PRODUCT')\n", + "('Athenian', 'NORP')\n", + "('ten', 'CARDINAL')\n", + "('four', 'CARDINAL')\n", + "('1.5.2', 'CARDINAL')\n", + "('Hippothoon', 'PERSON')\n", + "('Poseidon', 'GPE')\n", + "('Alope', 'GPE')\n", + "('Cercyon', 'GPE')\n", + "('Antiochus', 'NORP')\n", + "('one', 'CARDINAL')\n", + "('Heracles', 'PERSON')\n", + "('Meda', 'LOC')\n", + "('Phylas', 'GPE')\n", + "('Ajax', 'ORG')\n", + "('Telamon', 'PERSON')\n", + "('Athenians', 'NORP')\n", + "('Leos', 'PERSON')\n", + "('Erechtheus', 'ORG')\n", + "('Eleusinians', 'NORP')\n", + "('Immaradus', 'PERSON')\n", + "('Eumolpus', 'GPE')\n", + "('Aegeus', 'PERSON')\n", + "('Oeneus', 'PERSON')\n", + "('Pandion', 'ORG')\n", + "('Acamas', 'PERSON')\n", + "('one', 'CARDINAL')\n", + "('Theseus', 'PERSON')\n", + "('Cecrops', 'GPE')\n", + "('Cecrops', 'PERSON')\n", + "('Actaeus', 'PERSON')\n", + "('Erechtheus', 'ORG')\n", + "('Pandion', 'ORG')\n", + "('Erichthonius', 'ORG')\n", + "('Erichthonius', 'ORG')\n", + "('Cecrops', 'GPE')\n", + "('second', 'ORDINAL')\n", + "('Metionidae', 'PERSON')\n", + "('Megara', 'PERSON')\n", + "('Pylas king', 'PERSON')\n", + "('Megara', 'PERSON')\n", + "('Pandion', 'ORG')\n", + "('Megarid', 'PERSON')\n", + "('Athena the Gannet', 'GPE')\n", + "('Metionidae', 'PERSON')\n", + "('Megara', 'PERSON')\n", + "('Aegeus', 'PERSON')\n", + "('Athenians', 'NORP')\n", + "('Pandion', 'LAW')\n", + "('Tereus', 'PERSON')\n", + "('Procne', 'ORG')\n", + "('Philomela', 'PERSON')\n", + "('Greek', 'NORP')\n", + "('Pandion', 'LOC')\n", + "('Acropolis', 'LOC')\n", + "('1.5.5', 'CARDINAL')\n", + "('Athenian', 'NORP')\n", + "('Hadrian,25', 'ORG')\n", + "('Hebrews', 'NORP')\n", + "('Syria', 'GPE')\n", + "('Greek', 'NORP')\n", + "('Athens', 'GPE')\n", + "('Attalus', 'ORG')\n", + "('Ptolemy', 'PERSON')\n", + "('Egypt', 'GPE')\n", + "('Mysians', 'ORG')\n", + "('1.6.2', 'CARDINAL')\n", + "('27', 'CARDINAL')\n", + "('Macedonians', 'NORP')\n", + "('Ptolemy', 'PERSON')\n", + "('Philip', 'GPE')\n", + "('Amyntas', 'ORG')\n", + "('Lagus', 'PERSON')\n", + "('Lagus', 'PERSON')\n", + "('Philip', 'PERSON')\n", + "('Ptolemy', 'GPE')\n", + "('Asia', 'LOC')\n", + "('Alexander', 'PERSON')\n", + "('Oxydracae', 'FAC')\n", + "('Aridaeus', 'ORG')\n", + "('Philip', 'PERSON')\n", + "('Egypt', 'GPE')\n", + "('Cleomenes', 'PERSON')\n", + "('Alexander', 'PERSON')\n", + "('Perdiccas', 'GPE')\n", + "('Macedonians', 'NORP')\n", + "('Alexander to Aegae', 'ORG')\n", + "('Macedonian', 'NORP')\n", + "('Memphis', 'GPE')\n", + "('Perdiccas', 'GPE')\n", + "('Egypt', 'GPE')\n", + "('Perdiccas', 'PERSON')\n", + "('Aridaeus', 'ORG')\n", + "('Philip', 'PERSON')\n", + "('Alexander', 'PERSON')\n", + "('Roxana', 'PERSON')\n", + "('Oxyartes', 'PERSON')\n", + "('Alexander', 'PERSON')\n", + "('Ptolemy', 'GPE')\n", + "('Egypt', 'GPE')\n", + "('Egypt', 'GPE')\n", + "('Macedonians', 'NORP')\n", + "('Perdiccas', 'GPE')\n", + "('Ptolemy', 'PERSON')\n", + "('Syrians', 'NORP')\n", + "('Phoenicia', 'GPE')\n", + "('Seleucus', 'GPE')\n", + "('Antiochus', 'NORP')\n", + "('Antigonus', 'LOC')\n", + "('Antigonus', 'LOC')\n", + "('Cassander', 'PRODUCT')\n", + "('Lysimachus', 'PERSON')\n", + "('Thrace', 'GPE')\n", + "('Seleucus', 'GPE')\n", + "('Antigonus', 'LOC')\n", + "('Antigonus', 'LOC')\n", + "('Cyrene', 'PERSON')\n", + "('Ptolemy', 'GPE')\n", + "('Libya', 'GPE')\n", + "('Syrians', 'NORP')\n", + "('Phoenicians', 'NORP')\n", + "('Demetrius', 'PERSON')\n", + "('Hellespont', 'GPE')\n", + "('Demetrius', 'PERSON')\n", + "('Ptolemy', 'PERSON')\n", + "('Demetrius', 'PERSON')\n", + "('Ptolemy', 'PERSON')\n", + "('Egyptians', 'NORP')\n", + "('Antigonus Ptolemy', 'GPE')\n", + "('Egypt', 'GPE')\n", + "('1.6.6', 'CARDINAL')\n", + "('Demetrius', 'PERSON')\n", + "('Cyprus', 'GPE')\n", + "('Menelaus', 'ORG')\n", + "('Ptolemy', 'GPE')\n", + "('Ptolemy', 'PERSON')\n", + "('Ptolemy', 'PERSON')\n", + "('Egypt', 'GPE')\n", + "('Antigonus', 'LOC')\n", + "('Demetrius', 'PERSON')\n", + "('Ptolemy', 'PERSON')\n", + "('Pelusium', 'ORG')\n", + "('Egypt', 'GPE')\n", + "('Demetrius', 'ORG')\n", + "('Rhodians', 'NORP')\n", + "('Egyptians', 'NORP')\n", + "('Rhodians', 'NORP')\n", + "('Ptolemy', 'PERSON')\n", + "('Egypt', 'GPE')\n", + "('Rhodes', 'PERSON')\n", + "('Lysimachus', 'PERSON')\n", + "('Cassander', 'PRODUCT')\n", + "('Seleucus', 'GPE')\n", + "('Cassander', 'PERSON')\n", + "('Macedonia', 'GPE')\n", + "('Antigonus', 'LOC')\n", + "('Antigonus, Ptolemy', 'GPE')\n", + "('Syrians', 'NORP')\n", + "('Cyprus', 'GPE')\n", + "('Pyrrhus', 'NORP')\n", + "('Thesprotia', 'ORG')\n", + "('Cyrene', 'PERSON')\n", + "('Magas', 'GPE')\n", + "('Berenice', 'PERSON')\n", + "('Ptolemy', 'GPE')\n", + "('Cyrene', 'PERSON')\n", + "('the fifth year', 'DATE')\n", + "('Ptolemy', 'PERSON')\n", + "('Philip', 'GPE')\n", + "('Amyntas', 'ORG')\n", + "('Eurydice', 'ORG')\n", + "('Antipater', 'PERSON')\n", + "('Berenice', 'GPE')\n", + "('Antipater', 'PERSON')\n", + "('Egypt', 'GPE')\n", + "('Eurydice', 'ORG')\n", + "('Egypt', 'GPE')\n", + "('Ptolemy', 'GPE')\n", + "('Athenians', 'NORP')\n", + "('Berenice', 'GPE')\n", + "('Antipater', 'PERSON')\n", + "('Ptolemy', 'PERSON')\n", + "('Arsinoe', 'PERSON')\n", + "('Macedonian', 'NORP')\n", + "('Egyptian', 'NORP')\n", + "('Secondly', 'ORDINAL')\n", + "('Argaeus', 'PERSON')\n", + "('Memphis', 'GPE')\n", + "('Alexander', 'PERSON')\n", + "('Eurydice', 'ORG')\n", + "('Cyprians', 'NORP')\n", + "('Magas', 'GPE')\n", + "('half', 'CARDINAL')\n", + "('Ptolemy', 'PERSON')\n", + "('Cyrene', 'PERSON')\n", + "('Berenice', 'PERSON')\n", + "('Philip', 'GPE')\n", + "('Macedonians', 'NORP')\n", + "('Cyrene', 'PERSON')\n", + "('Ptolemy', 'GPE')\n", + "('Egypt', 'GPE')\n", + "('1.7.2', 'CARDINAL')\n", + "('Egypt', 'GPE')\n", + "('Cyrenians', 'NORP')\n", + "('Magas', 'GPE')\n", + "('Marmaridae', 'PERSON')\n", + "('Libyan', 'NORP')\n", + "('Cyrene', 'PERSON')\n", + "('Ptolemy', 'PERSON')\n", + "('Magas', 'GPE')\n", + "('some four thousand', 'CARDINAL')\n", + "('Gauls', 'PERSON')\n", + "('Egypt', 'GPE')\n", + "('1.7.3', 'CARDINAL')\n", + "('Magas', 'GPE')\n", + "('Apame', 'PERSON')\n", + "('Antiochus', 'NORP')\n", + "('Seleucus', 'GPE')\n", + "('Antiochus', 'PERSON')\n", + "('Seleucus', 'PERSON')\n", + "('Ptolemy', 'PERSON')\n", + "('Egypt', 'GPE')\n", + "('Antiochus', 'NORP')\n", + "('Ptolemy', 'PERSON')\n", + "('Antiochus', 'NORP')\n", + "('Antiochus', 'NORP')\n", + "('Egypt', 'GPE')\n", + "('Ptolemy', 'PERSON')\n", + "('Athenians', 'NORP')\n", + "('Antigonus', 'LOC')\n", + "('Macedonians', 'NORP')\n", + "('Athens', 'GPE')\n", + "('Arsinoe', 'PERSON')\n", + "('Egypt', 'GPE')\n", + "('Arsinoites', 'ORG')\n", + "('1.8.1', 'CARDINAL')\n", + "('Attalus', 'ORG')\n", + "('Athenian', 'NORP')\n", + "('Macedonian', 'NORP')\n", + "('Docimus', 'GPE')\n", + "('Antigonus', 'LOC')\n", + "('Lysimachus', 'ORG')\n", + "('Paphlagonian', 'NORP')\n", + "('Philetaerus', 'PERSON')\n", + "('Philetaerus', 'PERSON')\n", + "('Lysimachus', 'ORG')\n", + "('Seleucus', 'GPE')\n", + "('Lysimachus', 'ORG')\n", + "('Attalus', 'ORG')\n", + "('Attalus', 'ORG')\n", + "('Philetaerus', 'GPE')\n", + "('Eumenes', 'PERSON')\n", + "('Gauls', 'PERSON')\n", + "('1.8.2', 'CARDINAL')\n", + "('Amphiaraus', 'ORG')\n", + "('Eirene', 'ORG')\n", + "('Plutus', 'PERSON')\n", + "('Lycurgus,29', 'GPE')\n", + "('Lycophron', 'ORG')\n", + "('Callias', 'NORP')\n", + "('Athenians', 'NORP')\n", + "('Greeks', 'NORP')\n", + "('Artaxerxes', 'PERSON')\n", + "('Demosthenes', 'PERSON')\n", + "('Athenians', 'NORP')\n", + "('Calauria', 'GPE')\n", + "('Troezen', 'ORG')\n", + "('Lamia', 'PERSON')\n", + "('second', 'ORDINAL')\n", + "('Demosthenes', 'PERSON')\n", + "('Calauria', 'GPE')\n", + "('Greek', 'NORP')\n", + "('Archias', 'PERSON')\n", + "('Antipater', 'PERSON')\n", + "('Macedonians', 'NORP')\n", + "('Archias', 'PERSON')\n", + "('Thurian', 'NORP')\n", + "('Antipater', 'PERSON')\n", + "('Macedonians', 'NORP')\n", + "('Greeks', 'NORP')\n", + "('Thessaly', 'GPE')\n", + "('Athens', 'GPE')\n", + "('1.8.4', 'CARDINAL')\n", + "('Demosthenes', 'PRODUCT')\n", + "('Ares', 'PERSON')\n", + "('two', 'CARDINAL')\n", + "('Aphrodite', 'PERSON')\n", + "('one', 'CARDINAL')\n", + "('Ares', 'PERSON')\n", + "('Alcamenes', 'PERSON')\n", + "('one', 'CARDINAL')\n", + "('Athena', 'ORG')\n", + "('Parian', 'NORP')\n", + "('Locrus', 'GPE')\n", + "('Praxiteles', 'ORG')\n", + "('Heracles', 'GPE')\n", + "('Theseus', 'PERSON')\n", + "('Apollo', 'ORG')\n", + "('laws33', 'ORG')\n", + "('Athenians', 'NORP')\n", + "('Pindar', 'PERSON')\n", + "('Athenians', 'NORP')\n", + "('1.8.5', 'CARDINAL')\n", + "('Harmodius', 'PERSON')\n", + "('Aristogiton', 'GPE')\n", + "('Critius,35', 'ORG')\n", + "('Antenor', 'EVENT')\n", + "('Xerxes', 'PERSON')\n", + "('Athens', 'GPE')\n", + "('Athenians', 'NORP')\n", + "('Athenians', 'NORP')\n", + "('Antiochus', 'PERSON')\n", + "('1.8.6', 'CARDINAL')\n", + "('the Odeum (Music Hall', 'ORG')\n", + "('Egyptian', 'NORP')\n", + "('Ptolemy', 'PERSON')\n", + "('one', 'CARDINAL')\n", + "('Philadelphus', 'ORG')\n", + "('Lagus', 'PERSON')\n", + "('Soter', 'PERSON')\n", + "('Rhodians', 'NORP')\n", + "('Philadelphus', 'ORG')\n", + "('Arsinoe', 'PERSON')\n", + "('PTOLEMY PHILOMETOR', 'PERSON')\n", + "('EGYPT', 'GPE')\n", + "('1.9.1', 'CARDINAL')\n", + "('one', 'CARDINAL')\n", + "('Philometor', 'ORG')\n", + "('eighth', 'ORDINAL')\n", + "('Ptolemy', 'GPE')\n", + "('Lagus', 'PERSON')\n", + "('Cyprus', 'GPE')\n", + "('Cleopatra', 'PERSON')\n", + "('Alexander', 'PERSON')\n", + "('Egyptians', 'NORP')\n", + "('Alexander', 'PERSON')\n", + "('Alexander', 'PERSON')\n", + "('second', 'ORDINAL')\n", + "('Cyprus', 'GPE')\n", + "('Ptolemy', 'PERSON')\n", + "('Ptolemy', 'PERSON')\n", + "('Alexandria', 'PERSON')\n", + "('Ptolemy', 'PERSON')\n", + "('Alexander', 'PERSON')\n", + "('Cyprus', 'GPE')\n", + "('Ptolemy', 'GPE')\n", + "('Cleopatra', 'PERSON')\n", + "('Alexander', 'PERSON')\n", + "('Egyptians', 'NORP')\n", + "('Alexander', 'PERSON')\n", + "('Ptolemy', 'PERSON')\n", + "('second', 'ORDINAL')\n", + "('Egypt', 'GPE')\n", + "('Thebans', 'NORP')\n", + "('two years', 'DATE')\n", + "('Greeks', 'NORP')\n", + "('Delphi', 'ORG')\n", + "('Orchomenians', 'NORP')\n", + "('Ptolemy', 'PERSON')\n", + "('Athenians', 'NORP')\n", + "('Berenice', 'GPE')\n", + "('1.9.4', 'CARDINAL')\n", + "('Egyptians', 'NORP')\n", + "('Philip', 'PERSON')\n", + "('Alexander', 'PERSON')\n", + "('Egyptians', 'NORP')\n", + "('Philip', 'PERSON')\n", + "('Alexander', 'PERSON')\n", + "('1.9.5', 'ORG')\n", + "('Macedonian', 'NORP')\n", + "('one', 'CARDINAL')\n", + "('Alexander', 'ORG')\n", + "('Alexander', 'PERSON')\n", + "('Macedonians', 'NORP')\n", + "('Alexander', 'PERSON')\n", + "('Thracians', 'NORP')\n", + "('Macedonians', 'NORP')\n", + "('Alexander', 'PERSON')\n", + "('Philip', 'GPE')\n", + "('Thrace', 'GPE')\n", + "('Celts', 'NORP')\n", + "('Thracians', 'NORP')\n", + "('Romans', 'NORP')\n", + "('Thracian', 'NORP')\n", + "('Romans', 'NORP')\n", + "('Thrace', 'ORG')\n", + "('Celtic', 'NORP')\n", + "('Odrysae', 'ORG')\n", + "('secondly', 'ORDINAL')\n", + "('Getae', 'GPE')\n", + "('Agathocles', 'PERSON')\n", + "('first', 'ORDINAL')\n", + "('Getae', 'PERSON')\n", + "('Getic', 'NORP')\n", + "('Ister', 'PERSON')\n", + "('Agathocles', 'PERSON')\n", + "('Lysimachus', 'PERSON')\n", + "('Agathocles', 'PERSON')\n", + "('Getic', 'NORP')\n", + "('Agathocles Lysandra', 'PERSON')\n", + "('Ptolemy', 'GPE')\n", + "('Lagus', 'PERSON')\n", + "('Eurydice', 'ORG')\n", + "('Asia', 'LOC')\n", + "('Ephesus', 'GPE')\n", + "('Lebedos', 'GPE')\n", + "('Phoenix', 'GPE')\n", + "('Mermesianax', 'PERSON')\n", + "('Pyrrhus', 'NORP')\n", + "('Aeacides', 'EVENT')\n", + "('Epeirus', 'PERSON')\n", + "('Pyrrhus', 'NORP')\n", + "('Epeirus', 'PERSON')\n", + "('Hieronymus', 'PERSON')\n", + "('Hieronymus', 'PERSON')\n", + "('Antigonus', 'LOC')\n", + "('Epeirot', 'PERSON')\n", + "('Macedonian', 'NORP')\n", + "('Lysimachus', 'PERSON')\n", + "('Alexander', 'PERSON')\n", + "('Alexander', 'PERSON')\n", + "('Epeirot', 'PERSON')\n", + "('Pyrrhus', 'NORP')\n", + "('Hieronymus', 'PERSON')\n", + "('Lysimachus', 'ORG')\n", + "('Cardians', 'NORP')\n", + "('Lysimachea', 'PERSON')\n", + "('Thracian', 'NORP')\n", + "('Chersonesus', 'PERSON')\n", + "('1.10.1', 'CARDINAL')\n", + "('Aridaeus', 'ORG')\n", + "('Cassander', 'PERSON')\n", + "('Lysimachus', 'NORP')\n", + "('Macedon', 'GPE')\n", + "('Demetrius', 'PERSON')\n", + "('Antigonus, Lysimachus', 'ORG')\n", + "('Demetrius', 'PERSON')\n", + "('Macedonia', 'GPE')\n", + "('Alexander', 'PERSON')\n", + "('Cassander', 'PERSON')\n", + "('Alexander himself38', 'PERSON')\n", + "('Macedonians', 'NORP')\n", + "('Pyrrhus', 'PERSON')\n", + "('Thrace', 'PERSON')\n", + "('Nestians', 'NORP')\n", + "('Macedonians', 'NORP')\n", + "('Macedonia', 'GPE')\n", + "('Pyrrhus', 'NORP')\n", + "('Epeirus', 'ORG')\n", + "('Demetrius', 'PERSON')\n", + "('Asia', 'LOC')\n", + "('Seleucus', 'GPE')\n", + "('Pyrrhus', 'NORP')\n", + "('Lysimachus', 'PERSON')\n", + "('Demetrius', 'PERSON')\n", + "('Seleucus', 'GPE')\n", + "('Pyrrhus', 'PERSON')\n", + "('Antigonus', 'LOC')\n", + "('Demetrius', 'PERSON')\n", + "('Pyrrhus', 'NORP')\n", + "('Macedonia', 'GPE')\n", + "('Pyrrhus', 'NORP')\n", + "('Epeirus', 'PERSON')\n", + "('Love', 'WORK_OF_ART')\n", + "('Agathocles', 'PERSON')\n", + "('Lysandra', 'PERSON')\n", + "('Lysandra', 'PERSON')\n", + "('Arsinoe', 'PERSON')\n", + "('Arsinoe', 'PERSON')\n", + "('Agathocles', 'GPE')\n", + "('Agathocles', 'GPE')\n", + "('Arsinoe', 'PERSON')\n", + "('Agathocles', 'PERSON')\n", + "('Lysimachus', 'ORG')\n", + "('Arsinoe', 'PERSON')\n", + "('Agathocles', 'GPE')\n", + "('Lysandra', 'PERSON')\n", + "('Seleucus', 'GPE')\n", + "('Ptolemy', 'PERSON')\n", + "('Seleucus', 'GPE')\n", + "('Alexander', 'PERSON')\n", + "('Odrysian', 'NORP')\n", + "('Babylon', 'GPE')\n", + "('Seleucus', 'GPE')\n", + "('Philetaerus', 'GPE')\n", + "('Lysimachus', 'ORG')\n", + "('Agathocles', 'PERSON')\n", + "('Arsinoe', 'PERSON')\n", + "('Pergamus', 'PERSON')\n", + "('Caicus', 'ORG')\n", + "('Seleucus', 'GPE')\n", + "('1.10.5', 'CARDINAL')\n", + "('Asia,40', 'GPE')\n", + "('Seleucus', 'PERSON')\n", + "('Alexander', 'PERSON')\n", + "('Odrysian', 'NORP')\n", + "('Lysandra', 'PERSON')\n", + "('Chersonesus', 'PERSON')\n", + "('Cardia', 'GPE')\n", + "('1.11.1', 'CARDINAL')\n", + "('Athenians', 'NORP')\n", + "('Pyrrhus', 'NORP')\n", + "('Pyrrhus', 'PERSON')\n", + "('Alexander', 'PERSON')\n", + "('Aeacides', 'EVENT')\n", + "('Arybbas', 'ORG')\n", + "('Alexander', 'PERSON')\n", + "('Neoptolemus', 'GPE')\n", + "('Neoptolemus', 'GPE')\n", + "('Aryblas was Alcetas', 'ORG')\n", + "('Tharypus', 'PERSON')\n", + "('Tharypus', 'PERSON')\n", + "('Achilles', 'ORG')\n", + "('fifteen', 'CARDINAL')\n", + "('Pyrrhus', 'PERSON')\n", + "('first', 'ORDINAL')\n", + "('Troy', 'PERSON')\n", + "('Thessaly', 'GPE')\n", + "('Epeirus', 'PERSON')\n", + "('Helenus', 'GPE')\n", + "('Hermione Pyrrhus', 'PERSON')\n", + "('Andromache', 'ORG')\n", + "('Molossus', 'PERSON')\n", + "('Pielus', 'GPE')\n", + "('Pergamus', 'PERSON')\n", + "('Helenus', 'ORG')\n", + "('Cestrinus', 'LOC')\n", + "('Andromache', 'ORG')\n", + "('Delphi', 'ORG')\n", + "('Molossus', 'PERSON')\n", + "('Pyrrhus', 'PERSON')\n", + "('Cestrinus', 'LOC')\n", + "('Epeirots', 'ORG')\n", + "('Thyamis', 'ORG')\n", + "('Pergamus', 'PERSON')\n", + "('Asia', 'LOC')\n", + "('Areius', 'NORP')\n", + "('Teuthrania', 'GPE')\n", + "('Andromache', 'ORG')\n", + "('Epeirus', 'ORG')\n", + "('Pyrrhus', 'NORP')\n", + "('Aeacides', 'EVENT')\n", + "('Molossus', 'PERSON')\n", + "('PYRRHUS', 'ORG')\n", + "('MACEDONIA', 'ORG')\n", + "('1.11.3', 'CARDINAL')\n", + "('Tharypus', 'PERSON')\n", + "('Epeirus', 'PERSON')\n", + "('one', 'CARDINAL')\n", + "('Alcetas', 'ORG')\n", + "('Alexander', 'PERSON')\n", + "('Neoptolemus', 'GPE')\n", + "('Leucani', 'PERSON')\n", + "('Epeirus', 'ORG')\n", + "('Antipater', 'PERSON')\n", + "('Aeacides', 'PERSON')\n", + "('Arybbas', 'ORG')\n", + "('Aridaeus', 'ORG')\n", + "('Macedonians', 'NORP')\n", + "('Epeirots', 'ORG')\n", + "('Aridaeus', 'ORG')\n", + "('Macedonians', 'NORP')\n", + "('Cassander', 'PRODUCT')\n", + "('Aeacides', 'PERSON')\n", + "('first', 'ORDINAL')\n", + "('Epeirots', 'ORG')\n", + "('Epeirus', 'PERSON')\n", + "('Cassander', 'PERSON')\n", + "('Oeneadae', 'GPE')\n", + "('Philip', 'PERSON')\n", + "('Cassander', 'ORG')\n", + "('Aeacides', 'PERSON')\n", + "('Aeacides', 'PERSON')\n", + "('1.11.5', 'CARDINAL')\n", + "('The Epeirots accepted Alcetas', 'ORG')\n", + "('Arybbas', 'ORG')\n", + "('Aeacides', 'PERSON')\n", + "('Epeirots', 'ORG')\n", + "('night', 'TIME')\n", + "('Pyrrhus', 'PERSON')\n", + "('Aeacides', 'EVENT')\n", + "('Cassander', 'PRODUCT')\n", + "('years', 'DATE')\n", + "('Macedonians', 'NORP')\n", + "('Pyrrhus', 'PERSON')\n", + "('Ptolemy', 'GPE')\n", + "('Lagus', 'PERSON')\n", + "('Egypt', 'GPE')\n", + "('Ptolemy', 'PERSON')\n", + "('half', 'CARDINAL')\n", + "('Egyptian', 'NORP')\n", + "('first', 'ORDINAL')\n", + "('Greeks', 'NORP')\n", + "('Pyrrhus', 'NORP')\n", + "('Corcyraeans', 'NORP')\n", + "('Lysimachus', 'ORG')\n", + "('Corcyra', 'PERSON')\n", + "('Demetrius', 'PERSON')\n", + "('Macedonia', 'GPE')\n", + "('Lysimachus', 'ORG')\n", + "('Romans', 'NORP')\n", + "('1.11.7', 'CARDINAL')\n", + "('first', 'ORDINAL')\n", + "('Greek', 'NORP')\n", + "('Aeneas', 'PERSON')\n", + "('Diomedes', 'ORG')\n", + "('Argives', 'GPE')\n", + "('One', 'CARDINAL')\n", + "('Athenians', 'NORP')\n", + "('Italy', 'GPE')\n", + "('Romans', 'NORP')\n", + "('Alexander', 'PERSON')\n", + "('Neoptolemus', 'GPE')\n", + "('Pyrrhus', 'NORP')\n", + "('Leucani', 'PERSON')\n", + "('Romans', 'NORP')\n", + "('1.12.1', 'CARDINAL')\n", + "('Pyrrhus', 'PERSON')\n", + "('first', 'ORDINAL')\n", + "('the Ionian Sea', 'LOC')\n", + "('Greece', 'GPE')\n", + "('Tarentines', 'PERSON')\n", + "('Romans', 'NORP')\n", + "('Corcyra', 'PERSON')\n", + "('Tarentine', 'PERSON')\n", + "('Italy', 'GPE')\n", + "('Greece', 'GPE')\n", + "('their hour', 'TIME')\n", + "('Pyrrhus', 'PERSON')\n", + "('Troy', 'PERSON')\n", + "('Achilles', 'PERSON')\n", + "('Trojans', 'NORP')\n", + "('1.12.2', 'CARDINAL')\n", + "('Memoirs', 'WORK_OF_ART')\n", + "('Pyrrhus', 'NORP')\n", + "('Italy', 'GPE')\n", + "('Romans', 'NORP')\n", + "('Romans', 'NORP')\n", + "('Tarentines', 'PERSON')\n", + "('1.12.3', 'CARDINAL')\n", + "('Romans', 'NORP')\n", + "('first', 'ORDINAL')\n", + "('European', 'NORP')\n", + "('Alexander', 'PERSON')\n", + "('Porus', 'PERSON')\n", + "('Indians', 'NORP')\n", + "('Pyrrhus', 'NORP')\n", + "('Demetrius', 'PERSON')\n", + "('Romans', 'NORP')\n", + "('1.12.4', 'CARDINAL')\n", + "('Macedonians', 'NORP')\n", + "('Asia', 'LOC')\n", + "('Indians', 'NORP')\n", + "('Libyans', 'NORP')\n", + "('Homer', 'PERSON')\n", + "('1.12.5', 'CARDINAL')\n", + "('Sicily', 'PERSON')\n", + "('Syracusans', 'PERSON')\n", + "('Carthaginians', 'NORP')\n", + "('Greek', 'NORP')\n", + "('Syracuse', 'ORG')\n", + "('Tarentum', 'ORG')\n", + "('Sicily', 'GPE')\n", + "('Carthaginians', 'NORP')\n", + "('Syracuse', 'GPE')\n", + "('Carthaginians', 'NORP')\n", + "('Phoenicians', 'NORP')\n", + "('non-Greek', 'NORP')\n", + "('that day', 'DATE')\n", + "('Pyrrhus', 'PERSON')\n", + "('Epeirots', 'ORG')\n", + "('Troy', 'PERSON')\n", + "('Homer', 'ORG')\n", + "('Odyssey', 'GPE')\n", + "('11.122', 'CARDINAL')\n", + "('1.13.1', 'CARDINAL')\n", + "('Pyrrhus', 'NORP')\n", + "('Tarentum', 'ORG')\n", + "('Romans', 'NORP')\n", + "('Sicily', 'PERSON')\n", + "('first', 'ORDINAL')\n", + "('Asia', 'LOC')\n", + "('Antigonus', 'LOC')\n", + "('Antigonus', 'LOC')\n", + "('Epeirot', 'PERSON')\n", + "('Tarentine', 'PERSON')\n", + "('Romans', 'NORP')\n", + "('Macedonians', 'NORP')\n", + "('Asiatic', 'NORP')\n", + "('Pyrrhus', 'NORP')\n", + "('Romans', 'NORP')\n", + "('Pyrrhus', 'NORP')\n", + "('Ceraunian', 'NORP')\n", + "('1.13.2', 'CARDINAL')\n", + "('Italy Pyrrhus', 'NORP')\n", + "('Antigonus', 'LOC')\n", + "('Italy', 'GPE')\n", + "('Antigonus', 'LOC')\n", + "('Macedonia', 'GPE')\n", + "('Thessalians', 'ORG')\n", + "('Pyrrhus', 'NORP')\n", + "('Celtic', 'NORP')\n", + "('Itonian Athena', 'ORG')\n", + "('Pherae', 'ORG')\n", + "('Larisa', 'PERSON')\n", + "('1.13.3', 'CARDINAL')\n", + "('Molossian', 'PERSON')\n", + "('Gauls', 'PERSON')\n", + "('Itonian\\nAthena', 'ORG')\n", + "('Antigonus', 'LOC')\n", + "('Tis', 'PERSON')\n", + "('Macedonians', 'NORP')\n", + "('Dodonian Zeus', 'PERSON')\n", + "('Asia', 'LOC')\n", + "('Greeks', 'NORP')\n", + "('Zeus', 'PERSON')\n", + "('Macedonia', 'GPE')\n", + "('Macedonia', 'GPE')\n", + "('1.13.4', 'CARDINAL')\n", + "('first', 'ORDINAL')\n", + "('Cleonymus', 'PERSON')\n", + "('Cleonymus', 'PERSON')\n", + "('Pyrrhus', 'PERSON')\n", + "('Macedonian', 'NORP')\n", + "('Peloponnesus', 'PERSON')\n", + "('Lacedaemonian', 'PERSON')\n", + "('Lacedaemonian', 'NORP')\n", + "('Cleonymus', 'GPE')\n", + "('Greeks', 'LANGUAGE')\n", + "('Pleistoanax', 'ORG')\n", + "('Pausanias', 'PERSON')\n", + "('Cleombrotus', 'ORG')\n", + "('Leuctra', 'GPE')\n", + "('Epaminondas', 'PERSON')\n", + "('Thebans', 'NORP')\n", + "('Agesipolis', 'PERSON')\n", + "('Cleomenes', 'GPE')\n", + "('Agesipolis', 'PERSON')\n", + "('Cleomenes', 'PERSON')\n", + "('1.13.5', 'CARDINAL')\n", + "('Cleomenes', 'ORG')\n", + "('two', 'CARDINAL')\n", + "('Acrotatus', 'ORG')\n", + "('Cleonymus', 'PERSON')\n", + "('Acrotatus', 'ORG')\n", + "('first', 'ORDINAL')\n", + "('Cleomenes', 'PERSON')\n", + "('Areus', 'GPE')\n", + "('Acrotatus', 'ORG')\n", + "('Cleonymus', 'PERSON')\n", + "('Lacedaemonians', 'NORP')\n", + "('Leonidas', 'PERSON')\n", + "('Persians', 'NORP')\n", + "('Demosthenes', 'PRODUCT')\n", + "('Athenians', 'NORP')\n", + "('1.13.6', 'CARDINAL')\n", + "('first', 'ORDINAL')\n", + "('Boeotia', 'GPE')\n", + "('Antipater', 'PERSON')\n", + "('Thirdly', 'ORDINAL')\n", + "('Pyrrhus', 'NORP')\n", + "('fourth', 'ORDINAL')\n", + "('Argives', 'GPE')\n", + "('Messenians', 'NORP')\n", + "('Sparta', 'GPE')\n", + "('Sparta', 'GPE')\n", + "('Demetrius', 'PERSON')\n", + "('1.13.7', 'CARDINAL')\n", + "('the Laconian war', 'EVENT')\n", + "('Antigonus', 'LOC')\n", + "('Macedonian', 'NORP')\n", + "('Peloponnesus', 'PERSON')\n", + "('Pyrrhus', 'PERSON')\n", + "('Lacedaemon', 'PERSON')\n", + "('Peloponnesus', 'PERSON')\n", + "('Epeirus', 'PERSON')\n", + "('Macedonia', 'GPE')\n", + "('Argos', 'ORG')\n", + "('Laconia', 'GPE')\n", + "('Pyrrhus', 'NORP')\n", + "('Argos', 'ORG')\n", + "('1.13.8', 'CARDINAL')\n", + "('Pyrrhus', 'NORP')\n", + "('death52', 'GPE')\n", + "('Argives', 'PERSON')\n", + "('Demeter', 'PERSON')\n", + "('Argives', 'GPE')\n", + "('Lyceas', 'GPE')\n", + "('Demeter', 'PERSON')\n", + "('Pyrrhus', 'NORP')\n", + "('1.13.9', 'CARDINAL')\n", + "('three', 'CARDINAL')\n", + "('Homer', 'PERSON')\n", + "('Achilles', 'PERSON')\n", + "('Alexander', 'PERSON')\n", + "('Priam', 'PERSON')\n", + "('Apollo', 'ORG')\n", + "('Delphians', 'LAW')\n", + "('Pythia', 'GPE')\n", + "('Pyrrhus', 'PERSON')\n", + "('Achilles', 'PERSON')\n", + "('Aeacides', 'PRODUCT')\n", + "('Argives', 'GPE')\n", + "('Lyceas', 'PERSON')\n", + "('Hieronymus the', 'PERSON')\n", + "('Cardian', 'PRODUCT')\n", + "('Philistus', 'ORG')\n", + "('Dionysius', 'GPE')\n", + "('Syracuse', 'GPE')\n", + "('Hieronymus', 'PERSON')\n", + "('Antigonus', 'LOC')\n", + "('1.14.1', 'CARDINAL')\n", + "('Epeirot', 'PERSON')\n", + "('Odeum', 'ORG')\n", + "('Athens', 'GPE')\n", + "('Dionysus', 'PERSON')\n", + "('Enneacrunos', 'PERSON')\n", + "('Nine', 'CARDINAL')\n", + "('Peisistratus', 'ORG')\n", + "('two', 'CARDINAL')\n", + "('Demeter', 'PERSON')\n", + "('Maid', 'PERSON')\n", + "('Triptolemus', 'ORG')\n", + "('Triptolemus', 'ORG')\n", + "('Deiope', 'EVENT')\n", + "('1.14.2', 'CARDINAL')\n", + "('Greeks', 'NORP')\n", + "('Athenian', 'NORP')\n", + "('Argives', 'GPE')\n", + "('Greeks', 'NORP')\n", + "('Egyptians', 'NORP')\n", + "('Phrygians', 'NORP')\n", + "('Demeter', 'PERSON')\n", + "('Pelasgus', 'ORG')\n", + "('Maid', 'PERSON')\n", + "('Trochilus', 'ORG')\n", + "('Argos', 'ORG')\n", + "('Agenor', 'ORG')\n", + "('Attica', 'GPE')\n", + "('Eleusis', 'PERSON')\n", + "('two', 'CARDINAL')\n", + "('Eubuleus', 'PERSON')\n", + "('Triptolemus', 'ORG')\n", + "('Argives', 'GPE')\n", + "('Athenians', 'NORP')\n", + "('Triptolemus', 'ORG')\n", + "('Celeus', 'PERSON')\n", + "('first', 'ORDINAL')\n", + "('1.14.3', 'CARDINAL')\n", + "('Musaeus', 'GPE')\n", + "('Triptolemus', 'ORG')\n", + "('Oceanus', 'GPE')\n", + "('Earth', 'LOC')\n", + "('Orpheus', 'GPE')\n", + "('Eubuleus', 'PERSON')\n", + "('Triptolemus', 'ORG')\n", + "('Dysaules', 'GPE')\n", + "('Demeter', 'PERSON')\n", + "('Choerilus', 'GPE')\n", + "('Athenian', 'NORP')\n", + "('Alope', 'PERSON')\n", + "('Cercyon', 'ORG')\n", + "('Triptolemus', 'ORG')\n", + "('Amphictyon', 'PERSON')\n", + "('Triptolemus', 'ORG')\n", + "('Rarus', 'PERSON')\n", + "('Cercyon', 'GPE')\n", + "('Poseidon', 'GPE')\n", + "('Athens', 'GPE')\n", + "('1.14.4', 'CARDINAL')\n", + "('Triptolemus', 'ORG')\n", + "('Epimenides of Cnossus,53', 'GPE')\n", + "('the fortieth year', 'DATE')\n", + "('Athens', 'GPE')\n", + "('Thales', 'PERSON')\n", + "('Lacedaemonians', 'NORP')\n", + "('Cnossus', 'ORG')\n", + "('Thales', 'PERSON')\n", + "('Gortyn', 'ORG')\n", + "('Polymnastus of Colophon', 'ORG')\n", + "('Lacedaemonians', 'NORP')\n", + "('1.14.5', 'CARDINAL')\n", + "('Glory', 'GPE')\n", + "('Persians', 'NORP')\n", + "('Marathon', 'EVENT')\n", + "('Athenians', 'NORP')\n", + "('Aeschylus', 'PERSON')\n", + "('Artemisium', 'ORG')\n", + "('Salamis', 'ORG')\n", + "('Marathon and in', 'FAC')\n", + "('Persians', 'NORP')\n", + "('1.14.6', 'CARDINAL')\n", + "('Cerameicus', 'ORG')\n", + "(\"the King's Portico\", 'WORK_OF_ART')\n", + "('Hephaestus', 'ORG')\n", + "('Athena', 'ORG')\n", + "('Erichthonius', 'ORG')\n", + "('Athena', 'ORG')\n", + "('Libyan', 'NORP')\n", + "('Libyans', 'NORP')\n", + "('Goddess', 'WORK_OF_ART')\n", + "('Poseidon', 'GPE')\n", + "('Lake Tritonis', 'FAC')\n", + "('Poseidon', 'GPE')\n", + "('1.14.7', 'CARDINAL')\n", + "('first', 'ORDINAL')\n", + "('Assyrians', 'NORP')\n", + "('Assyrians', 'NORP')\n", + "('Paphians', 'NORP')\n", + "('Phoenicians', 'NORP')\n", + "('Ascalon', 'ORG')\n", + "('Palestine', 'GPE')\n", + "('Phoenicians', 'NORP')\n", + "('Cythera', 'ORG')\n", + "('Athenians', 'NORP')\n", + "('Aegeus', 'PERSON')\n", + "('Heavenly Aphrodite', 'PERSON')\n", + "('Parian', 'NORP')\n", + "('Pheidias', 'PERSON')\n", + "('One', 'CARDINAL')\n", + "('Athenian', 'NORP')\n", + "('Athmoneis', 'ORG')\n", + "('Porphyrion', 'PRODUCT')\n", + "('the Heavenly One', 'ORG')\n", + "('1.15.1', 'CARDINAL')\n", + "('Hermes of the Market-place', 'ORG')\n", + "('Athenians', 'NORP')\n", + "('Pleistarchus', 'ORG')\n", + "('Cassander', 'PERSON')\n", + "('first', 'ORDINAL')\n", + "('Athenians', 'NORP')\n", + "('Lacedaemonians', 'NORP')\n", + "('Oenoe', 'FAC')\n", + "('Argive', 'PERSON')\n", + "('1.15.2', 'CARDINAL')\n", + "('Athenians', 'NORP')\n", + "('Theseus', 'PERSON')\n", + "('Amazons', 'ORG')\n", + "('Themiscyra', 'PERSON')\n", + "('Heracles', 'PERSON')\n", + "('Athens', 'GPE')\n", + "('Troy', 'PERSON')\n", + "('Greeks', 'NORP')\n", + "('Athenians', 'NORP')\n", + "('Amazons', 'ORG')\n", + "('Greeks', 'NORP')\n", + "('Troy', 'PERSON')\n", + "('Ajax', 'ORG')\n", + "('Cassandra', 'PERSON')\n", + "('Ajax', 'ORG')\n", + "('Cassandra', 'PERSON')\n", + "('1.15.3', 'CARDINAL')\n", + "('Marathon', 'ORG')\n", + "('Attic', 'NORP')\n", + "('Phoenician', 'NORP')\n", + "('Greeks', 'NORP')\n", + "('Marathon', 'PERSON')\n", + "('Theseus', 'PERSON')\n", + "('Athena', 'ORG')\n", + "('Heracles', 'PERSON')\n", + "('Marathonians', 'PERSON')\n", + "('first', 'ORDINAL')\n", + "('Heracles', 'PERSON')\n", + "('Callimachus', 'PERSON')\n", + "('Athenians', 'NORP')\n", + "('Miltiades', 'PERSON')\n", + "('one', 'CARDINAL')\n", + "('Echetlus', 'ORG')\n", + "('1.15.4', 'CARDINAL')\n", + "('Scioneans', 'NORP')\n", + "('Lacedaemonians', 'NORP')\n", + "('1.16.1', 'CARDINAL')\n", + "('Solon', 'ORG')\n", + "('one', 'CARDINAL')\n", + "('Seleucus', 'GPE')\n", + "('Macedonia', 'GPE')\n", + "('Alexander', 'PERSON')\n", + "('Pella', 'GPE')\n", + "('Zeus', 'PERSON')\n", + "('SELEUCUS', 'PERSON')\n", + "('ANTIOCH', 'ORG')\n", + "('Alexander', 'GPE')\n", + "('Seleucus', 'GPE')\n", + "('Antigonus', 'LOC')\n", + "('Babylon', 'GPE')\n", + "('Ptolemy', 'GPE')\n", + "('Lagus', 'PERSON')\n", + "('Babylon', 'GPE')\n", + "('Antigonus', 'LOC')\n", + "('Antigonus', 'LOC')\n", + "('Demetrius', 'PERSON')\n", + "('Antigonus', 'LOC')\n", + "('1.16.2', 'CARDINAL')\n", + "('the fall', 'DATE')\n", + "('Antiochus', 'PERSON')\n", + "('Asia', 'LOC')\n", + "('Macedonia', 'GPE')\n", + "('Greeks', 'NORP')\n", + "('Ptolemy', 'PERSON')\n", + "('Lysandra', 'PERSON')\n", + "('Thunderbolt', 'PERSON')\n", + "('Seleucus', 'GPE')\n", + "('Lysimachea', 'PERSON')\n", + "('Seleucus', 'GPE')\n", + "('Macedonia', 'GPE')\n", + "('first', 'ORDINAL')\n", + "('Gauls', 'PERSON')\n", + "('Antigonus', 'LOC')\n", + "('Demetrius', 'PERSON')\n", + "('1.16.3', 'CARDINAL')\n", + "('Seleucus', 'GPE')\n", + "('Firstly', 'ORDINAL')\n", + "('Seleucus', 'GPE')\n", + "('Branchidae for the Milesians', 'WORK_OF_ART')\n", + "('Apollo', 'ORG')\n", + "('Xerxes', 'PERSON')\n", + "('Persia', 'GPE')\n", + "('Secondly', 'ORDINAL')\n", + "('Seleucea', 'ORG')\n", + "('Tigris', 'ORG')\n", + "('Babylonian', 'NORP')\n", + "('Babylon', 'GPE')\n", + "('Bel', 'GPE')\n", + "('Chaldeans', 'NORP')\n", + "('ATHENS', 'GPE')\n", + "('1.17.1', 'CARDINAL')\n", + "('Athenian', 'NORP')\n", + "('Mercy', 'LOC')\n", + "('Athenians', 'NORP')\n", + "('Greeks', 'NORP')\n", + "('Shamefastness', 'PERSON')\n", + "('1.17.2', 'CARDINAL')\n", + "('Ptolemy', 'PERSON')\n", + "('Hermae', 'GPE')\n", + "('Ptolemy', 'GPE')\n", + "('Juba', 'NORP')\n", + "('Libyan', 'NORP')\n", + "('Theseus', 'PERSON')\n", + "('Athenians', 'NORP')\n", + "('Amazons', 'ORG')\n", + "('Athena', 'ORG')\n", + "('the Olympian Zeus', 'LOC')\n", + "('Theseus', 'PERSON')\n", + "('Centaurs', 'ORG')\n", + "('Lapithae', 'PRODUCT')\n", + "('Theseus', 'PERSON')\n", + "('1.17.3', 'CARDINAL')\n", + "('third', 'ORDINAL')\n", + "('Micon', 'PRODUCT')\n", + "('Minos', 'PERSON')\n", + "('Theseus', 'PERSON')\n", + "('Crete', 'GPE')\n", + "('Periboea', 'ORG')\n", + "('Theseus', 'PERSON')\n", + "('Poseidon', 'GPE')\n", + "('Minos', 'ORG')\n", + "('Theseus', 'PERSON')\n", + "('Amphitrite', 'PERSON')\n", + "('1.17.4', 'CARDINAL')\n", + "('the end of Theseus', 'DATE')\n", + "('Heracles', 'PERSON')\n", + "('Theseus', 'PERSON')\n", + "('Thesprotia', 'ORG')\n", + "('Thesprotian', 'NORP')\n", + "('Peirithous', 'PERSON')\n", + "('Thesprotian', 'NORP')\n", + "('Cichyrus', 'ORG')\n", + "('1.17.5', 'CARDINAL')\n", + "('Thesprotia', 'ORG')\n", + "('Zeus', 'PERSON')\n", + "('Dodona', 'PERSON')\n", + "('Acherusia', 'LOC')\n", + "('Acheron', 'ORG')\n", + "('Cocytus', 'NORP')\n", + "('Hades', 'PERSON')\n", + "('Thesprotia', 'GPE')\n", + "('Theseus', 'PERSON')\n", + "('Tyndareus', 'PERSON')\n", + "('Aphidna', 'ORG')\n", + "('Menestheus', 'PERSON')\n", + "('1.17.6', 'CARDINAL')\n", + "('Now Menestheus', 'PERSON')\n", + "('Theseus', 'PERSON')\n", + "('Elephenor in Euboea', 'ORG')\n", + "('Theseus', 'PERSON')\n", + "('Thesprotia', 'ORG')\n", + "('Theseus', 'PERSON')\n", + "('Theseus', 'PERSON')\n", + "('Deucalion in Crete', 'ORG')\n", + "('Scyros', 'GPE')\n", + "('Lycomedes', 'PERSON')\n", + "('Athens', 'GPE')\n", + "('Persians', 'NORP')\n", + "('Marathon', 'ORG')\n", + "('Cimon', 'ORG')\n", + "('Miltiades', 'PERSON')\n", + "('Scyros', 'ORG')\n", + "('Theseus', 'PERSON')\n", + "('Athens', 'GPE')\n", + "('Dioscuri', 'ORG')\n", + "('Leucippus', 'GPE')\n", + "('Micon', 'PERSON')\n", + "('Jason', 'PERSON')\n", + "('Colchians', 'NORP')\n", + "('Acastus', 'ORG')\n", + "('1.18.2', 'CARDINAL')\n", + "('Dioscuri', 'ORG')\n", + "('Herse', 'GPE')\n", + "('Pandrosus', 'PERSON')\n", + "('Athena', 'ORG')\n", + "('Erichthonius', 'ORG')\n", + "('Pandrosus', 'PERSON')\n", + "('two', 'CARDINAL')\n", + "('Erichthonius', 'ORG')\n", + "('Acropolis', 'LOC')\n", + "('Persians', 'NORP')\n", + "('Athenians', 'NORP')\n", + "('oracle62', 'ORG')\n", + "('Themistocles', 'ORG')\n", + "('Acropolis', 'LOC')\n", + "('stakes.63', 'GPE')\n", + "('1.18.3', 'CARDINAL')\n", + "('Prytaneum', 'GPE')\n", + "('Solon', 'ORG')\n", + "('Hestia', 'PERSON')\n", + "('Autolycus', 'GPE')\n", + "('Miltiades', 'PERSON')\n", + "('Themistocles', 'ORG')\n", + "('Roman', 'NORP')\n", + "('Thracian', 'NORP')\n", + "('1.18.4', 'CARDINAL')\n", + "('Serapis', 'PERSON')\n", + "('Athenians', 'NORP')\n", + "('Ptolemy', 'GPE')\n", + "('Egyptian', 'NORP')\n", + "('Serapis', 'PERSON')\n", + "('Alexandria', 'GPE')\n", + "('Memphis', 'GPE')\n", + "('Apis', 'PERSON')\n", + "('Serapis', 'PERSON')\n", + "('Peirithous', 'PERSON')\n", + "('Theseus', 'PERSON')\n", + "('Lacedaemon', 'PERSON')\n", + "('Thesprotia', 'ORG')\n", + "('1.18.5', 'CARDINAL')\n", + "('Eileithyia', 'GPE')\n", + "('Hyperboreans', 'NORP')\n", + "('Delos', 'PERSON')\n", + "('Leto', 'PERSON')\n", + "('Delos', 'ORG')\n", + "('Delians', 'NORP')\n", + "('Eileithyia', 'GPE')\n", + "('Olen', 'PERSON')\n", + "('Cretans', 'ORG')\n", + "('Eileithyia', 'GPE')\n", + "('Auunisus', 'ORG')\n", + "('Cnossian', 'NORP')\n", + "('Hera', 'PERSON')\n", + "('Athenians', 'NORP')\n", + "('Eileithyia', 'GPE')\n", + "('two', 'CARDINAL')\n", + "('Cretan', 'GPE')\n", + "('Phaedra', 'PERSON')\n", + "('third', 'ORDINAL')\n", + "('Erysichthon', 'ORG')\n", + "('Delos', 'PERSON')\n", + "('1.18.6', 'CARDINAL')\n", + "('Olympian Zeus', 'PERSON')\n", + "('Hadrian', 'NORP')\n", + "('Roman', 'NORP')\n", + "('one', 'CARDINAL')\n", + "('Rhodes', 'GPE')\n", + "('Rome', 'GPE')\n", + "('Hadrian', 'NORP')\n", + "('two', 'CARDINAL')\n", + "('Thasian', 'NORP')\n", + "('two', 'CARDINAL')\n", + "('Egyptian', 'NORP')\n", + "('Athenians', 'NORP')\n", + "('about four', 'CARDINAL')\n", + "('Hadrian', 'NORP')\n", + "('Athenians', 'NORP')\n", + "('Zeus', 'PERSON')\n", + "('Cronus', 'PERSON')\n", + "('Rhea', 'PERSON')\n", + "('Earth', 'LOC')\n", + "('Deucalion', 'ORG')\n", + "('Isocrates', 'GPE')\n", + "('three', 'CARDINAL')\n", + "('ninety-eight years', 'DATE')\n", + "('Phrygian', 'NORP')\n", + "('Persians', 'NORP')\n", + "('Olympian Zeus', 'FAC')\n", + "('Athenians', 'NORP')\n", + "('Deucalion', 'ORG')\n", + "('Deucalion', 'ORG')\n", + "('Athens', 'GPE')\n", + "('Hadrian', 'NORP')\n", + "('Athenians', 'NORP')\n", + "('Hera', 'GPE')\n", + "('Zeus Panellenios', 'PERSON')\n", + "('Greeks', 'LANGUAGE')\n", + "('hundred', 'CARDINAL')\n", + "('Phrygian', 'NORP')\n", + "('Hadrian', 'NORP')\n", + "('a hundred', 'CARDINAL')\n", + "('Libyan', 'NORP')\n", + "('1.19.1', 'CARDINAL')\n", + "('Olympian Zeus', 'PERSON')\n", + "('the Pythian Apollo', 'ORG')\n", + "('Apollo', 'ORG')\n", + "('Theseus', 'PERSON')\n", + "('Delphinian', 'NORP')\n", + "('Theseus', 'PERSON')\n", + "('1.19.2', 'CARDINAL')\n", + "('The Gardens', 'LOC')\n", + "('Aphrodite', 'PERSON')\n", + "('Aphrodite', 'PERSON')\n", + "('Hermae', 'GPE')\n", + "('Fates', 'NORP')\n", + "('Aphrodite', 'PERSON')\n", + "('Gardens', 'LOC')\n", + "('Alcamenes', 'PERSON')\n", + "('Athens', 'GPE')\n", + "('1.19.3', 'CARDINAL')\n", + "('Cynosarges', 'ORG')\n", + "('Heracles', 'PERSON')\n", + "('Heracles', 'PERSON')\n", + "('Hebe', 'PERSON')\n", + "('Zeus', 'PERSON')\n", + "('Heracles', 'PERSON')\n", + "('Alcmena', 'ORG')\n", + "('Iolaus', 'PERSON')\n", + "('Heracles', 'PERSON')\n", + "('Lyceum', 'ORG')\n", + "('Lycus', 'GPE')\n", + "('Pandion', 'LOC')\n", + "('Apollo', 'ORG')\n", + "('first', 'ORDINAL')\n", + "('Lyceus', 'PERSON')\n", + "('Termilae', 'ORG')\n", + "('Lycus', 'ORG')\n", + "('Aegeus', 'PERSON')\n", + "('Lycii', 'PERSON')\n", + "('1.19.4', 'CARDINAL')\n", + "('Lyceum', 'ORG')\n", + "('Nisus', 'PERSON')\n", + "('Megara', 'PERSON')\n", + "('Athenians', 'NORP')\n", + "('Nisus', 'PERSON')\n", + "('Cretans', 'ORG')\n", + "('Megarid', 'PERSON')\n", + "('Nisaea', 'PERSON')\n", + "('Nisus', 'PERSON')\n", + "('Nisus', 'PERSON')\n", + "('Minos', 'ORG')\n", + "('1.19.5', 'CARDINAL')\n", + "('Athenian', 'NORP')\n", + "('Ilisus', 'ORG')\n", + "('Eridanus', 'LOC')\n", + "('Celtic', 'NORP')\n", + "('Ilisus', 'ORG')\n", + "('Oreithyia', 'PERSON')\n", + "('the North Wind', 'LOC')\n", + "('Oreithyia', 'PERSON')\n", + "('Athenians', 'NORP')\n", + "('Athenians', 'NORP')\n", + "('Ilisus', 'ORG')\n", + "('Ilisian', 'NORP')\n", + "('Peloponnesians', 'NORP')\n", + "('Codrus', 'PERSON')\n", + "('Melanthus', 'NORP')\n", + "('Athens', 'GPE')\n", + "('1.19.6', 'CARDINAL')\n", + "('Ilisus', 'ORG')\n", + "('Agrae', 'PERSON')\n", + "('Artemis Agrotera', 'ORG')\n", + "('Artemis', 'ORG')\n", + "('first', 'ORDINAL')\n", + "('Delos', 'PERSON')\n", + "('Ilisus', 'ORG')\n", + "('two', 'CARDINAL')\n", + "('Herodes', 'ORG')\n", + "('Athenian', 'NORP')\n", + "('Pentelic', 'PERSON')\n", + "('1.20.1', 'CARDINAL')\n", + "('Tripods', 'PRODUCT')\n", + "('Satyr', 'ORG')\n", + "('Praxiteles', 'ORG')\n", + "('Phryne', 'PERSON')\n", + "('Phryne', 'PERSON')\n", + "('Praxiteles', 'ORG')\n", + "('1.20.2', 'CARDINAL')\n", + "('Satyr', 'ORG')\n", + "('Love', 'WORK_OF_ART')\n", + "('Phryne', 'PERSON')\n", + "('Phryne', 'PERSON')\n", + "('Love', 'WORK_OF_ART')\n", + "('Satyr', 'ORG')\n", + "('Dionysus', 'PERSON')\n", + "('Love', 'WORK_OF_ART')\n", + "('Dionysus', 'PERSON')\n", + "('1.20.3', 'CARDINAL')\n", + "('Dionysus', 'PERSON')\n", + "('two temples', 'QUANTITY')\n", + "('two', 'CARDINAL')\n", + "('Dionysus', 'PERSON')\n", + "('Eleuthereus', 'PERSON')\n", + "('one', 'CARDINAL')\n", + "('Alcamenes', 'PERSON')\n", + "('Dionysus', 'PERSON')\n", + "('Hephaestus', 'PERSON')\n", + "('One', 'CARDINAL')\n", + "('Greek', 'NORP')\n", + "('Hephaestus', 'ORG')\n", + "('Hera', 'PERSON')\n", + "('Hera', 'PERSON')\n", + "('Hephaestus', 'ORG')\n", + "('Dionysus', 'PERSON')\n", + "('Dionysus', 'PERSON')\n", + "('Pentheus', 'PERSON')\n", + "('Lycurgus', 'PERSON')\n", + "('Dionysus', 'PERSON')\n", + "('Ariadne', 'PERSON')\n", + "('Theseus', 'PERSON')\n", + "('Dionysus', 'PERSON')\n", + "('Ariadne', 'PERSON')\n", + "('1.20.4', 'CARDINAL')\n", + "('Dionysus', 'PERSON')\n", + "('Xerxes', 'ORG')\n", + "('Roman', 'NORP')\n", + "('Sulla', 'PERSON')\n", + "('Mithridates', 'PERSON')\n", + "('Euxine', 'PERSON')\n", + "('Romans', 'NORP')\n", + "('Asia', 'LOC')\n", + "('Mithridates', 'PERSON')\n", + "('Athens', 'GPE')\n", + "('ASIA', 'LOC')\n", + "('1.20.5', 'CARDINAL')\n", + "('Athenian', 'NORP')\n", + "('Aristion', 'ORG')\n", + "('Mithridates', 'PERSON')\n", + "('Greek', 'NORP')\n", + "('Athenians', 'NORP')\n", + "('Mithridates', 'PERSON')\n", + "('Romans', 'NORP')\n", + "('Athenians', 'NORP')\n", + "('Romans', 'NORP')\n", + "('Romans', 'NORP')\n", + "('Aristion', 'ORG')\n", + "('Athenians', 'NORP')\n", + "('Archelaus', 'PERSON')\n", + "('Peiraeus', 'PERSON')\n", + "('This Archelaus', 'PERSON')\n", + "('Mithridates', 'PERSON')\n", + "('Magnetes', 'NORP')\n", + "('Sipylus', 'PRODUCT')\n", + "('Athens', 'GPE')\n", + "('1.20.6', 'CARDINAL')\n", + "('Mithridates', 'PERSON')\n", + "('Elatea', 'ORG')\n", + "('Phocis', 'GPE')\n", + "('Attica', 'GPE')\n", + "('Roman', 'NORP')\n", + "('Athens', 'GPE')\n", + "('Taxilus', 'FAC')\n", + "('Boeotia', 'GPE')\n", + "('the third day', 'DATE')\n", + "('Roman', 'NORP')\n", + "('Sulla', 'PERSON')\n", + "('Athenian', 'NORP')\n", + "('Taxilus', 'FAC')\n", + "('Chaeronea', 'GPE')\n", + "('Sulla', 'PERSON')\n", + "('Attica', 'GPE')\n", + "('Cerameicus', 'GPE')\n", + "('Athenians', 'NORP')\n", + "('one', 'CARDINAL')\n", + "('1.20.7', 'CARDINAL')\n", + "('Sulla', 'PERSON')\n", + "('Athenians', 'NORP')\n", + "('Delphi', 'ORG')\n", + "('Athens', 'GPE')\n", + "('Pythia', 'GPE')\n", + "('Sulla', 'PERSON')\n", + "('Syrian', 'NORP')\n", + "('Sulla', 'PERSON')\n", + "('Athenian', 'NORP')\n", + "('Roman', 'NORP')\n", + "('Aristion', 'ORG')\n", + "('Athena', 'ORG')\n", + "('Athens', 'GPE')\n", + "('Rome', 'GPE')\n", + "('Hadrian', 'NORP')\n", + "('1.21.1', 'CARDINAL')\n", + "('Athenians', 'NORP')\n", + "('Menander', 'GPE')\n", + "('two', 'CARDINAL')\n", + "('Euripides', 'NORP')\n", + "('Sophocles', 'PERSON')\n", + "('Sophocles the Lacedaemonians', 'PERSON')\n", + "('Attica', 'GPE')\n", + "('Dionysus', 'PERSON')\n", + "('Siren', 'ORG')\n", + "('Sophocles', 'PERSON')\n", + "('Siren', 'ORG')\n", + "('1.21.2', 'CARDINAL')\n", + "('Aeschylus', 'PERSON')\n", + "('Marathon Aeschylus', 'FAC')\n", + "('Dionysus', 'PERSON')\n", + "('1.21.3', 'CARDINAL')\n", + "('South', 'LOC')\n", + "('Acropolis', 'LOC')\n", + "('Medusa the Gorgon', 'ORG')\n", + "('Acropolis', 'NORP')\n", + "('Apollo', 'ORG')\n", + "('Artemis', 'ORG')\n", + "('Niobe', 'GPE')\n", + "('Niobe', 'GPE')\n", + "('Mount Sipylus', 'PERSON')\n", + "('1.21.4', 'CARDINAL')\n", + "('the Athenian Acropolis', 'LOC')\n", + "('Calos', 'PERSON')\n", + "('Daedalus', 'PRODUCT')\n", + "('Calos', 'PERSON')\n", + "('Crete', 'GPE')\n", + "('Cocalus in Sicily', 'WORK_OF_ART')\n", + "('Asclepius', 'ORG')\n", + "('Poseidon', 'ORG')\n", + "('Halirrhothius', 'PERSON')\n", + "('Alcippe', 'PERSON')\n", + "('Ares', 'PERSON')\n", + "('first', 'ORDINAL')\n", + "('1.21.5', 'CARDINAL')\n", + "('Sauromatic', 'NORP')\n", + "('Greeks', 'NORP')\n", + "('Greeks', 'NORP')\n", + "('1.21.7', 'CARDINAL')\n", + "('Gryneum', 'ORG')\n", + "('Apollo', 'ORG')\n", + "('1.22.1', 'CARDINAL')\n", + "('Asclepius', 'ORG')\n", + "('Acropolis', 'LOC')\n", + "('Themis', 'GPE')\n", + "('Hippolytus', 'NORP')\n", + "('Greek', 'NORP')\n", + "('Phaedra', 'PERSON')\n", + "('Troezenians', 'NORP')\n", + "('Hippolytus', 'ORG')\n", + "('1.22.2', 'CARDINAL')\n", + "('Theseus', 'PERSON')\n", + "('Phaedra', 'PERSON')\n", + "('Hippolytus', 'ORG')\n", + "('Pittheus', 'PERSON')\n", + "('Troezen', 'ORG')\n", + "('Theseus', 'PERSON')\n", + "('Troezen', 'ORG')\n", + "('Phaedra', 'PERSON')\n", + "('first', 'ORDINAL')\n", + "('Hippolytus', 'ORG')\n", + "('Troezenians', 'NORP')\n", + "('Phaedra', 'PERSON')\n", + "('1.22.3', 'CARDINAL')\n", + "('Theseus', 'PERSON')\n", + "('one', 'CARDINAL')\n", + "('Athenian', 'NORP')\n", + "('Aphrodite Pandemos', 'PERSON')\n", + "('Earth', 'LOC')\n", + "('Nurse of Youth', 'ORG')\n", + "('Demeter Chloe', 'PERSON')\n", + "('ATHENS', 'GPE')\n", + "('1.22.4', 'CARDINAL')\n", + "('Acropolis', 'LOC')\n", + "('Xenophon', 'PERSON')\n", + "('Aegeus', 'PERSON')\n", + "('1.22.5', 'CARDINAL')\n", + "('Crete', 'GPE')\n", + "('Theseus', 'PERSON')\n", + "('Minos', 'ORG')\n", + "('Ariadne', 'PERSON')\n", + "('Aegeus', 'PERSON')\n", + "('Athens', 'GPE')\n", + "('Aegeus', 'PERSON')\n", + "('Diomedes', 'ORG')\n", + "('Athena', 'ORG')\n", + "('Troy', 'GPE')\n", + "('Odysseus', 'PERSON')\n", + "('Lemnos', 'ORG')\n", + "('Philoctetes', 'ORG')\n", + "('Orestes', 'ORG')\n", + "('Aegisthus', 'ORG')\n", + "('Pylades', 'PERSON')\n", + "('Nauplius', 'PERSON')\n", + "('Aegisthus', 'ORG')\n", + "('Polyxena', 'PERSON')\n", + "('Achilles', 'PERSON')\n", + "('Achilles', 'PERSON')\n", + "('Achilles', 'ORG')\n", + "('Scyros', 'GPE')\n", + "('Polygnotus', 'ORG')\n", + "('Odysseus', 'PERSON')\n", + "('Nausicaa', 'ORG')\n", + "('Alcibiades', 'PERSON')\n", + "('1.22.7', 'CARDINAL')\n", + "('Nemea', 'ORG')\n", + "('Perseus journeying', 'PERSON')\n", + "('Seriphos', 'PERSON')\n", + "('Polydectes', 'PERSON')\n", + "('Medusa', 'ORG')\n", + "('Attica', 'GPE')\n", + "('Musaeus', 'PERSON')\n", + "('Musaeus', 'PERSON')\n", + "('the North Wind', 'LOC')\n", + "('Onomacritus', 'ORG')\n", + "('Musaeus', 'PERSON')\n", + "('Demeter', 'PERSON')\n", + "('Lycomidae', 'DATE')\n", + "('1.22.8', 'CARDINAL')\n", + "('Acropolis', 'NORP')\n", + "('Hermes of the Gateway', 'ORG')\n", + "('Graces', 'ORG')\n", + "('Socrates', 'PRODUCT')\n", + "('Sophroniscus', 'GPE')\n", + "('Pythia', 'PERSON')\n", + "('Anacharsis', 'ORG')\n", + "('Delphi', 'ORG')\n", + "('1.23.1', 'CARDINAL')\n", + "('Greeks', 'NORP')\n", + "('seven', 'CARDINAL')\n", + "('Two', 'CARDINAL')\n", + "('Lesbos', 'GPE')\n", + "('Periander', 'NORP')\n", + "('Cypselus', 'ORG')\n", + "('Peisistratus', 'ORG')\n", + "('Hippias', 'PERSON')\n", + "('Periander', 'NORP')\n", + "('Hipparchus', 'PERSON')\n", + "('Hippias', 'PERSON')\n", + "('Leaena', 'PERSON')\n", + "('1.23.2', 'CARDINAL')\n", + "('Athenians', 'NORP')\n", + "('Hipparchus', 'PERSON')\n", + "('Hippias', 'PERSON')\n", + "('Leaena', 'GPE')\n", + "('Aristogeiton', 'PERSON')\n", + "('Peisistratidae', 'PERSON')\n", + "('Athenians', 'NORP')\n", + "('Callias', 'NORP')\n", + "('Calamis', 'NORP')\n", + "('1.23.3', 'CARDINAL')\n", + "('Diitrephes', 'PERSON')\n", + "('Diitrephes', 'PERSON')\n", + "('Athenians', 'NORP')\n", + "('Thracian', 'NORP')\n", + "('Syracuse', 'ORG')\n", + "('the Chalcidic Euripus', 'FAC')\n", + "('Boeotians', 'NORP')\n", + "('Mycalessus', 'PERSON')\n", + "('Thracians', 'NORP')\n", + "('Boeotian', 'NORP')\n", + "('Thebans', 'NORP')\n", + "('Mycalessians', 'GPE')\n", + "('1.23.4', 'CARDINAL')\n", + "('Diitrephes', 'PERSON')\n", + "('Greeks', 'NORP')\n", + "('Cretans', 'ORG')\n", + "('the Opuntian Locrians', 'PRODUCT')\n", + "('Homer', 'PERSON')\n", + "('Troy', 'PERSON')\n", + "('Persian', 'NORP')\n", + "('Malians', 'NORP')\n", + "('Philoctetes', 'ORG')\n", + "('Diitrephes', 'PERSON')\n", + "('Health', 'ORG')\n", + "('Asclepius', 'PERSON')\n", + "('Athena', 'ORG')\n", + "('1.23.5', 'CARDINAL')\n", + "('Silenus', 'PERSON')\n", + "('Dionysus', 'PERSON')\n", + "('Satyrs', 'ORG')\n", + "('Sileni', 'NORP')\n", + "('Euphemus', 'PERSON')\n", + "('Carian', 'PERSON')\n", + "('Italy', 'GPE')\n", + "('1.23.6', 'CARDINAL')\n", + "('Satyrides', 'PRODUCT')\n", + "('Satyrs', 'ORG')\n", + "('1.23.7', 'CARDINAL')\n", + "('the Athenian Acropolis', 'LOC')\n", + "('Lycius', 'ORG')\n", + "('Myron', 'PERSON')\n", + "(\"Myron's Perseus\", 'PERSON')\n", + "('Medusa', 'PERSON')\n", + "('Brauronian Artemis', 'ORG')\n", + "('Praxiteles', 'ORG')\n", + "('Brauron', 'ORG')\n", + "('Brauron', 'ORG')\n", + "('the Tauric Artemis', 'ORG')\n", + "('1.23.8', 'CARDINAL')\n", + "('Epeius', 'PERSON')\n", + "('Phrygians', 'NORP')\n", + "('Greeks', 'NORP')\n", + "('Menestheus', 'PERSON')\n", + "('Teucer', 'PERSON')\n", + "('Theseus', 'PERSON')\n", + "('1.23.9', 'CARDINAL')\n", + "('Epicharinus', 'LOC')\n", + "('Critius', 'ORG')\n", + "('Oenobius', 'PERSON')\n", + "('Thucydides', 'FAC')\n", + "('Thucydides', 'GPE')\n", + "('Athens', 'GPE')\n", + "('Melitid', 'PERSON')\n", + "('1.23.10', 'CARDINAL')\n", + "('Hermolycus', 'ORG')\n", + "('Phormio71', 'GPE')\n", + "('Phormio', 'ORG')\n", + "('Athens', 'GPE')\n", + "('Paeania', 'GPE')\n", + "('Athenians', 'NORP')\n", + "('Athenians', 'NORP')\n", + "('Phormio', 'ORG')\n", + "('1.24.1', 'CARDINAL')\n", + "('Athena', 'ORG')\n", + "('Theseus', 'PERSON')\n", + "('Bull of Minos', 'ORG')\n", + "('1.24.2', 'CARDINAL')\n", + "('Phrixus', 'NORP')\n", + "('Athamas', 'ORG')\n", + "('Colchians', 'NORP')\n", + "('one', 'CARDINAL')\n", + "('Greek', 'NORP')\n", + "('one', 'CARDINAL')\n", + "('Heracles', 'PERSON')\n", + "('Athena', 'ORG')\n", + "('Zeus', 'PERSON')\n", + "('the Council of the Areopagus', 'ORG')\n", + "('1.24.3', 'CARDINAL')\n", + "('Athenians', 'NORP')\n", + "('first', 'ORDINAL')\n", + "('Athena Ergane', 'ORG')\n", + "('first', 'ORDINAL')\n", + "('Hermae', 'PERSON')\n", + "('Cleoetas', 'ORG')\n", + "('Earth', 'LOC')\n", + "('Zeus', 'PERSON')\n", + "('Athenians', 'NORP')\n", + "('Greeks', 'NORP')\n", + "('Timotheus', 'PERSON')\n", + "('Conon', 'PERSON')\n", + "('Procne', 'ORG')\n", + "('Itys', 'PERSON')\n", + "('Alcamenes', 'ORG')\n", + "('Athena', 'ORG')\n", + "('Poseidon', 'GPE')\n", + "('1.24.4', 'CARDINAL')\n", + "('Zeus', 'PERSON')\n", + "('Leochares72', 'ORG')\n", + "('one', 'CARDINAL')\n", + "('Polieus (Urban', 'ORG')\n", + "('Zeus Polieus', 'PERSON')\n", + "('One', 'CARDINAL')\n", + "('Parthenon', 'GPE')\n", + "('Athena', 'ORG')\n", + "('Athena', 'ORG')\n", + "('Poseidon', 'GPE')\n", + "('Sphinx', 'FAC')\n", + "('Boeotia', 'PERSON')\n", + "('1.24.6', 'CARDINAL')\n", + "('Proconnesus', 'PERSON')\n", + "('Arimaspi', 'PERSON')\n", + "('Issedones', 'NORP')\n", + "('Arimaspi', 'ORG')\n", + "('one', 'CARDINAL')\n", + "('1.24.7', 'CARDINAL')\n", + "('Athena', 'ORG')\n", + "('Medusa', 'ORG')\n", + "('about four', 'CARDINAL')\n", + "('Erichthonius', 'ORG')\n", + "('Hesiod', 'PERSON')\n", + "('first', 'ORDINAL')\n", + "('Pandora', 'PERSON')\n", + "('Hadrian', 'NORP')\n", + "('Apollo', 'ORG')\n", + "('Pheidias', 'PERSON')\n", + "('Attica', 'GPE')\n", + "('three', 'CARDINAL')\n", + "('Mount Sipylus', 'LOC')\n", + "('third', 'ORDINAL')\n", + "('1.25.1', 'CARDINAL')\n", + "('the Athenian Acropolis', 'LOC')\n", + "('Pericles', 'GPE')\n", + "('Xanthippus', 'ORG')\n", + "('one', 'CARDINAL')\n", + "('Xanthippus', 'ORG')\n", + "('Persians', 'NORP')\n", + "('Pericles', 'ORG')\n", + "('Xanthippus', 'ORG')\n", + "('Anacreon of Teos', 'WORK_OF_ART')\n", + "('first', 'ORDINAL')\n", + "('Sappho of Lesbos', 'PERSON')\n", + "('two', 'CARDINAL')\n", + "('Io', 'LOC')\n", + "('Inachus', 'PERSON')\n", + "('Callisto', 'ORG')\n", + "('Lycaon', 'GPE')\n", + "('Zeus', 'PERSON')\n", + "('Hera', 'PERSON')\n", + "('Io', 'LOC')\n", + "('Callisto', 'PRODUCT')\n", + "('1.25.2', 'CARDINAL')\n", + "('Thrace', 'PERSON')\n", + "('Pallene', 'ORG')\n", + "('Athenians', 'NORP')\n", + "('Amazons', 'ORG')\n", + "('Persians', 'NORP')\n", + "('Marathon', 'FAC')\n", + "('Gauls', 'PERSON')\n", + "('about two', 'CARDINAL')\n", + "('Attalus', 'ORG')\n", + "('Olympiodorus', 'PERSON')\n", + "('the days', 'DATE')\n", + "('ATHENS', 'GPE')\n", + "('1.25.3', 'CARDINAL')\n", + "('Greeks', 'NORP')\n", + "('Macedon', 'GPE')\n", + "('Philip', 'PERSON')\n", + "('Athens', 'GPE')\n", + "('Athenians', 'NORP')\n", + "('Philip', 'PERSON')\n", + "('Alexander', 'PERSON')\n", + "('Alexander', 'PERSON')\n", + "('Macedonians', 'NORP')\n", + "('Aridaeus', 'ORG')\n", + "('Antipater', 'PERSON')\n", + "('Athenians', 'NORP')\n", + "('Greece', 'GPE')\n", + "('Macedonians', 'NORP')\n", + "('1.25.4', 'CARDINAL')\n", + "('Peloponnesians', 'NORP')\n", + "('Argos', 'ORG')\n", + "('Troezen', 'ORG')\n", + "('Eleans', 'NORP')\n", + "('Phliasians', 'NORP')\n", + "('Messene', 'PERSON')\n", + "('Corinthian', 'NORP')\n", + "('Locrians', 'NORP')\n", + "('Phocians', 'NORP')\n", + "('Thessalians', 'ORG')\n", + "('Carystus', 'ORG')\n", + "('Acarnanians', 'NORP')\n", + "('the Aetolian League', 'ORG')\n", + "('Boeotians', 'NORP')\n", + "('Thebaid', 'PERSON')\n", + "('Thebans', 'NORP')\n", + "('Athenians', 'NORP')\n", + "('Thebes', 'PERSON')\n", + "('Macedonian', 'NORP')\n", + "('1.25.5', 'CARDINAL')\n", + "('the Athenian Leosthenes', 'ORG')\n", + "('Greece', 'GPE')\n", + "('Greeks', 'NORP')\n", + "('Darius', 'PERSON')\n", + "('Alexander', 'PERSON')\n", + "('Persia', 'GPE')\n", + "('Leosthenes', 'ORG')\n", + "('Europe', 'LOC')\n", + "('Macedonian', 'NORP')\n", + "('Athenians', 'NORP')\n", + "('Munychia', 'PERSON')\n", + "('Peiraeus', 'PERSON')\n", + "('1.25.6', 'CARDINAL')\n", + "('Epeirus', 'ORG')\n", + "('Aridaeus', 'ORG')\n", + "('Cassander', 'PRODUCT')\n", + "('Cassander', 'PRODUCT')\n", + "('Athenians', 'NORP')\n", + "('Panactum', 'GPE')\n", + "('Attica', 'GPE')\n", + "('Salamis', 'PRODUCT')\n", + "('Athens Demetrius', 'GPE')\n", + "('Phanostratus', 'ORG')\n", + "('Demetrius', 'PERSON')\n", + "('Antigonus', 'LOC')\n", + "('Greek', 'NORP')\n", + "('1.25.7', 'CARDINAL')\n", + "('Cassander', 'PRODUCT')\n", + "('Athenians', 'NORP')\n", + "('Lachares', 'PERSON')\n", + "('Antigonus', 'LOC')\n", + "('Athenian', 'NORP')\n", + "('Lachares', 'PERSON')\n", + "('Boeotia', 'PERSON')\n", + "('Lachares', 'PERSON')\n", + "('Acropolis', 'LOC')\n", + "('Athena', 'ORG')\n", + "('1.25.8', 'CARDINAL')\n", + "('Coronea', 'GPE')\n", + "('Athenians', 'NORP')\n", + "('Demetrius', 'PERSON')\n", + "('Antigonus', 'LOC')\n", + "('Peiraeus', 'PERSON')\n", + "('Lachares', 'PERSON')\n", + "('Acropolis', 'NORP')\n", + "('Musaeus', 'PERSON')\n", + "('Syrian', 'NORP')\n", + "('Demetrius', 'PERSON')\n", + "('1.26.1', 'CARDINAL')\n", + "('Athens', 'GPE')\n", + "('Macedonians,80', 'PRODUCT')\n", + "('Macedonians', 'NORP')\n", + "('Museum', 'ORG')\n", + "('1.26.2', 'CARDINAL')\n", + "('Athens', 'GPE')\n", + "('Macedonians', 'NORP')\n", + "('Athenians', 'NORP')\n", + "('Leocritus', 'ORG')\n", + "('Protarchus', 'NORP')\n", + "('first', 'ORDINAL')\n", + "('first', 'ORDINAL')\n", + "('Athenians', 'NORP')\n", + "('Zeus of Freedom', 'ORG')\n", + "('Leocritus', 'ORG')\n", + "('1.26.3', 'CARDINAL')\n", + "('Olympiodorus', 'GPE')\n", + "('Peiraeus', 'PERSON')\n", + "('Munychia', 'PERSON')\n", + "('Macedonians', 'NORP')\n", + "('Eleusis', 'PERSON')\n", + "('Eleusinians', 'NORP')\n", + "('Cassander', 'PERSON')\n", + "('Attica', 'GPE')\n", + "('Aetolia', 'PERSON')\n", + "('Aetolians', 'GPE')\n", + "('Athenians', 'NORP')\n", + "('Cassander', 'PRODUCT')\n", + "('Athens', 'GPE')\n", + "('Acropolis', 'LOC')\n", + "('Eleusis', 'ORG')\n", + "('Phocians', 'NORP')\n", + "('Elatea', 'ORG')\n", + "('Delphi', 'ORG')\n", + "('Cassander', 'PRODUCT')\n", + "('1.26.4', 'CARDINAL')\n", + "('Artemis surnamed Leucophryne', 'ORG')\n", + "('Themistocles', 'ORG')\n", + "('Magnesians', 'NORP')\n", + "('Artemis Leucophryne', 'ORG')\n", + "('Greece', 'GPE')\n", + "('Athenian', 'NORP')\n", + "('Daedalus', 'PRODUCT')\n", + "('Daedalus', 'PERSON')\n", + "('Calos', 'PERSON')\n", + "('Crete', 'GPE')\n", + "('Athena', 'ORG')\n", + "('Callias', 'NORP')\n", + "('Endoeus', 'PERSON')\n", + "('1.26.5', 'CARDINAL')\n", + "('Erechtheum', 'GPE')\n", + "('Zeus', 'PERSON')\n", + "('Poseidon', 'GPE')\n", + "('Erechtheus', 'ORG')\n", + "('second', 'ORDINAL')\n", + "('Butes', 'PERSON')\n", + "('third', 'ORDINAL')\n", + "('Hephaestus', 'ORG')\n", + "('Butadae', 'PERSON')\n", + "('Aphrodisias', 'GPE')\n", + "('Caria', 'GPE')\n", + "('Poseidon', 'ORG')\n", + "('1.26.6', 'CARDINAL')\n", + "('Athena', 'ORG')\n", + "('Athena', 'ORG')\n", + "('all many years', 'DATE')\n", + "('Athena', 'ORG')\n", + "('Acropolis', 'NORP')\n", + "('early days', 'DATE')\n", + "('Polis', 'NORP')\n", + "('the same day next year', 'DATE')\n", + "('Carpasian', 'NORP')\n", + "('Callimachus', 'PERSON')\n", + "('first', 'ORDINAL')\n", + "('first', 'ORDINAL')\n", + "('Refiner of Art', 'ORG')\n", + "('1.27.1', 'CARDINAL')\n", + "('Athena Polias', 'ORG')\n", + "('Hermes', 'ORG')\n", + "('Cecrops', 'PERSON')\n", + "('Daedalus', 'PERSON')\n", + "('Persian', 'NORP')\n", + "('Masistius', 'ORG')\n", + "('Plataea,84', 'LAW')\n", + "('Mardonius', 'ORG')\n", + "('Athenian', 'NORP')\n", + "('Mardonius', 'ORG')\n", + "('Lacedaemonians', 'NORP')\n", + "('Spartan', 'GPE')\n", + "('Athenians', 'NORP')\n", + "('Lacedaemonians', 'NORP')\n", + "('1.27.2', 'CARDINAL')\n", + "('Persians', 'NORP')\n", + "('Athens', 'GPE')\n", + "('the very day', 'DATE')\n", + "('two', 'CARDINAL')\n", + "('Athena', 'ORG')\n", + "('Pandrosus', 'GPE')\n", + "('1.27.3', 'CARDINAL')\n", + "('Two', 'CARDINAL')\n", + "('Athena Polias', 'ORG')\n", + "('Athenians', 'NORP')\n", + "('the Sacred Offerings', 'ORG')\n", + "('night', 'TIME')\n", + "('Athena', 'ORG')\n", + "('Aphrodite', 'PERSON')\n", + "('Acropolis', 'NORP')\n", + "('1.27.4', 'CARDINAL')\n", + "('Athena', 'ORG')\n", + "('Lysimache', 'PERSON')\n", + "('one', 'CARDINAL')\n", + "('Erechtheus', 'ORG')\n", + "('Eumolpus', 'NORP')\n", + "('Athenians', 'NORP')\n", + "('Erechtheus', 'PERSON')\n", + "('Immaradus', 'GPE')\n", + "('Eumolpus', 'GPE')\n", + "('1.27.5', 'CARDINAL')\n", + "('Theaenetus', 'ORG')\n", + "('Tolmides', 'PERSON')\n", + "('Tolmides', 'PERSON')\n", + "('Athenian', 'NORP')\n", + "('Peloponnesians', 'NORP')\n", + "('Gythium', 'ORG')\n", + "('Boeae', 'PERSON')\n", + "('Cythera', 'ORG')\n", + "('Sicyonia', 'ORG')\n", + "('Athens', 'GPE')\n", + "('Athenian', 'NORP')\n", + "('Euboea and Naxos', 'WORK_OF_ART')\n", + "('Boeotia', 'PERSON')\n", + "('Chaeronea', 'GPE')\n", + "('Haliartus', 'ORG')\n", + "('worsted.85 Such', 'FAC')\n", + "('Tolmides', 'PERSON')\n", + "('1.27.6', 'CARDINAL')\n", + "('Athena', 'ORG')\n", + "('Athenians', 'NORP')\n", + "('King', 'PERSON')\n", + "('Calydonian', 'NORP')\n", + "('Cycnus', 'GPE')\n", + "('Heracles', 'PERSON')\n", + "('Cycnus', 'GPE')\n", + "('Lycus', 'GPE')\n", + "('Thracian', 'NORP')\n", + "('Peneius', 'PERSON')\n", + "('Heracles', 'PERSON')\n", + "('1.27.7', 'CARDINAL')\n", + "('One', 'CARDINAL')\n", + "('Troezenian', 'NORP')\n", + "('Theseus', 'PERSON')\n", + "('Heracles', 'PERSON')\n", + "('Pittheus', 'PERSON')\n", + "('Troezen', 'ORG')\n", + "('Troezenian', 'NORP')\n", + "('Theseus', 'PERSON')\n", + "('about seven years of age', 'DATE')\n", + "('Theseus', 'PERSON')\n", + "('1.27.8', 'CARDINAL')\n", + "('first', 'ORDINAL')\n", + "('Troezenian', 'NORP')\n", + "('Theseus', 'PERSON')\n", + "('Aegeus', 'PERSON')\n", + "('Athens', 'GPE')\n", + "('Theseus', 'PERSON')\n", + "('sixteen years old', 'DATE')\n", + "('Aegeus', 'PERSON')\n", + "('Acropolis', 'NORP')\n", + "('1.27.9', 'CARDINAL')\n", + "('Theseus', 'PERSON')\n", + "('Cretans', 'ORG')\n", + "('Tethris', 'PRODUCT')\n", + "('the days of old', 'DATE')\n", + "('Nemean', 'NORP')\n", + "('Parnassus', 'PERSON')\n", + "('Greece', 'GPE')\n", + "('Calydon', 'GPE')\n", + "('Crommyon', 'ORG')\n", + "('Corinth', 'GPE')\n", + "('Cretans', 'ORG')\n", + "('Poseidon', 'ORG')\n", + "('Minos', 'ORG')\n", + "('the Greek Sea', 'LOC')\n", + "('Poseidon', 'PERSON')\n", + "('1.27.10', 'CARDINAL')\n", + "('Crete', 'GPE')\n", + "('Peloponnesus', 'PERSON')\n", + "('Heracles', 'PERSON')\n", + "('Argive', 'PERSON')\n", + "('Corinth', 'GPE')\n", + "('Attica', 'GPE')\n", + "('Attic', 'NORP')\n", + "('Marathon', 'EVENT')\n", + "('Androgeos', 'ORG')\n", + "('Minos', 'ORG')\n", + "('Athens', 'GPE')\n", + "('Athenians', 'NORP')\n", + "('Androgeos', 'ORG')\n", + "('seven', 'CARDINAL')\n", + "('seven', 'CARDINAL')\n", + "('Marathon Theseus', 'FAC')\n", + "('Acropolis', 'LOC')\n", + "('Marathon', 'LOC')\n", + "('Cylon', 'PRODUCT')\n", + "('Olympian', 'PERSON')\n", + "('Theagenes', 'PERSON')\n", + "('Megara', 'PERSON')\n", + "('1.28.2', 'CARDINAL')\n", + "('two', 'CARDINAL')\n", + "('Athenians', 'NORP')\n", + "('first', 'ORDINAL')\n", + "('Athena', 'ORG')\n", + "('Persians', 'NORP')\n", + "('Marathon', 'ORG')\n", + "('Pheidias', 'PERSON')\n", + "('Centaurs', 'PERSON')\n", + "('Lapithae', 'PERSON')\n", + "('Mys,87', 'ORG')\n", + "('Parrhasius', 'PERSON')\n", + "('Evenor', 'GPE')\n", + "('Athena', 'ORG')\n", + "('Athens', 'GPE')\n", + "('Sunium', 'ORG')\n", + "('Boeotians', 'NORP')\n", + "('Chalcidians', 'NORP')\n", + "('two', 'CARDINAL')\n", + "('Pericles', 'GPE')\n", + "('Xanthippus', 'ORG')\n", + "('Pheidias', 'PERSON')\n", + "('Athena', 'ORG')\n", + "('Lemnian', 'PERSON')\n", + "('1.28.3', 'CARDINAL')\n", + "('Acropolis', 'LOC')\n", + "('Cimon', 'ORG')\n", + "('Miltiades', 'PERSON')\n", + "('Pelasgians', 'NORP')\n", + "('Acropolis', 'LOC')\n", + "('Agrolas', 'PERSON')\n", + "('Hyperbius', 'PERSON')\n", + "('Sicilians', 'NORP')\n", + "('Acarnania', 'GPE')\n", + "('ATHENS', 'GPE')\n", + "('1.28.4', 'CARDINAL')\n", + "('Apollo', 'ORG')\n", + "('Apollo', 'ORG')\n", + "('Erechtheus', 'ORG')\n", + "('Persians', 'NORP')\n", + "('Attica Philippides', 'PERSON')\n", + "('Lacedaemon', 'PERSON')\n", + "('Lacedacmonians', 'ORG')\n", + "('Mount Parthenius', 'PERSON')\n", + "('Athenians', 'NORP')\n", + "('1.28.5', 'CARDINAL')\n", + "('the Hill of Ares', 'FAC')\n", + "('Ares', 'PERSON')\n", + "('first', 'ORDINAL')\n", + "('Halirrhothius', 'PERSON')\n", + "('Orestes', 'ORG')\n", + "('Athena Areia', 'ORG')\n", + "('Ruthlessness', 'ORG')\n", + "('Athenians', 'NORP')\n", + "('August', 'DATE')\n", + "('Hesiod', 'PERSON')\n", + "('Theogony89', 'GPE')\n", + "('Erinyes', 'ORG')\n", + "('Furies', 'ORG')\n", + "('Aeschylus', 'PERSON')\n", + "('first', 'ORDINAL')\n", + "('Pluto, Hermes', 'ORG')\n", + "('Earth', 'LOC')\n", + "('the Hill of Ares', 'FAC')\n", + "('1.28.7', 'CARDINAL')\n", + "('Oedipus', 'PERSON')\n", + "('Thebes', 'PERSON')\n", + "('Oedipus', 'PERSON')\n", + "('Oedipus Mecisteus', 'PERSON')\n", + "('Thebes', 'PERSON')\n", + "('1.28.8', 'CARDINAL')\n", + "('Athenians', 'NORP')\n", + "('Parabystum', 'NORP')\n", + "('Triangle', 'ORG')\n", + "('Green Court', 'ORG')\n", + "('Red Court', 'ORG')\n", + "('the present day', 'DATE')\n", + "('Heliaea', 'PERSON')\n", + "('One', 'CARDINAL')\n", + "('At Palladium', 'WORK_OF_ART')\n", + "('first', 'ORDINAL')\n", + "('Troy Diomedes', 'PERSON')\n", + "('night', 'TIME')\n", + "('Phalerum', 'GPE')\n", + "('Argives', 'PERSON')\n", + "('Attica', 'GPE')\n", + "('Argives', 'PERSON')\n", + "('Palladium', 'ORG')\n", + "('Athenian', 'NORP')\n", + "('Whereupon Demophon', 'ORG')\n", + "('Argive', 'PERSON')\n", + "('Delphinium', 'ORG')\n", + "('Theseus', 'PERSON')\n", + "('Pallas', 'PERSON')\n", + "('Theseus', 'PERSON')\n", + "('Court', 'ORG')\n", + "('Prytaneum', 'GPE')\n", + "('Erechtheus', 'PERSON')\n", + "('Athens', 'GPE')\n", + "('first', 'ORDINAL')\n", + "('Zeus Polieus', 'PERSON')\n", + "('year', 'DATE')\n", + "('year', 'DATE')\n", + "('Peiraeus', 'PERSON')\n", + "('Phreattys', 'PERSON')\n", + "('Teucer', 'PERSON')\n", + "('Telamon', 'PERSON')\n", + "('Ajax', 'ORG')\n", + "('ATHENS', 'GPE')\n", + "('1.29.1', 'CARDINAL')\n", + "('XXIX', 'ORG')\n", + "('the Hill of Ares', 'FAC')\n", + "('Panathenaea', 'PERSON')\n", + "('Delos', 'ORG')\n", + "('nine', 'CARDINAL')\n", + "('1.29.2', 'CARDINAL')\n", + "('Athenians', 'NORP')\n", + "('Academy', 'ORG')\n", + "('Artemis', 'ORG')\n", + "('Ariste', 'PERSON')\n", + "('Calliste (Fairest', 'ORG')\n", + "('Pamphos', 'GPE')\n", + "('Artemis', 'ORG')\n", + "('every year', 'DATE')\n", + "('Dionysus Eleuthereus', 'PERSON')\n", + "('1.29.3', 'CARDINAL')\n", + "('first', 'ORDINAL')\n", + "('Thrasybulus', 'ORG')\n", + "('Lycus', 'GPE')\n", + "('Athenians', 'NORP')\n", + "('Thebes', 'PERSON')\n", + "('first', 'ORDINAL')\n", + "('Athenians', 'NORP')\n", + "('first', 'ORDINAL')\n", + "('Pericles', 'GPE')\n", + "('1.29.4', 'CARDINAL')\n", + "('Athenians', 'NORP')\n", + "('Marathon', 'EVENT')\n", + "('Academy', 'ORG')\n", + "('First', 'ORDINAL')\n", + "('Thrace', 'GPE')\n", + "('Drabescus,94', 'NORP')\n", + "('Edonians', 'NORP')\n", + "('1.29.5', 'CARDINAL')\n", + "('Leagrus', 'PERSON')\n", + "('Sophanes', 'ORG')\n", + "('Decelea', 'ORG')\n", + "('Argive', 'PERSON')\n", + "('Nemean', 'FAC')\n", + "('third', 'ORDINAL')\n", + "('Athenians', 'NORP')\n", + "('Greece', 'GPE')\n", + "('Priam', 'PERSON')\n", + "('one', 'CARDINAL')\n", + "('Greeks', 'NORP')\n", + "('Athenians', 'NORP')\n", + "('first', 'ORDINAL')\n", + "('Iolaus', 'ORG')\n", + "('Sardinia', 'GPE')\n", + "('secondly', 'ORDINAL')\n", + "('Ionia', 'GPE')\n", + "('thirdly', 'ORDINAL')\n", + "('Thrace', 'GPE')\n", + "('1.29.6', 'CARDINAL')\n", + "('Melanopus', 'PERSON')\n", + "('Macartatus', 'PERSON')\n", + "('Lacedaemonians', 'NORP')\n", + "('Boeotians', 'NORP')\n", + "('Eleon', 'PERSON')\n", + "('Tanagra', 'ORG')\n", + "('Thessalian', 'NORP')\n", + "('Peloponnesians', 'NORP')\n", + "('Archidamus', 'NORP')\n", + "('Attica', 'GPE')\n", + "('first', 'ORDINAL')\n", + "('Cretan', 'NORP')\n", + "('Athenians', 'NORP')\n", + "('Cleisthenes', 'WORK_OF_ART')\n", + "('Thessalians', 'ORG')\n", + "('Athenians', 'NORP')\n", + "('1.29.7', 'CARDINAL')\n", + "('Cleone', 'ORG')\n", + "('Argives', 'GPE')\n", + "('Argives', 'GPE')\n", + "('Athenians', 'NORP')\n", + "('Aeginetans', 'NORP')\n", + "('Persian', 'NORP')\n", + "('Athenians', 'NORP')\n", + "('Olynthus,99', 'ORG')\n", + "('Melesander', 'ORG')\n", + "('Maeander', 'ORG')\n", + "('1.29.8', 'CARDINAL')\n", + "('Cassander', 'PRODUCT')\n", + "('Argives', 'GPE')\n", + "('Athens', 'GPE')\n", + "('two', 'CARDINAL')\n", + "('Sparta', 'GPE')\n", + "('Helots', 'ORG')\n", + "('Lacedaemonians', 'NORP')\n", + "('Athens', 'GPE')\n", + "('Cimon', 'ORG')\n", + "('Miltiades', 'PERSON')\n", + "('Lacedaemonians', 'NORP')\n", + "('1.29.9', 'CARDINAL')\n", + "('Athenians', 'NORP')\n", + "('Argives', 'GPE')\n", + "('Lacedaemonians', 'NORP')\n", + "('Tanagra,102', 'ORG')\n", + "('Athenians', 'NORP')\n", + "('Boeotians', 'NORP')\n", + "('Lacedaemonians', 'NORP')\n", + "('Argives', 'GPE')\n", + "('Athenians', 'NORP')\n", + "('Argives', 'GPE')\n", + "('night', 'TIME')\n", + "('the next day', 'DATE')\n", + "('Lacedaemonians', 'NORP')\n", + "('Thessalians', 'ORG')\n", + "('Athenians', 'NORP')\n", + "('1.29.10', 'CARDINAL')\n", + "('Apollodorus', 'GPE')\n", + "('Athenian', 'NORP')\n", + "('Arsites', 'PERSON')\n", + "('Phrygia', 'ORG')\n", + "('Hellespont', 'GPE')\n", + "('Perinthians', 'NORP')\n", + "('Philip', 'PERSON')\n", + "('Spintharus', 'GPE')\n", + "('Lachares', 'PERSON')\n", + "('Peiraeus', 'PERSON')\n", + "('Macedonian', 'NORP')\n", + "('Greeks', 'NORP')\n", + "('Lacedaemonians', 'NORP')\n", + "('Corinthians', 'NORP')\n", + "('Athenians', 'NORP')\n", + "('Argives', 'PERSON')\n", + "('Boeotians', 'NORP')\n", + "('Leuctra', 'GPE')\n", + "('Boeotians', 'NORP')\n", + "('Corinth', 'GPE')\n", + "('Euboea and Chios,107', 'WORK_OF_ART')\n", + "('Asia', 'LOC')\n", + "('Sicily', 'GPE')\n", + "('1.29.12', 'CARDINAL')\n", + "('Nicias', 'PERSON')\n", + "('Plataeans', 'NORP')\n", + "('Athenians', 'NORP')\n", + "('Nicias', 'PERSON')\n", + "('Philistus', 'ORG')\n", + "('Nicias', 'PERSON')\n", + "('Nicias', 'PERSON')\n", + "('1.29.13', 'CARDINAL')\n", + "('Thrace', 'GPE')\n", + "('Alcibiades', 'PERSON')\n", + "('Arcadians', 'NORP')\n", + "('Mantinea', 'GPE')\n", + "('Eleans', 'NORP')\n", + "('Lacedaemonians,110', 'PERSON')\n", + "('Syracusans', 'PERSON')\n", + "('Demosthenes', 'PERSON')\n", + "('Sicily', 'PERSON')\n", + "('Hellespont,111', 'GPE')\n", + "('Macedonians', 'NORP')\n", + "('Delium', 'ORG')\n", + "('Leosthenes', 'PERSON')\n", + "('Thessaly', 'GPE')\n", + "('Cimon', 'ORG')\n", + "('Cyprus,114', 'ORG')\n", + "('more than thirteen', 'CARDINAL')\n", + "('1.29.14', 'CARDINAL')\n", + "('Athenians', 'NORP')\n", + "('Romans', 'NORP')\n", + "('five', 'CARDINAL')\n", + "('Attic', 'NORP')\n", + "('Romans', 'NORP')\n", + "('Carthaginians', 'NORP')\n", + "('Tolmides', 'PERSON')\n", + "('Cimon', 'ORG')\n", + "('1.29.15', 'CARDINAL')\n", + "('Conon and Timotheus', 'WORK_OF_ART')\n", + "('second', 'ORDINAL')\n", + "('Miltiades', 'PERSON')\n", + "('Cimon', 'ORG')\n", + "('first', 'ORDINAL')\n", + "('Zeno', 'PERSON')\n", + "('Mnaseas', 'PERSON')\n", + "('Nicias', 'PERSON')\n", + "('Nicomedes', 'PRODUCT')\n", + "('Harmodius', 'PERSON')\n", + "('Aristogeiton', 'PERSON')\n", + "('Hipparchus', 'PERSON')\n", + "('Peisistratus', 'ORG')\n", + "('two', 'CARDINAL')\n", + "('Ephialtes', 'PERSON')\n", + "('Areopagus,118', 'PERSON')\n", + "('Lycurgus,119', 'PERSON')\n", + "('Lycophron', 'ORG')\n", + "('six thousand five hundred', 'DATE')\n", + "('Pericles', 'GPE')\n", + "('Xanthippus', 'ORG')\n", + "('Goddess', 'PRODUCT')\n", + "('hundred', 'CARDINAL')\n", + "('four hundred', 'CARDINAL')\n", + "('Peiraeus', 'PERSON')\n", + "('Lyceum', 'ORG')\n", + "('Lachares', 'PERSON')\n", + "('THE ACADEMY OF ATHENS', 'ORG')\n", + "('1.30.1', 'CARDINAL')\n", + "('Academy', 'ORG')\n", + "('Love', 'WORK_OF_ART')\n", + "('Charmus', 'ORG')\n", + "('first', 'ORDINAL')\n", + "('Athenian', 'NORP')\n", + "('Anteros (Love Avenged', 'WORK_OF_ART')\n", + "('the Athenian Meles', 'ORG')\n", + "('Timagoras', 'GPE')\n", + "('Timagoras', 'PERSON')\n", + "('Timagoras', 'PERSON')\n", + "('Anteros', 'LOC')\n", + "('Timagoras', 'GPE')\n", + "('1.30.2', 'CARDINAL')\n", + "('Academy', 'ORG')\n", + "('Prometheus', 'PERSON')\n", + "('first', 'ORDINAL')\n", + "('second', 'ORDINAL')\n", + "('third', 'ORDINAL')\n", + "('Muses', 'PRODUCT')\n", + "('Hermes', 'ORG')\n", + "('one', 'CARDINAL')\n", + "('Athena', 'ORG')\n", + "('Heracles', 'PERSON')\n", + "('second', 'ORDINAL')\n", + "('1.30.3', 'CARDINAL')\n", + "('Academy', 'ORG')\n", + "('Plato', 'PERSON')\n", + "('the night', 'TIME')\n", + "('Plato', 'PERSON')\n", + "('Socrates', 'PRODUCT')\n", + "('Swan', 'WORK_OF_ART')\n", + "('Ligyes', 'PERSON')\n", + "('Eridanus', 'LOC')\n", + "('Celtic', 'NORP')\n", + "('Apollo', 'ORG')\n", + "('Ligyes', 'PERSON')\n", + "('1.30.4', 'CARDINAL')\n", + "('Timon', 'ORG')\n", + "('the Hill of Horses', 'ORG')\n", + "('first', 'ORDINAL')\n", + "('Attica', 'GPE')\n", + "('Oedipus', 'PERSON')\n", + "('Homer', 'PERSON')\n", + "('Poseidon', 'GPE')\n", + "('Athena', 'ORG')\n", + "('Peirithous', 'PERSON')\n", + "('Theseus', 'PERSON')\n", + "('Oedipus', 'PERSON')\n", + "('Adrastus', 'ORG')\n", + "('Poseidon', 'GPE')\n", + "('Attica', 'GPE')\n", + "('Athenians', 'NORP')\n", + "('ALIMUS', 'ORG')\n", + "('ZOSTER', 'ORG')\n", + "('PROSPALTA', 'ORG')\n", + "('ANAGYRUS', 'ORG')\n", + "('CEPHALE', 'ORG')\n", + "('1.31.1', 'CARDINAL')\n", + "('Attica', 'GPE')\n", + "('Alimus', 'FAC')\n", + "('Demeter Lawgiver', 'PERSON')\n", + "('Maid', 'PERSON')\n", + "('Athena', 'ORG')\n", + "('Apollo', 'ORG')\n", + "('Artemis', 'ORG')\n", + "('Leto', 'PERSON')\n", + "('Leto', 'PERSON')\n", + "('Prospalta', 'PERSON')\n", + "('Maid', 'PERSON')\n", + "('Demeter', 'PERSON')\n", + "('Anagyrus', 'PERSON')\n", + "('Cephale', 'ORG')\n", + "('Dioscuri', 'ORG')\n", + "('1.31.2', 'CARDINAL')\n", + "('Prasiae', 'ORG')\n", + "('Apollo', 'ORG')\n", + "('first', 'ORDINAL')\n", + "('Hyperboreans', 'NORP')\n", + "('Hyperboreans', 'NORP')\n", + "('Arimaspi', 'PERSON')\n", + "('Arimaspi', 'PERSON')\n", + "('Issedones', 'ORG')\n", + "('Scythians', 'NORP')\n", + "('Sinope', 'PERSON')\n", + "('Greeks', 'NORP')\n", + "('Prasiae', 'ORG')\n", + "('Athenians', 'NORP')\n", + "('Delos', 'PERSON')\n", + "('first', 'ORDINAL')\n", + "('Prasiae', 'ORG')\n", + "('Erysichthon', 'GPE')\n", + "('Delos', 'ORG')\n", + "('1.31.3', 'CARDINAL')\n", + "('Athens', 'GPE')\n", + "('Lamptrae', 'PERSON')\n", + "('Attica', 'GPE')\n", + "('Xuthus', 'PERSON')\n", + "('Athenians', 'NORP')\n", + "('Eleusis', 'PERSON')\n", + "('PHYLA & MYRRHINUS', 'ORG')\n", + "('1.31.4', 'CARDINAL')\n", + "('Phlya', 'PERSON')\n", + "('Myrrhinus', 'GPE')\n", + "('Apollo Dionysodotus', 'ORG')\n", + "('Artemis Light', 'ORG')\n", + "('Dionysus Flower', 'ORG')\n", + "('Ismenian', 'NORP')\n", + "('Earth', 'LOC')\n", + "('Great', 'FAC')\n", + "('second', 'ORDINAL')\n", + "('Demeter Anesidora', 'PERSON')\n", + "('Gifts', 'PERSON')\n", + "('Zeus Ctesius', 'PERSON')\n", + "('Tithrone Athena', 'ORG')\n", + "('First', 'ORDINAL')\n", + "('August', 'DATE')\n", + "('Myrrhinus', 'GPE')\n", + "('Colaenis', 'NORP')\n", + "('1.31.5', 'CARDINAL')\n", + "('Athmonia', 'GPE')\n", + "('Artemis Amarysia', 'ORG')\n", + "('Euboea', 'GPE')\n", + "('Amarysia', 'PERSON')\n", + "('Amarysia', 'GPE')\n", + "('Athenians', 'NORP')\n", + "('Athmonia', 'GPE')\n", + "('Colaenis', 'NORP')\n", + "('Myrrhinus', 'GPE')\n", + "('Colaenus', 'GPE')\n", + "('Cecrops', 'GPE')\n", + "('Colaenus', 'PERSON')\n", + "('Myrrhinusians', 'NORP')\n", + "('Cecrops', 'PERSON')\n", + "('Acharnae', 'PERSON')\n", + "('Apollo Agyieus', 'PERSON')\n", + "('Heracles', 'PERSON')\n", + "('Athena Health', 'ORG')\n", + "('Athena Horse', 'ORG')\n", + "('Dionysus Singer', 'PERSON')\n", + "('Dionysus Ivy', 'PERSON')\n", + "('first', 'ORDINAL')\n", + "('MT PENTELICUS', 'PERSON')\n", + "('MT PARNES &', 'ORG')\n", + "('1.32.1', 'CARDINAL')\n", + "('Attic', 'NORP')\n", + "('Pentelicus', 'ORG')\n", + "('Parnes', 'ORG')\n", + "('Hymettus', 'ORG')\n", + "('1.32.2', 'CARDINAL')\n", + "('Athenians', 'NORP')\n", + "('Pentelicus', 'ORG')\n", + "('Athena', 'ORG')\n", + "('Hymettus', 'ORG')\n", + "('Zeus Hymettius', 'PERSON')\n", + "('Zeus Rain-god', 'FAC')\n", + "('Apollo Foreseer', 'PERSON')\n", + "('Parnes', 'ORG')\n", + "('Zeus Parnethius', 'PERSON')\n", + "('Zeus Semaleus', 'PERSON')\n", + "('Parnes', 'PRODUCT')\n", + "('Zeus', 'PERSON')\n", + "('Averter', 'PERSON')\n", + "('Anchesmus', 'NORP')\n", + "('Zeus Anchesmius', 'PERSON')\n", + "('MARATHON', 'ORG')\n", + "('1.32.3', 'CARDINAL')\n", + "('Marathon', 'FAC')\n", + "('Athens', 'GPE')\n", + "('Carystus', 'NORP')\n", + "('Attica', 'GPE')\n", + "('Athenians', 'NORP')\n", + "('the Boeotian Plataeans', 'ORG')\n", + "('first', 'ORDINAL')\n", + "('1.32.4', 'CARDINAL')\n", + "('one', 'CARDINAL')\n", + "('Miltiades', 'PERSON')\n", + "('Cimon', 'ORG')\n", + "('Paros', 'ORG')\n", + "('Athenians', 'NORP')\n", + "('every night', 'TIME')\n", + "('Marathonians', 'NORP')\n", + "('Marathon', 'EVENT')\n", + "('Heracles', 'PERSON')\n", + "('first', 'ORDINAL')\n", + "('Greeks', 'NORP')\n", + "('1.32.5', 'CARDINAL')\n", + "('Athenians', 'NORP')\n", + "('god', 'PERSON')\n", + "('Echetlaeus', 'PERSON')\n", + "('Athenians', 'NORP')\n", + "('Persians', 'NORP')\n", + "('1.32.6', 'CARDINAL')\n", + "('Marathon', 'DATE')\n", + "('Macaria', 'LANGUAGE')\n", + "('Heracles', 'PERSON')\n", + "('Tiryns', 'ORG')\n", + "('Eurystheus', 'PERSON')\n", + "('Ceyx', 'PERSON')\n", + "('Heracles', 'PERSON')\n", + "('Eurystheus', 'PERSON')\n", + "('Athens', 'GPE')\n", + "('Theseus', 'PERSON')\n", + "('first', 'ORDINAL')\n", + "('Peloponnesians', 'NORP')\n", + "('Athenians', 'NORP')\n", + "('Theseus', 'PERSON')\n", + "('Eurystheus', 'GPE')\n", + "('Athenians', 'NORP')\n", + "('one', 'CARDINAL')\n", + "('Heracles', 'PERSON')\n", + "('Thereupon Macaria', 'PERSON')\n", + "('Deianeira', 'PERSON')\n", + "('Heracles', 'PERSON')\n", + "('Athenians', 'NORP')\n", + "('1.32.7', 'CARDINAL')\n", + "('Marathon a lake', 'FAC')\n", + "('Artaphernes', 'ORG')\n", + "('the Hill of Pan', 'ORG')\n", + "(\"Pan's\", 'ORG')\n", + "('BRAURON', 'ORG')\n", + "('1.33.1', 'CARDINAL')\n", + "('Marathon', 'ORG')\n", + "('Brauron', 'ORG')\n", + "('Iphigenia', 'GPE')\n", + "('Agamemnon', 'ORG')\n", + "('Artemis', 'ORG')\n", + "('Tauri', 'GPE')\n", + "('Athens', 'GPE')\n", + "('Argos', 'ORG')\n", + "('Artemis', 'ORG')\n", + "('one', 'CARDINAL')\n", + "('RHAMNUS', 'PRODUCT')\n", + "('About sixty', 'CARDINAL')\n", + "('Oropus', 'ORG')\n", + "('Rhamnus', 'PRODUCT')\n", + "('Nemesis', 'WORK_OF_ART')\n", + "('Marathon', 'EVENT')\n", + "('Athens', 'GPE')\n", + "('Parian', 'NORP')\n", + "('1.33.3', 'CARDINAL')\n", + "('Pheidias', 'PERSON')\n", + "('Nemesis', 'WORK_OF_ART')\n", + "('Aethiopians', 'PERSON')\n", + "('Aethiopians', 'PERSON')\n", + "('Aethiopians', 'PERSON')\n", + "('Aethiopians', 'PERSON')\n", + "('Ocean', 'ORG')\n", + "('Nemesis', 'PERSON')\n", + "('1.33.4', 'CARDINAL')\n", + "('Iberians', 'NORP')\n", + "('Celts', 'NORP')\n", + "('Ocean', 'ORG')\n", + "('Britain', 'GPE')\n", + "('Aethiopians', 'PERSON')\n", + "('Syene', 'PERSON')\n", + "('the Red Sea', 'LOC')\n", + "('Ichthyophagi', 'NORP')\n", + "('Meroe', 'PERSON')\n", + "('Aethiopian', 'NORP')\n", + "('Nile', 'LOC')\n", + "('1.33.5', 'CARDINAL')\n", + "('Aethiopians', 'PERSON')\n", + "('Mauri', 'ORG')\n", + "('Nasamones', 'ORG')\n", + "('Nasamones', 'ORG')\n", + "('Herodotus', 'NORP')\n", + "('Atlantes', 'LOC')\n", + "('Lixitae', 'FAC')\n", + "('Libyans', 'NORP')\n", + "('Mount Atlas', 'LOC')\n", + "('Aethiopians', 'PERSON')\n", + "('Nasamones', 'ORG')\n", + "('Atlas', 'GPE')\n", + "('three', 'CARDINAL')\n", + "('Aethiopians', 'PERSON')\n", + "('1.33.6', 'CARDINAL')\n", + "('Atlas', 'PERSON')\n", + "('less than two', 'CARDINAL')\n", + "('the spring', 'DATE')\n", + "('Nile', 'LOC')\n", + "('Egypt', 'GPE')\n", + "('Mount Atlas', 'PERSON')\n", + "('Nasamones', 'ORG')\n", + "('1.33.7', 'CARDINAL')\n", + "('Smyrnaeans', 'NORP')\n", + "('Nemesis', 'WORK_OF_ART')\n", + "('Love', 'WORK_OF_ART')\n", + "('Greeks', 'NORP')\n", + "('Nemesis', 'PERSON')\n", + "('Helen', 'PERSON')\n", + "('Leda', 'PERSON')\n", + "('Helen', 'GPE')\n", + "('Greeks', 'NORP')\n", + "('Tyndareus', 'PERSON')\n", + "('Zeus', 'PERSON')\n", + "('1.33.8', 'CARDINAL')\n", + "('Pheidias', 'PERSON')\n", + "('Helen', 'PERSON')\n", + "('Nemesis', 'WORK_OF_ART')\n", + "('Leda', 'PERSON')\n", + "('Tyndareus', 'PERSON')\n", + "('Hippeus', 'PERSON')\n", + "('Agamemnon', 'ORG')\n", + "('Menelaus', 'PERSON')\n", + "('Pyrrhus', 'PERSON')\n", + "('Achilles', 'PERSON')\n", + "('first', 'ORDINAL')\n", + "('Hermione', 'PERSON')\n", + "('Helen', 'PERSON')\n", + "('Orestes', 'ORG')\n", + "('Hermione', 'PERSON')\n", + "('Oenoe', 'PRODUCT')\n", + "('Oropus', 'ORG')\n", + "('Attica', 'GPE')\n", + "('Tanagra', 'ORG')\n", + "('Boeotia', 'PERSON')\n", + "('Athenians', 'NORP')\n", + "('Philip', 'PERSON')\n", + "('Thebes', 'PERSON')\n", + "('About twelve', 'CARDINAL')\n", + "('Amphiaraus', 'ORG')\n", + "('1.34.2', 'CARDINAL')\n", + "('Amphiaraus', 'PERSON')\n", + "('Thebes', 'PERSON')\n", + "('Chariot', 'PRODUCT')\n", + "('Thebes', 'PERSON')\n", + "('Chalcis', 'GPE')\n", + "('Amphiaraus', 'ORG')\n", + "('first', 'ORDINAL')\n", + "('Oropians', 'ORG')\n", + "('Greeks', 'NORP')\n", + "('Greeks', 'NORP')\n", + "('Eleus', 'NORP')\n", + "('Chersonnesus', 'PERSON')\n", + "('Protesilaus', 'PERSON')\n", + "('Lebadea', 'ORG')\n", + "('Boeotians', 'NORP')\n", + "('Trophonius', 'GPE')\n", + "('Oropians', 'ORG')\n", + "('Amphiaraus', 'ORG')\n", + "('1.34.3', 'CARDINAL')\n", + "('One', 'CARDINAL')\n", + "('Heracles', 'GPE')\n", + "('Zeus', 'PERSON')\n", + "('Apollo Healer', 'PERSON')\n", + "('third', 'ORDINAL')\n", + "('Hestia', 'PERSON')\n", + "('Hermes', 'ORG')\n", + "('Amphiaraus', 'ORG')\n", + "('Amphilochus', 'PERSON')\n", + "('Eriphyle', 'GPE')\n", + "('Amphiaraus', 'ORG')\n", + "('Amphilochus', 'PERSON')\n", + "('fourth', 'ORDINAL')\n", + "('Aphrodite', 'PERSON')\n", + "('Panacea', 'ORG')\n", + "('Iaso, Health', 'ORG')\n", + "('Athena Healer', 'PERSON')\n", + "('fifth', 'ORDINAL')\n", + "('Pan', 'ORG')\n", + "('Achelous', 'PERSON')\n", + "('Cephisus', 'PERSON')\n", + "('Athenians', 'NORP')\n", + "('Amphilochus', 'PERSON')\n", + "('Mallus', 'NORP')\n", + "('Cilicia', 'ORG')\n", + "('1.34.4', 'CARDINAL')\n", + "('Oropians', 'ORG')\n", + "('the spring', 'DATE')\n", + "('Amphiaraus', 'ORG')\n", + "('Iophon', 'PERSON')\n", + "('Cnossian', 'NORP')\n", + "('Amphiaraus', 'ORG')\n", + "('Argives', 'GPE')\n", + "('Thebes', 'PERSON')\n", + "('Apollo', 'ORG')\n", + "('Amphiaraus', 'ORG')\n", + "('Amphiaraus', 'PERSON')\n", + "('first', 'ORDINAL')\n", + "('first', 'ORDINAL')\n", + "('SALAMIS', 'ORG')\n", + "('1.35.1', 'CARDINAL')\n", + "('XXXV', 'ORG')\n", + "('Attica', 'GPE')\n", + "('one', 'CARDINAL')\n", + "('the Island of Patroclus', 'LOC')\n", + "('Sunium', 'LOC')\n", + "('Attica', 'GPE')\n", + "('Helen', 'PERSON')\n", + "('Troy', 'PERSON')\n", + "('1.35.2', 'CARDINAL')\n", + "('Helene', 'PERSON')\n", + "('Salamis', 'ORG')\n", + "('Eleusis', 'ORG')\n", + "('Megara', 'PERSON')\n", + "('first', 'ORDINAL')\n", + "('Cychreus', 'GPE')\n", + "('Salamis', 'WORK_OF_ART')\n", + "('Asopus', 'ORG')\n", + "('Aeginetans', 'NORP')\n", + "('Telamon', 'PERSON')\n", + "('Philaeus', 'PERSON')\n", + "('Eurysaces', 'PERSON')\n", + "('Ajax', 'ORG')\n", + "('Athenians', 'NORP')\n", + "('Athenian', 'NORP')\n", + "('Athenians', 'NORP')\n", + "('Salaminians', 'NORP')\n", + "('Macedonians', 'NORP')\n", + "('Aeschetades', 'PERSON')\n", + "('Salamis', 'ORG')\n", + "('Salaminians', 'NORP')\n", + "('1.35.3', 'CARDINAL')\n", + "('Ajax', 'ORG')\n", + "('Athenians', 'NORP')\n", + "('Ajax', 'ORG')\n", + "('Eurysaces', 'PERSON')\n", + "('Eurysaces', 'PERSON')\n", + "('Athens', 'GPE')\n", + "('Salamis', 'PRODUCT')\n", + "('Telamon', 'PERSON')\n", + "('Greeks', 'NORP')\n", + "('1.35.4', 'CARDINAL')\n", + "('Salamis', 'PERSON')\n", + "('Ajax', 'PERSON')\n", + "('first', 'ORDINAL')\n", + "('Aeolians', 'NORP')\n", + "('Ilium', 'ORG')\n", + "('Odysseus', 'PERSON')\n", + "('Ajax', 'ORG')\n", + "('Mysian', 'NORP')\n", + "('1.35.5', 'CARDINAL')\n", + "('Ajax', 'ORG')\n", + "('Celts', 'NORP')\n", + "('Egyptian', 'NORP')\n", + "('1.35.6', 'CARDINAL')\n", + "('Magnesians', 'NORP')\n", + "('Lethaeus', 'PERSON')\n", + "('Protophanes', 'ORG')\n", + "('one', 'CARDINAL')\n", + "('Olympia', 'PERSON')\n", + "('one day', 'DATE')\n", + "('Milesians', 'NORP')\n", + "('Lade', 'PERSON')\n", + "('One', 'CARDINAL')\n", + "('Asterius', 'ORG')\n", + "('Asterius', 'ORG')\n", + "('Asterius', 'ORG')\n", + "('Anax', 'GPE')\n", + "('Anax', 'ORG')\n", + "('Earth', 'LOC')\n", + "('less than', 'CARDINAL')\n", + "('1.35.7', 'CARDINAL')\n", + "('Lydia', 'PERSON')\n", + "('The Doors of Temenus', 'ORG')\n", + "('Geryon', 'ORG')\n", + "('Chrysaor', 'ORG')\n", + "('Geryon', 'ORG')\n", + "('1.35.8', 'CARDINAL')\n", + "('Geryon', 'ORG')\n", + "('Gadeira', 'PERSON')\n", + "('Lydians', 'ORG')\n", + "('Hyllus', 'PRODUCT')\n", + "('Earth', 'LOC')\n", + "('Heracles', 'PERSON')\n", + "('Omphale', 'ORG')\n", + "('Hyllus', 'PRODUCT')\n", + "('Salamis', 'ORG')\n", + "('Artemis', 'ORG')\n", + "('Themistocles', 'ORG')\n", + "('Neocles', 'GPE')\n", + "('Cychreus', 'GPE')\n", + "('Athenians', 'NORP')\n", + "('Persians', 'NORP')\n", + "('Athenians', 'NORP')\n", + "('Cychreus', 'PERSON')\n", + "('1.36.2', 'CARDINAL')\n", + "('Salamis', 'LAW')\n", + "('Psyttalea', 'GPE')\n", + "('about four hundred', 'CARDINAL')\n", + "('Persians', 'NORP')\n", + "('Xerxes', 'PRODUCT')\n", + "('Greeks', 'NORP')\n", + "('Psyttalea', 'GPE')\n", + "('1.36.3', 'CARDINAL')\n", + "('Eleusis', 'PERSON')\n", + "('Athens', 'GPE')\n", + "('Athenians', 'NORP')\n", + "('Two', 'CARDINAL')\n", + "('this day', 'DATE')\n", + "('Greeks', 'NORP')\n", + "('Hadrian', 'NORP')\n", + "('1.36.4', 'CARDINAL')\n", + "('Anthemocritus', 'ORG')\n", + "('Molottus', 'PERSON')\n", + "('Athenians', 'NORP')\n", + "('Plutarch,130', 'PERSON')\n", + "('Scirum', 'PRODUCT')\n", + "('Eleusinians', 'NORP')\n", + "('Erechtheus', 'ORG')\n", + "('Dodona', 'PERSON')\n", + "('Scirus', 'PRODUCT')\n", + "('Phalerum', 'GPE')\n", + "('Athena Sciras', 'ORG')\n", + "('Elusinians', 'NORP')\n", + "('1.36.5', 'CARDINAL')\n", + "('Cephisodorus', 'PERSON')\n", + "('Philip', 'PERSON')\n", + "('Demetrius', 'PERSON')\n", + "('Macedon', 'GPE')\n", + "('Athens', 'GPE')\n", + "('two', 'CARDINAL')\n", + "('Attalus', 'ORG')\n", + "('Mysian', 'NORP')\n", + "('Egyptian', 'NORP')\n", + "('Aetolians', 'GPE')\n", + "('Rhodians', 'NORP')\n", + "('Cretans', 'ORG')\n", + "('islanders', 'NORP')\n", + "('1.36.6', 'CARDINAL')\n", + "('Egypt', 'GPE')\n", + "('Mysia', 'GPE')\n", + "('Crete', 'GPE')\n", + "('Rhodians', 'NORP')\n", + "('Macedonian', 'NORP')\n", + "('Cephisodorus', 'PERSON')\n", + "('Athenians', 'NORP')\n", + "('Italy', 'GPE')\n", + "('Philip', 'PERSON')\n", + "('Macedonians', 'NORP')\n", + "('Perseus', 'PERSON')\n", + "('Philip', 'GPE')\n", + "('Italy', 'GPE')\n", + "('Philip', 'PERSON')\n", + "('Demetrius', 'PERSON')\n", + "('Demetrius', 'PERSON')\n", + "('first', 'ORDINAL')\n", + "('Macedon', 'GPE')\n", + "('Alexander', 'PERSON')\n", + "('Cassander', 'PRODUCT')\n", + "('1.37.1', 'CARDINAL')\n", + "('Cephisodorus', 'PERSON')\n", + "('Heliodorus', 'PERSON')\n", + "('Athena', 'ORG')\n", + "('Themistocles', 'ORG')\n", + "('Poliarchus', 'GPE')\n", + "('Themistocles', 'ORG')\n", + "('Xerxes', 'PRODUCT')\n", + "('Persians', 'NORP')\n", + "('Acestium', 'PERSON')\n", + "('Xenocles', 'PERSON')\n", + "('Sophocles', 'PERSON')\n", + "('Leon', 'PERSON')\n", + "('Leon', 'PERSON')\n", + "('first', 'ORDINAL')\n", + "('Sophocles', 'PERSON')\n", + "('Themistocles', 'ORG')\n", + "('Theophrastus', 'NORP')\n", + "('1.37.2', 'CARDINAL')\n", + "('Themistocles', 'ORG')\n", + "('Lacius', 'ORG')\n", + "('Laciadae', 'PERSON')\n", + "('Nicocles of Tarentum', 'ORG')\n", + "('Zephyrus', 'PERSON')\n", + "('Demeter', 'PERSON')\n", + "('Athena', 'ORG')\n", + "('Poseidon', 'GPE')\n", + "('Phytalus', 'PERSON')\n", + "('Demeter', 'PERSON')\n", + "('Phytalus', 'PERSON')\n", + "('Phytalus', 'PERSON')\n", + "('Demeter', 'PERSON')\n", + "('August', 'DATE')\n", + "('Whence Phytalus', 'ORG')\n", + "('1.37.3', 'CARDINAL')\n", + "('Cephisus', 'ORG')\n", + "('Theodorus', 'GPE')\n", + "('Mnesimache', 'PRODUCT')\n", + "('Cephisus', 'ORG')\n", + "('Greeks', 'NORP')\n", + "('Homer,134', 'PERSON')\n", + "('Peleus', 'PERSON')\n", + "('Achilles', 'PERSON')\n", + "('Troy', 'GPE')\n", + "('Spercheus', 'PERSON')\n", + "('1.37.4', 'CARDINAL')\n", + "('Cephisus', 'ORG')\n", + "('Zeus Meilichius', 'PERSON')\n", + "('Theseus', 'PERSON')\n", + "('Phytalus', 'PERSON')\n", + "('Sinis', 'ORG')\n", + "('Pittheus', 'PERSON')\n", + "('Phaselis', 'PERSON')\n", + "('Mnesitheus', 'GPE')\n", + "('Iacchus', 'NORP')\n", + "('first', 'ORDINAL')\n", + "('Demeter', 'PERSON')\n", + "('Eleusis', 'ORG')\n", + "('1.37.5', 'CARDINAL')\n", + "('Athens', 'GPE')\n", + "('the Macedonian Harpalus', 'FAC')\n", + "('Alexander', 'PERSON')\n", + "('Asia', 'LOC')\n", + "('Europe', 'LOC')\n", + "('Athens', 'GPE')\n", + "('Alexander', 'PERSON')\n", + "('Pythonice', 'ORG')\n", + "('Athens', 'GPE')\n", + "('Corinth', 'GPE')\n", + "('Greek', 'NORP')\n", + "('1.37.6', 'CARDINAL')\n", + "('Demeter', 'PERSON')\n", + "('Athena', 'ORG')\n", + "('Apollo', 'ORG')\n", + "('first', 'ORDINAL')\n", + "('Apollo', 'ORG')\n", + "('Cephalus', 'ORG')\n", + "('Deion', 'ORG')\n", + "('Amphitryon', 'PERSON')\n", + "('Teleboans', 'NORP')\n", + "('first', 'ORDINAL')\n", + "('Cephallenia', 'PERSON')\n", + "('Thebes', 'PERSON')\n", + "('Athens', 'GPE')\n", + "('Procris', 'PERSON')\n", + "('tenth', 'ORDINAL')\n", + "('Chalcinus', 'LOC')\n", + "('Daetus', 'ORG')\n", + "('Cephalus', 'ORG')\n", + "('Delphi', 'ORG')\n", + "('Athens', 'GPE')\n", + "('1.37.7', 'CARDINAL')\n", + "('first', 'ORDINAL')\n", + "('Apollo', 'ORG')\n", + "('Attica', 'GPE')\n", + "('Apollo', 'ORG')\n", + "('Athens', 'GPE')\n", + "('Athenians', 'NORP')\n", + "('Aphrodite', 'PERSON')\n", + "('ELEUSIS', 'ORG')\n", + "('1.38.1', 'CARDINAL')\n", + "('Rheiti', 'PERSON')\n", + "('Euripus', 'ORG')\n", + "('Chalcidians', 'NORP')\n", + "('Maid', 'PERSON')\n", + "('Demeter', 'PERSON')\n", + "('Eleusinians', 'NORP')\n", + "('Athenians', 'NORP')\n", + "('1.38.2', 'CARDINAL')\n", + "('first', 'ORDINAL')\n", + "('Crocon', 'ORG')\n", + "('Athenians', 'NORP')\n", + "('Saesara', 'GPE')\n", + "('Celeus', 'PERSON')\n", + "('Scambonidae', 'ORG')\n", + "('Crocon', 'ORG')\n", + "('Eleusinians', 'NORP')\n", + "('Athenians', 'NORP')\n", + "('Eumolpus', 'GPE')\n", + "('Eumolpus', 'NORP')\n", + "('Thrace', 'GPE')\n", + "('Poseidon', 'GPE')\n", + "('Chione', 'GPE')\n", + "('Oreithyia', 'PERSON')\n", + "('Homer', 'PERSON')\n", + "('Eumolpus', 'ORG')\n", + "('1.38.3', 'CARDINAL')\n", + "('Eleusinians', 'NORP')\n", + "('Athenians', 'NORP')\n", + "('Erechtheus', 'PERSON')\n", + "('Athenians', 'NORP')\n", + "('Immaradus', 'GPE')\n", + "('Eumolpus', 'GPE')\n", + "('Eleusinians', 'NORP')\n", + "('Athenians', 'NORP')\n", + "('Two', 'CARDINAL')\n", + "('Eumolpus', 'NORP')\n", + "('Celeus', 'PERSON')\n", + "('Pamphos', 'PERSON')\n", + "('Homer', 'ORG')\n", + "('Diogenia', 'GPE')\n", + "('Pammerope', 'GPE')\n", + "('third', 'ORDINAL')\n", + "('Saesara', 'GPE')\n", + "('Ceryx', 'LOC')\n", + "('Ceryces', 'ORG')\n", + "('Cecrops', 'GPE')\n", + "('Hermes', 'ORG')\n", + "('Eumolpus', 'GPE')\n", + "('1.38.4', 'CARDINAL')\n", + "('Hippothoon', 'PERSON')\n", + "('one', 'CARDINAL')\n", + "('Zarex', 'GPE')\n", + "('Apollo', 'ORG')\n", + "('Lacedaemonian', 'PERSON')\n", + "('Zarax', 'PERSON')\n", + "('Laconian', 'NORP')\n", + "('Athenian', 'NORP')\n", + "('Zarex', 'GPE')\n", + "('ELEUSIS', 'ORG')\n", + "('Eleusis', 'ORG')\n", + "('Cephisus', 'ORG')\n", + "('Cephisus', 'ORG')\n", + "('Erineus', 'PERSON')\n", + "('Pluto', 'PERSON')\n", + "('Maid', 'PERSON')\n", + "('Cephisus Theseus', 'PERSON')\n", + "('Polypemon', 'PERSON')\n", + "('surnamed Procrustes', 'PERSON')\n", + "('1.38.6', 'CARDINAL')\n", + "('Eleusinians', 'NORP')\n", + "('Triptolemus', 'ORG')\n", + "('Artemis', 'ORG')\n", + "('Portal', 'ORG')\n", + "('Poseidon Father', 'PERSON')\n", + "('Callichorum', 'WORK_OF_ART')\n", + "('first', 'ORDINAL')\n", + "('Eleusinians', 'NORP')\n", + "('Rharium', 'PERSON')\n", + "('first', 'ORDINAL')\n", + "('first', 'ORDINAL')\n", + "('Triptolemus', 'ORG')\n", + "('1.38.7', 'CARDINAL')\n", + "('Eleusis', 'PERSON')\n", + "('Daeira', 'PERSON')\n", + "('Ocean', 'ORG')\n", + "('Ogygus', 'PERSON')\n", + "('Eleusis', 'ORG')\n", + "('ELEUTHERAE', 'EVENT')\n", + "('1.38.8', 'CARDINAL')\n", + "('Eleusis to Boeotia', 'ORG')\n", + "('Plataean', 'NORP')\n", + "('Attica', 'GPE')\n", + "('Attica', 'GPE')\n", + "('Athenians', 'NORP')\n", + "('Boeotia', 'PERSON')\n", + "('Cithaeron', 'LOC')\n", + "('Eleutherae', 'PERSON')\n", + "('Athenian', 'NORP')\n", + "('Thebans', 'NORP')\n", + "('Dionysus', 'PERSON')\n", + "('Athens', 'GPE')\n", + "('Eleutherae', 'PERSON')\n", + "('1.38.9', 'CARDINAL')\n", + "('Antiope', 'PERSON')\n", + "('the spring', 'DATE')\n", + "('first', 'ORDINAL')\n", + "('Eleutherae', 'PERSON')\n", + "('Cithaeron', 'LOC')\n", + "('ELEUSIS', 'ORG')\n", + "('1.39.1', 'CARDINAL')\n", + "('XXXIX', 'ORG')\n", + "('Eleusis', 'PERSON')\n", + "('Megara', 'PERSON')\n", + "('Anthium', 'EVENT')\n", + "('Demeter', 'PERSON')\n", + "('Celeus', 'GPE')\n", + "('Argive', 'PERSON')\n", + "('Metaneira', 'PERSON')\n", + "('1.39.2', 'CARDINAL')\n", + "('Metaneira', 'PERSON')\n", + "('Thebes', 'PERSON')\n", + "('Creon', 'PRODUCT')\n", + "('Thebes', 'PERSON')\n", + "('Laodamas', 'GPE')\n", + "('Eteocles', 'LOC')\n", + "('Adrastus', 'ORG')\n", + "('Theseus', 'PERSON')\n", + "('Athenians', 'NORP')\n", + "('Boeotians', 'NORP')\n", + "('Theseus', 'PERSON')\n", + "('Eleusinian', 'NORP')\n", + "('Thebans', 'NORP')\n", + "('1.39.3', 'CARDINAL')\n", + "('Argives', 'GPE')\n", + "('Alope', 'GPE')\n", + "('Hippothoon', 'PERSON')\n", + "('Poseidon', 'GPE')\n", + "('Cercyon', 'PERSON')\n", + "('the Wrestling Ground of Cercyon', 'ORG')\n", + "('Alope', 'GPE')\n", + "('Cercyon', 'GPE')\n", + "('Theseus', 'PERSON')\n", + "('Theseus', 'PERSON')\n", + "('first', 'ORDINAL')\n", + "('Athenians', 'NORP')\n", + "('MEGARA', 'PERSON')\n", + "('1.39.4', 'CARDINAL')\n", + "('Eleusis', 'PERSON')\n", + "('Megaris', 'PERSON')\n", + "('Athens', 'GPE')\n", + "('Pylas', 'PERSON')\n", + "('Pandion', 'LOC')\n", + "('Pandion', 'LOC')\n", + "('Nisus', 'PERSON')\n", + "('Athenians', 'NORP')\n", + "('Aegeus', 'PERSON')\n", + "('Megara', 'PERSON')\n", + "('Corinth', 'GPE')\n", + "('Megarians', 'ORG')\n", + "('Nisaea', 'GPE')\n", + "('Codrus the Peloponnesians', 'PERSON')\n", + "('Athens', 'GPE')\n", + "('Megara', 'PERSON')\n", + "('Athenians', 'NORP')\n", + "('Corinthians', 'NORP')\n", + "('1.39.5', 'CARDINAL')\n", + "('Megarians', 'PERSON')\n", + "('Dorians', 'NORP')\n", + "('Phoroneus', 'PERSON')\n", + "('Demeter', 'PERSON')\n", + "('first', 'ORDINAL')\n", + "('Megara', 'PERSON')\n", + "('Megarians', 'PERSON')\n", + "('Boeotians', 'NORP')\n", + "('Megareus', 'PERSON')\n", + "('Poseidon', 'GPE')\n", + "('Onchestus', 'ORG')\n", + "('Boeotians', 'NORP')\n", + "('Nisus', 'PERSON')\n", + "('Minos', 'ORG')\n", + "('Megara', 'PERSON')\n", + "('Nisa', 'PERSON')\n", + "('1.39.6', 'CARDINAL')\n", + "('twelfth', 'ORDINAL')\n", + "('Phoroneus the Megarians', 'ORG')\n", + "('Lelex', 'ORG')\n", + "('Egypt', 'GPE')\n", + "('Leleges', 'PERSON')\n", + "('Lelex', 'ORG')\n", + "('Cleson', 'GPE')\n", + "('Cleson Pylas', 'PERSON')\n", + "('Pylas Sciron', 'PERSON')\n", + "('Pandion', 'LOC')\n", + "('Nisus', 'PERSON')\n", + "('Pandion', 'ORG')\n", + "('Aeacus', 'ORG')\n", + "('Nisus', 'PERSON')\n", + "('Sciron', 'ORG')\n", + "('Nisus', 'PERSON')\n", + "('Megareus', 'PERSON')\n", + "('Poseidon', 'GPE')\n", + "('Iphinoe', 'PERSON')\n", + "('Nisus', 'PERSON')\n", + "('the Cretan war', 'EVENT')\n", + "('Nisus', 'PERSON')\n", + "('MEGARA', 'PERSON')\n", + "('1.40.1', 'CARDINAL')\n", + "('XL', 'ORG')\n", + "('Cylon the Athenian', 'ORG')\n", + "('Theagenes', 'PERSON')\n", + "('Sithnid', 'ORG')\n", + "('Sithnid', 'ORG')\n", + "('one', 'CARDINAL')\n", + "('Zeus', 'PERSON')\n", + "('Megarus', 'PERSON')\n", + "('Zeus', 'PERSON')\n", + "('Deucalion', 'ORG')\n", + "('Gerania', 'GPE')\n", + "('Gerania', 'PERSON')\n", + "('Megarus', 'PERSON')\n", + "('1.40.2', 'CARDINAL')\n", + "('our day', 'DATE')\n", + "('Roman', 'NORP')\n", + "('Artemis', 'ORG')\n", + "('Mardonius', 'ORG')\n", + "('Mardonius at Thebes', 'ORG')\n", + "('Artemis', 'ORG')\n", + "('1.40.3', 'CARDINAL')\n", + "('the day', 'DATE')\n", + "('Megarians', 'PERSON')\n", + "('Twelve', 'CARDINAL')\n", + "('Praxiteles', 'ORG')\n", + "('Artemis', 'ORG')\n", + "('Strongylion', 'PERSON')\n", + "('1.40.4', 'CARDINAL')\n", + "('Zeus', 'PERSON')\n", + "('Zeus', 'PERSON')\n", + "('Peloponnesians', 'NORP')\n", + "('Athenians', 'NORP')\n", + "('Athenians', 'NORP')\n", + "('Zeus', 'PERSON')\n", + "('Theocosmus', 'LOC')\n", + "('Pheidias', 'PERSON')\n", + "('Zeus', 'PERSON')\n", + "('the seasons', 'DATE')\n", + "('half', 'CARDINAL')\n", + "('Theocosmus', 'LOC')\n", + "('Zeus', 'PERSON')\n", + "('1.40.5', 'CARDINAL')\n", + "('Salamis', 'PRODUCT')\n", + "('Athenians', 'NORP')\n", + "('Athenians', 'NORP')\n", + "('Megarians', 'PERSON')\n", + "('Athenians', 'NORP')\n", + "('Salamis', 'PRODUCT')\n", + "('Megarians', 'PERSON')\n", + "('Dorycleans', 'NORP')\n", + "('Salamis', 'PRODUCT')\n", + "('Athenians', 'NORP')\n", + "('1.40.6', 'CARDINAL')\n", + "('Zeus', 'PERSON')\n", + "('the present day', 'DATE')\n", + "('Caria', 'ORG')\n", + "('Phoroneus', 'PERSON')\n", + "('Dionysus Nyctelius', 'PERSON')\n", + "('Aphrodite Epistrophia', 'PERSON')\n", + "('Night', 'WORK_OF_ART')\n", + "('Zeus Conius', 'PERSON')\n", + "('Dusty', 'ORG')\n", + "('Asclepius', 'ORG')\n", + "('1.41.1', 'CARDINAL')\n", + "('XLI', 'ORG')\n", + "('Alcmena', 'ORG')\n", + "('Argos', 'ORG')\n", + "('Megara', 'PERSON')\n", + "('Heracleidae', 'PERSON')\n", + "('Alcmena', 'ORG')\n", + "('Argos', 'ORG')\n", + "('Thebes', 'PERSON')\n", + "('Thebes', 'PERSON')\n", + "('Amphitryon', 'PERSON')\n", + "('Heracles', 'PERSON')\n", + "('Megara', 'PERSON')\n", + "('Delphi', 'ORG')\n", + "('Alcmena', 'ORG')\n", + "('Megara', 'PERSON')\n", + "('1.41.2', 'CARDINAL')\n", + "('Rhus', 'ORG')\n", + "('Theagenes', 'PERSON')\n", + "('Achelous', 'PERSON')\n", + "('Hyllus', 'PRODUCT')\n", + "('Heracles', 'PERSON')\n", + "('Arcadian', 'NORP')\n", + "('Echemus', 'LOC')\n", + "('Echemus', 'ORG')\n", + "('Hyllus', 'PRODUCT')\n", + "('Hyllus', 'PRODUCT')\n", + "('Megara', 'PERSON')\n", + "('Heracleidae', 'PERSON')\n", + "('Peloponnesus', 'PRODUCT')\n", + "('Orestes', 'ORG')\n", + "('1.41.3', 'CARDINAL')\n", + "('Hyllus', 'PRODUCT')\n", + "('Isis', 'ORG')\n", + "('one', 'CARDINAL')\n", + "('Apollo', 'ORG')\n", + "('Artemis', 'ORG')\n", + "('Alcathous', 'PERSON')\n", + "('Cithaeronian', 'PRODUCT')\n", + "('Euippus', 'ORG')\n", + "('Megareus', 'GPE')\n", + "('Timalcus', 'ORG')\n", + "('Theseus', 'PERSON')\n", + "('Dioscuri', 'ORG')\n", + "('Aphidna', 'ORG')\n", + "('Megareus', 'PERSON')\n", + "('Cithaeronian', 'PERSON')\n", + "('Pelops', 'ORG')\n", + "('Artemis Agrotera', 'WORK_OF_ART')\n", + "('Apollo Agraeus', 'PERSON')\n", + "('Hunter', 'PERSON')\n", + "('Megarians', 'PERSON')\n", + "('Alcathous', 'GPE')\n", + "('Cithaeron', 'GPE')\n", + "('Timalcus', 'ORG')\n", + "('Megareus', 'PERSON')\n", + "('Theseus', 'PERSON')\n", + "('Alcman', 'NORP')\n", + "('Athens', 'GPE')\n", + "('Theseus', 'PERSON')\n", + "('Theseus', 'PERSON')\n", + "('1.41.5', 'CARDINAL')\n", + "('Pindar', 'PERSON')\n", + "('Theseus', 'PERSON')\n", + "('Dioscuri', 'ORG')\n", + "('Helen', 'PERSON')\n", + "('Peirithous', 'ORG')\n", + "('Megarians', 'PERSON')\n", + "('Theseus', 'PERSON')\n", + "('Pelops', 'ORG')\n", + "('Megarians', 'NORP')\n", + "('Nisus', 'PERSON')\n", + "('Megareus', 'PERSON')\n", + "('Nisus', 'PERSON')\n", + "('Alcathous', 'GPE')\n", + "('Megareus', 'GPE')\n", + "('Alcathous', 'PERSON')\n", + "('Elis', 'PERSON')\n", + "('Nisus', 'PERSON')\n", + "('Megarians', 'ORG')\n", + "('one', 'CARDINAL')\n", + "('Cretans', 'ORG')\n", + "('Alcathous', 'PERSON')\n", + "('Cithaeron', 'LOC')\n", + "('Artemis Agrotera', 'ORG')\n", + "('Apollo Agraeus', 'PERSON')\n", + "('Pandion', 'PERSON')\n", + "('Pandion', 'LAW')\n", + "('the Rock of Athena Aethyia', 'ORG')\n", + "('1.41.7', 'CARDINAL')\n", + "('Pandion', 'PERSON')\n", + "('Hippolyte', 'ORG')\n", + "('Megarians', 'PERSON')\n", + "('Amazons', 'ORG')\n", + "('Athenians', 'NORP')\n", + "('Antiope', 'PERSON')\n", + "('Theseus', 'PERSON')\n", + "('Hippolyte', 'ORG')\n", + "('Antiope', 'PERSON')\n", + "('Megara', 'PERSON')\n", + "('Themiscyra', 'PERSON')\n", + "('Megarians', 'PERSON')\n", + "('Amazonian', 'NORP')\n", + "('Tereus', 'GPE')\n", + "('Procne', 'PERSON')\n", + "('Pandion', 'ORG')\n", + "('Tereus', 'PERSON')\n", + "('Pagae', 'GPE')\n", + "('Springs', 'GPE')\n", + "('Megaris', 'PERSON')\n", + "('Daulis', 'GPE')\n", + "('Chaeronea', 'GPE')\n", + "('Greece', 'GPE')\n", + "('Tereus', 'PERSON')\n", + "('Philomela', 'PERSON')\n", + "('Itys', 'PERSON')\n", + "('Tereus', 'PERSON')\n", + "('1.41.9', 'CARDINAL')\n", + "('Megara', 'PERSON')\n", + "('Megarians', 'PERSON')\n", + "('first', 'ORDINAL')\n", + "('Athens', 'GPE')\n", + "('1.42.1', 'CARDINAL')\n", + "('XLII', 'ORG')\n", + "('Alcathous', 'PERSON')\n", + "('Megareus', 'GPE')\n", + "('Cretan', 'GPE')\n", + "('Onchestus', 'ORG')\n", + "('Alcathous', 'PERSON')\n", + "('first', 'ORDINAL')\n", + "('1.41.2', 'CARDINAL')\n", + "('Apollo', 'ORG')\n", + "('Alcathous', 'GPE')\n", + "('Megarians', 'PERSON')\n", + "('Athenians', 'NORP')\n", + "('Alcathous', 'PERSON')\n", + "('Periboea', 'PERSON')\n", + "('Theseus', 'PERSON')\n", + "('Crete', 'GPE')\n", + "('Megarians', 'PERSON')\n", + "('Apollo', 'ORG')\n", + "('1.41.3', 'CARDINAL')\n", + "('Egypt', 'GPE')\n", + "('Egyptian', 'NORP')\n", + "('Thebes', 'PERSON')\n", + "('Nile', 'LOC')\n", + "('Memnon', 'ORG')\n", + "('Aethiopia', 'ORG')\n", + "('Egypt', 'GPE')\n", + "('Susa', 'PERSON')\n", + "('Thebans', 'NORP')\n", + "('Memnon', 'ORG')\n", + "('Phamenoph', 'PERSON')\n", + "('Sesostris', 'NORP')\n", + "('two', 'CARDINAL')\n", + "('Cambyses', 'PERSON')\n", + "('every day', 'DATE')\n", + "('Timalcus', 'ORG')\n", + "('Theseus', 'PERSON')\n", + "('Athena', 'ORG')\n", + "('Athena Victory', 'ORG')\n", + "('a third', 'CARDINAL')\n", + "('Athena Aeantis', 'NORP')\n", + "('Megarian', 'NORP')\n", + "('Telamon', 'PERSON')\n", + "('Aeacus', 'ORG')\n", + "('Periboea', 'ORG')\n", + "('Alcathous', 'GPE')\n", + "('Ajax', 'ORG')\n", + "('Alcathous', 'GPE')\n", + "('Athena', 'ORG')\n", + "('1.41.5', 'CARDINAL')\n", + "('Apollo', 'ORG')\n", + "('Hadrian', 'NORP')\n", + "('Apollo', 'ORG')\n", + "('Pythian', 'PERSON')\n", + "('one', 'CARDINAL')\n", + "('Decatephorus (Bringer of Tithes', 'ORG')\n", + "('Egyptian', 'NORP')\n", + "('one', 'CARDINAL')\n", + "('Aeginetan', 'ORG')\n", + "('Cyprus', 'GPE')\n", + "('Aethiopians', 'PERSON')\n", + "('Demeter Thesmophorus', 'PERSON')\n", + "('Callipolis', 'NORP')\n", + "('Alcathous', 'GPE')\n", + "('Alcathous', 'PERSON')\n", + "('Ischepolis', 'PERSON')\n", + "('Aetolia', 'GPE')\n", + "('Callipolis', 'NORP')\n", + "('first', 'ORDINAL')\n", + "('Apollo', 'ORG')\n", + "('Alcathous', 'PERSON')\n", + "('Ischepolis', 'NORP')\n", + "('Callipolis', 'NORP')\n", + "('one', 'CARDINAL')\n", + "('1.41.7', 'CARDINAL')\n", + "('Ino', 'PERSON')\n", + "('Greeks', 'NORP')\n", + "('Ino', 'PERSON')\n", + "('Cleso', 'ORG')\n", + "('Tauropolis', 'PERSON')\n", + "('Cleson', 'GPE')\n", + "('Lelex', 'ORG')\n", + "('first', 'ORDINAL')\n", + "('Leucothea', 'PERSON')\n", + "('1.42.1', 'CARDINAL')\n", + "('XLII', 'ORG')\n", + "('Alcathous', 'PERSON')\n", + "('Megareus', 'GPE')\n", + "('Cretan', 'GPE')\n", + "('Onchestus', 'ORG')\n", + "('Alcathous', 'PERSON')\n", + "('first', 'ORDINAL')\n", + "('1.42.2', 'CARDINAL')\n", + "('Apollo', 'ORG')\n", + "('Alcathous', 'GPE')\n", + "('Megarians', 'PERSON')\n", + "('Athenians', 'NORP')\n", + "('Alcathous', 'PERSON')\n", + "('Periboea', 'PERSON')\n", + "('Theseus', 'PERSON')\n", + "('Crete', 'GPE')\n", + "('Megarians', 'PERSON')\n", + "('Apollo', 'ORG')\n", + "('1.42.3', 'CARDINAL')\n", + "('Egypt', 'GPE')\n", + "('Egyptian', 'NORP')\n", + "('Thebes', 'PERSON')\n", + "('Nile', 'LOC')\n", + "('Memnon', 'ORG')\n", + "('Aethiopia', 'ORG')\n", + "('Egypt', 'GPE')\n", + "('Susa', 'PERSON')\n", + "('Thebans', 'NORP')\n", + "('Memnon', 'ORG')\n", + "('Phamenoph', 'PERSON')\n", + "('Sesostris', 'NORP')\n", + "('two', 'CARDINAL')\n", + "('Cambyses', 'PERSON')\n", + "('every day', 'DATE')\n", + "('1.42.4', 'CARDINAL')\n", + "('Timalcus', 'ORG')\n", + "('Theseus', 'PERSON')\n", + "('Athena', 'ORG')\n", + "('Athena Victory', 'ORG')\n", + "('a third', 'CARDINAL')\n", + "('Athena Aeantis', 'NORP')\n", + "('Megarian', 'NORP')\n", + "('Telamon', 'PERSON')\n", + "('Aeacus', 'ORG')\n", + "('Periboea', 'ORG')\n", + "('Alcathous', 'GPE')\n", + "('Ajax', 'ORG')\n", + "('Alcathous', 'GPE')\n", + "('Athena', 'ORG')\n", + "('1.42.5', 'CARDINAL')\n", + "('Apollo', 'ORG')\n", + "('Hadrian', 'NORP')\n", + "('Apollo', 'ORG')\n", + "('Pythian', 'PERSON')\n", + "('one', 'CARDINAL')\n", + "('Decatephorus (Bringer of Tithes', 'ORG')\n", + "('Egyptian', 'NORP')\n", + "('one', 'CARDINAL')\n", + "('Aeginetan', 'ORG')\n", + "('Cyprus', 'GPE')\n", + "('Aethiopians', 'PERSON')\n", + "('1.42.6', 'CARDINAL')\n", + "('Demeter Thesmophorus', 'PERSON')\n", + "('Callipolis', 'NORP')\n", + "('Alcathous', 'GPE')\n", + "('Alcathous', 'PERSON')\n", + "('Ischepolis', 'PERSON')\n", + "('Aetolia', 'GPE')\n", + "('Callipolis', 'NORP')\n", + "('first', 'ORDINAL')\n", + "('Apollo', 'ORG')\n", + "('Alcathous', 'PERSON')\n", + "('Ischepolis', 'NORP')\n", + "('Callipolis', 'NORP')\n", + "('one', 'CARDINAL')\n", + "('1.42.7', 'CARDINAL')\n", + "('Ino', 'PERSON')\n", + "('Greeks', 'NORP')\n", + "('Ino', 'PERSON')\n", + "('Cleso', 'ORG')\n", + "('Tauropolis', 'PERSON')\n", + "('Cleson', 'GPE')\n", + "('Lelex', 'ORG')\n", + "('first', 'ORDINAL')\n", + "('Leucothea', 'PERSON')\n", + "('1.43.1', 'CARDINAL')\n", + "('Iphigenia', 'PERSON')\n", + "('Megara', 'PERSON')\n", + "('Iphigenia', 'GPE')\n", + "('Arcadians', 'NORP')\n", + "('Hesiod', 'PERSON')\n", + "('A Catalogue of Women', 'WORK_OF_ART')\n", + "('Iphigenia', 'ORG')\n", + "('Artemis', 'ORG')\n", + "('Hecate', 'ORG')\n", + "('Herodotus', 'NORP')\n", + "('Tauri', 'GPE')\n", + "('Scythia', 'GPE')\n", + "('Iphigenia', 'GPE')\n", + "('Agamemnon', 'ORG')\n", + "('Adrastus', 'ORG')\n", + "('Megarians', 'PERSON')\n", + "('Thebes', 'PERSON')\n", + "('Aegialeus', 'GPE')\n", + "('Artemis', 'ORG')\n", + "('Agamemnon', 'ORG')\n", + "('Calchas', 'PERSON')\n", + "('Megara', 'PERSON')\n", + "('Troy', 'PERSON')\n", + "('1.43.2', 'CARDINAL')\n", + "('Euippus', 'ORG')\n", + "('Megareus', 'GPE')\n", + "('Ischepolis', 'PERSON')\n", + "('Alcathous', 'GPE')\n", + "('Anaclethris', 'PERSON')\n", + "('Demeter', 'PERSON')\n", + "('our day', 'DATE')\n", + "('Megarian', 'NORP')\n", + "('Megarians', 'PERSON')\n", + "('Persian', 'NORP')\n", + "('the Aesymnium (Shrine of Aesymnus', 'ORG')\n", + "('Agamemnon', 'ORG')\n", + "('Hyperion', 'ORG')\n", + "('Megara', 'PERSON')\n", + "('Sandion', 'ORG')\n", + "('one', 'CARDINAL')\n", + "('Aesymnus', 'GPE')\n", + "('second', 'ORDINAL')\n", + "('Megarians', 'PERSON')\n", + "('Delphi', 'ORG')\n", + "('1.43.4', 'CARDINAL')\n", + "('Alcathous', 'GPE')\n", + "('my day', 'DATE')\n", + "('Megarians', 'PERSON')\n", + "('Pyrgo', 'ORG')\n", + "('Alcathous', 'GPE')\n", + "('Euaechme', 'PERSON')\n", + "('Megareus', 'PERSON')\n", + "('Iphinoe', 'GPE')\n", + "('Alcathous', 'GPE')\n", + "('Iphiaoe', 'GPE')\n", + "('Delians', 'NORP')\n", + "('Hecaerge', 'PERSON')\n", + "('Opis', 'PERSON')\n", + "('Dionysus', 'PERSON')\n", + "('Astycratea', 'ORG')\n", + "('Manto', 'PERSON')\n", + "('Polyidus', 'GPE')\n", + "('Coeranus', 'GPE')\n", + "('Abas', 'ORG')\n", + "('Melampus', 'ORG')\n", + "('Megara', 'PERSON')\n", + "('Alcathous', 'PERSON')\n", + "('Callipolis', 'NORP')\n", + "('Polyidus', 'PERSON')\n", + "('Dionysus', 'PERSON')\n", + "('our day', 'DATE')\n", + "('Parian', 'NORP')\n", + "('Praxiteles', 'ORG')\n", + "('Dionysus', 'PERSON')\n", + "('Dasyllius', 'PERSON')\n", + "('Euchenor', 'PRODUCT')\n", + "('Coeranus', 'GPE')\n", + "('Polyidus', 'GPE')\n", + "('1.43.6', 'CARDINAL')\n", + "('Dionysus', 'PERSON')\n", + "('Aphrodite', 'PERSON')\n", + "('Aphrodite surnamed Praxis (Action', 'ORG')\n", + "('Consoler', 'PERSON')\n", + "('Praxiteles', 'ORG')\n", + "('Scopas', 'PERSON')\n", + "('Love and Desire', 'WORK_OF_ART')\n", + "('Aphrodite', 'PERSON')\n", + "('Fortune', 'WORK_OF_ART')\n", + "('Praxiteles', 'ORG')\n", + "('Zeus', 'PERSON')\n", + "('Lysippus', 'PERSON')\n", + "('1.43.7', 'CARDINAL')\n", + "('Coroebus', 'ORG')\n", + "('Argos', 'ORG')\n", + "('Crotopus', 'PRODUCT')\n", + "('Argos', 'ORG')\n", + "('Crotopus', 'ORG')\n", + "('Apollo', 'ORG')\n", + "('Crotopus', 'ORG')\n", + "('Apollo', 'ORG')\n", + "('Vengeance', 'PERSON')\n", + "('Argives', 'GPE')\n", + "('Coroebus', 'ORG')\n", + "('Argives', 'GPE')\n", + "('second', 'ORDINAL')\n", + "('Coroebus', 'ORG')\n", + "('Delphi', 'ORG')\n", + "('Vengeance', 'PERSON')\n", + "('1.43.8', 'CARDINAL')\n", + "('Pythia', 'GPE')\n", + "('Coroebus', 'ORG')\n", + "('Argos', 'ORG')\n", + "('Apollo', 'ORG')\n", + "('Mount Gerania', 'LOC')\n", + "('Coroebus', 'ORG')\n", + "('Coroebus', 'ORG')\n", + "('Coroebus', 'ORG')\n", + "('Greeks', 'NORP')\n", + "('1.44.1', 'CARDINAL')\n", + "('XLIV', 'ORG')\n", + "('Coroebus', 'ORG')\n", + "('Orsippus', 'PERSON')\n", + "('Olympia', 'PRODUCT')\n", + "('Orsippus', 'PERSON')\n", + "('Olympia', 'PERSON')\n", + "('more easily than one', 'CARDINAL')\n", + "('1.44.2', 'CARDINAL')\n", + "('Apollo Prostaterius (Protecting', 'ORG')\n", + "('Apollo', 'ORG')\n", + "('Artemis', 'ORG')\n", + "('Leto', 'PERSON')\n", + "('Praxiteles', 'ORG')\n", + "('the Gate of the Nymphs', 'FAC')\n", + "('Apollo Carinus', 'ORG')\n", + "('Eileithyiae', 'NORP')\n", + "('NISAEA', 'ORG')\n", + "('1.44.3', 'CARDINAL')\n", + "('the present day', 'DATE')\n", + "('Nisaea', 'GPE')\n", + "('Demeter Malophorus', 'PERSON')\n", + "('Apple', 'ORG')\n", + "('One', 'CARDINAL')\n", + "('first', 'ORDINAL')\n", + "('Demeter Malophorus', 'PERSON')\n", + "('Nisaea', 'GPE')\n", + "('Lelex', 'GPE')\n", + "('Egypt', 'GPE')\n", + "('Poseidon', 'GPE')\n", + "('Libya', 'GPE')\n", + "('Epphus', 'NORP')\n", + "('Nisaea', 'GPE')\n", + "('Minoa', 'GPE')\n", + "('Nisus', 'PERSON')\n", + "('Cretans', 'ORG')\n", + "('1.44.4', 'CARDINAL')\n", + "('Megaris', 'PERSON')\n", + "('Boeotia', 'PERSON')\n", + "('Megarians', 'PERSON')\n", + "('Pagae', 'NORP')\n", + "('Aegosthena', 'ORG')\n", + "('Pagae', 'GPE')\n", + "('Persians', 'NORP')\n", + "('Pagae', 'GPE')\n", + "('Artemis', 'ORG')\n", + "('Megara', 'PERSON')\n", + "('Aegialeus', 'PERSON')\n", + "('Adrastus', 'ORG')\n", + "('Argives', 'PERSON')\n", + "('second', 'ORDINAL')\n", + "('Thebes', 'PERSON')\n", + "('Glisas', 'GPE')\n", + "('first', 'ORDINAL')\n", + "('Pagae', 'NORP')\n", + "('Megaris', 'GPE')\n", + "('Aegialeum', 'ORG')\n", + "('1.44.5', 'CARDINAL')\n", + "('Aegosthena', 'ORG')\n", + "('Melampus', 'PRODUCT')\n", + "('Amythaon', 'GPE')\n", + "('Melampus', 'PRODUCT')\n", + "('Erenea', 'GPE')\n", + "('Autonoe', 'PERSON')\n", + "('Cadmus', 'ORG')\n", + "('Thebes', 'PERSON')\n", + "('Autonoe', 'PERSON')\n", + "('1.44.6', 'CARDINAL')\n", + "('Megara', 'PERSON')\n", + "('Corinth', 'GPE')\n", + "('Samian', 'NORP')\n", + "('Cleopatra', 'PERSON')\n", + "('Philip', 'PERSON')\n", + "('Amyntas', 'ORG')\n", + "('Car', 'PRODUCT')\n", + "('Phoroneus', 'PERSON')\n", + "('Greeks', 'NORP')\n", + "('Scironian', 'NORP')\n", + "('Sciron', 'PERSON')\n", + "('Megarians', 'PERSON')\n", + "('Hadrian', 'NORP')\n", + "('Molurian', 'NORP')\n", + "('Ino', 'PERSON')\n", + "('Melicertes', 'PERSON')\n", + "('Learchus', 'NORP')\n", + "('One', 'CARDINAL')\n", + "('Athamas', 'ORG')\n", + "('Ino', 'PERSON')\n", + "('Orchomenians', 'PERSON')\n", + "('Phrixus', 'NORP')\n", + "('Ino', 'PERSON')\n", + "('the Molurian Rock', 'LOC')\n", + "('the Corinthian Isthmus', 'ORG')\n", + "('Melicertes', 'PERSON')\n", + "('Palaemon', 'PERSON')\n", + "('Isthmian', 'NORP')\n", + "('Molurian', 'ORG')\n", + "('Leucothea', 'PERSON')\n", + "('Palaemon', 'PERSON')\n", + "('Sciron', 'ORG')\n", + "('Sciron', 'ORG')\n", + "('Theseus', 'PERSON')\n", + "('1.44.9', 'CARDINAL')\n", + "('Releaser', 'PERSON')\n", + "('the Greeks Aeacus', 'ORG')\n", + "('Aegina', 'GPE')\n", + "('Zeus', 'PERSON')\n", + "('Greeks', 'NORP')\n", + "('Zeus', 'PERSON')\n", + "('Aphesius', 'PERSON')\n", + "('Aphrodite,', 'ORG')\n", + "('Apollo', 'ORG')\n", + "('Eurystheus', 'GPE')\n", + "('Attica', 'GPE')\n", + "('Heracleidae', 'PERSON')\n", + "('Iolaus', 'PERSON')\n", + "('Apollo Latous', 'PERSON')\n", + "('Megara', 'PERSON')\n", + "('Corinth', 'GPE')\n", + "('Hyllus', 'PRODUCT')\n", + "('Heracles', 'PERSON')\n", + "('the Arcadian Echemus', 'ORG')\n" + ] + } + ], "source": [ "# We're running these lines in a separate cell so that we don't\n", "# need to run the full analysis each time we inspect the results.\n", @@ -145,13 +4461,38 @@ " print(ent)" ] }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "doc.ents[0].start\n", + "# can also do for key words in context (word token, -4, +5)\n", + "# also read documentation/website" + ] + }, { "cell_type": "markdown", "metadata": {}, "source": [ ":::{note}\n", "What is the type of the results in `ents`?\n", - ":::" + ":::{answer}\n", + "e.text, e.label = string\n", + "otherwise \"span objects\"\n", + "touples of strings" ] }, { @@ -204,7 +4545,7 @@ ], "metadata": { "kernelspec": { - "display_name": ".venv", + "display_name": "Python 3", "language": "python", "name": "python3" }, @@ -218,7 +4559,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.12.7" + "version": "3.12.1" } }, "nbformat": 4, From ebdbb7e2cb88cdfc3f272b4636eb5f0457d6c4a4 Mon Sep 17 00:00:00 2001 From: jthorne2000 Date: Mon, 7 Apr 2025 07:46:47 +0000 Subject: [PATCH 6/8] counter added --- 11_nlp.ipynb | 4503 +++++++------------------------------------------- 1 file changed, 563 insertions(+), 3940 deletions(-) diff --git a/11_nlp.ipynb b/11_nlp.ipynb index c32a6b2..4222a84 100644 --- a/11_nlp.ipynb +++ b/11_nlp.ipynb @@ -284,470 +284,18 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 15, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "('SUNIUM & LAURIUM', 'ORG')\n", - "('1.1.1', 'CARDINAL')\n", - "('I.', 'PERSON')\n", - "('Greek', 'NORP')\n", - "('the Cyclades Islands', 'LOC')\n", - "('the Aegean Sea', 'LOC')\n", - "('Sunium', 'LOC')\n", - "('Attic', 'NORP')\n", - "('Athena of Sunium', 'ORG')\n", - "('Laurium', 'PERSON')\n", - "('Athenians', 'NORP')\n", - "('the Island of Patroclus', 'LOC')\n", - "('Patroclus', 'ORG')\n", - "('Egyptian', 'NORP')\n", - "('Ptolemy', 'PERSON')\n", - "('Ptolemy', 'GPE')\n", - "('Lagus', 'PERSON')\n", - "('Athenians', 'NORP')\n", - "('Antigonus', 'LOC')\n", - "('Demetrius', 'PERSON')\n", - "('PEIRAEUS', 'ORG')\n", - "('1.1.2', 'CARDINAL')\n", - "('Peiraeus', 'PERSON')\n", - "('Themistocles', 'ORG')\n", - "('Phalerum', 'GPE')\n", - "('Athens', 'GPE')\n", - "('Menestheus', 'PERSON')\n", - "('Troy', 'PERSON')\n", - "('Theseus', 'PERSON')\n", - "('Minos', 'ORG')\n", - "('Androgeos', 'ORG')\n", - "('Themistocles', 'ORG')\n", - "('Peiraeus', 'PERSON')\n", - "('three', 'CARDINAL')\n", - "('Phalerum', 'GPE')\n", - "('Athenian', 'NORP')\n", - "('Themistocles', 'ORG')\n", - "('Athenians', 'NORP')\n", - "('Themistocles', 'ORG')\n", - "('Magnesia', 'LOC')\n", - "('Themistocles', 'ORG')\n", - "('Parthenon', 'GPE')\n", - "('Themistocles', 'ORG')\n", - "('1.1.3', 'CARDINAL')\n", - "('Peiraeus', 'PERSON')\n", - "('Athena', 'GPE')\n", - "('Zeus', 'PERSON')\n", - "('Zeus', 'PERSON')\n", - "('Athena', 'ORG')\n", - "('Arcesilaus', 'ORG')\n", - "('Athenians', 'NORP')\n", - "('the united', 'GPE')\n", - "('Greeks', 'NORP')\n", - "('Macedonians', 'NORP')\n", - "('Boeotia', 'GPE')\n", - "('Thermopylae', 'ORG')\n", - "('Lamia', 'PERSON')\n", - "('Oeta', 'PERSON')\n", - "('Zeus', 'PERSON')\n", - "('Leochares', 'WORK_OF_ART')\n", - "('Aphrodite', 'PERSON')\n", - "('Lacedaemonian', 'PERSON')\n", - "('Cnidus', 'PERSON')\n", - "('Carian', 'NORP')\n", - "('Cnidians', 'NORP')\n", - "('Aphrodite', 'PERSON')\n", - "('Doritis (Bountiful', 'ORG')\n", - "('Acraea', 'ORG')\n", - "('Aphrodite', 'PERSON')\n", - "('Cnidian', 'NORP')\n", - "('Euploia', 'PERSON')\n", - "('Cnidians', 'NORP')\n", - "('1.1.4', 'CARDINAL')\n", - "('Athenians', 'NORP')\n", - "('Munychia', 'GPE')\n", - "('Artemis of Munychia', 'ORG')\n", - "('Phalerum', 'GPE')\n", - "('Demeter', 'PERSON')\n", - "('Athena Sciras', 'ORG')\n", - "('one', 'CARDINAL')\n", - "('Zeus', 'PERSON')\n", - "('Theseus', 'PERSON')\n", - "('Phalerus', 'PERSON')\n", - "('Athenians', 'NORP')\n", - "('Jason', 'PERSON')\n", - "('Androgeos', 'ORG')\n", - "('Minos', 'ORG')\n", - "('Heros', 'GPE')\n", - "('Androgeos', 'ORG')\n", - "('1.1.5', 'CARDINAL')\n", - "('Twenty', 'CARDINAL')\n", - "('Coliad', 'NORP')\n", - "('Persian', 'NORP')\n", - "('the Coliad Aphrodite', 'ORG')\n", - "('Genetyllides', 'PERSON')\n", - "('Phocaeans', 'NORP')\n", - "('Ionia', 'GPE')\n", - "('Colias', 'ORG')\n", - "('Phalerum', 'GPE')\n", - "('Athens', 'GPE')\n", - "('Hera', 'GPE')\n", - "('Mardonius', 'ORG')\n", - "('Gobryas', 'ORG')\n", - "('Alcamenes.6', 'DATE')\n", - "('Persians', 'NORP')\n", - "('1.2.1', 'CARDINAL')\n", - "('Antiope', 'PERSON')\n", - "('Amazon', 'ORG')\n", - "('Antiope', 'PERSON')\n", - "('Pindar', 'PERSON')\n", - "('Peirithous', 'PERSON')\n", - "('Theseus', 'PERSON')\n", - "('Hegias', 'PERSON')\n", - "('Troezen', 'ORG')\n", - "('Heracles', 'PERSON')\n", - "('Themiscyra', 'PERSON')\n", - "('Thermodon', 'LOC')\n", - "('Antiope', 'PERSON')\n", - "('Theseus', 'PERSON')\n", - "('Heracles', 'PERSON')\n", - "('Hegias', 'PERSON')\n", - "('Athenians', 'NORP')\n", - "('Amazons', 'ORG')\n", - "('Antiope', 'PERSON')\n", - "('Molpadia', 'ORG')\n", - "('Molpadia', 'ORG')\n", - "('Theseus', 'PERSON')\n", - "('Molpadia', 'ORG')\n", - "('Athenians', 'NORP')\n", - "('Peiraeus', 'PERSON')\n", - "('Cnidus', 'PERSON')\n", - "('Themistocles', 'ORG')\n", - "('Persians', 'NORP')\n", - "('Menander', 'PERSON')\n", - "('Diopeithes', 'PERSON')\n", - "('Euripides', 'PRODUCT')\n", - "('King Archelaus', 'PERSON')\n", - "('Macedonia', 'GPE')\n", - "('Anacreon', 'WORK_OF_ART')\n", - "('Polycrates', 'ORG')\n", - "('Samos', 'PERSON')\n", - "('Aeschylus', 'PERSON')\n", - "('Simonides', 'PRODUCT')\n", - "('Syracuse', 'GPE')\n", - "('Dionysius', 'PERSON')\n", - "('Sicily', 'PERSON')\n", - "('Philoxenus', 'PERSON')\n", - "('Macedonia', 'GPE')\n", - "('Antagoras of Rhodes and Aratus of Soli', 'ORG')\n", - "('Hesiod', 'PERSON')\n", - "('Homer', 'PERSON')\n", - "('Hesiod', 'PERSON')\n", - "('Homer', 'PERSON')\n", - "('Demodocus', 'ORG')\n", - "('Alcinous', 'ORG')\n", - "('Agamemnon', 'ORG')\n", - "('Praxiteles', 'ORG')\n", - "('ATHENS', 'GPE')\n", - "('1.2.4', 'CARDINAL')\n", - "('every year', 'DATE')\n", - "('Demeter', 'PERSON')\n", - "('Iacchus', 'NORP')\n", - "('Attic', 'NORP')\n", - "('Praxiteles', 'ORG')\n", - "('Poseidon', 'GPE')\n", - "('Polybotes', 'GPE')\n", - "('Coans', 'NORP')\n", - "('Chelone', 'ORG')\n", - "('Poseidon', 'GPE')\n", - "('Cerameicus', 'ORG')\n", - "('2.2.5', 'CARDINAL')\n", - "('One', 'CARDINAL')\n", - "('porticoes', 'ORG')\n", - "('Hermes', 'ORG')\n", - "('the house of Pulytion', 'ORG')\n", - "('Athenians', 'NORP')\n", - "('Eleusinian', 'NORP')\n", - "('Dionysus', 'PERSON')\n", - "('Dionysus', 'PERSON')\n", - "('Melpomenus', 'LOC')\n", - "('Apollo Musegetes', 'PERSON')\n", - "('Muses', 'WORK_OF_ART')\n", - "('Athena Paeonia', 'ORG')\n", - "('Healer', 'ORG')\n", - "('Zeus', 'PERSON')\n", - "('Mnemosyne (Memory', 'ORG')\n", - "('Muses', 'PRODUCT')\n", - "('Apollo', 'ORG')\n", - "('Eubulides', 'GPE')\n", - "('Acratus', 'ORG')\n", - "('Apollo', 'ORG')\n", - "('Apollo', 'ORG')\n", - "('Amphictyon', 'PERSON')\n", - "('Athens', 'GPE')\n", - "('Dionysus', 'PERSON')\n", - "('Athenians', 'NORP')\n", - "('Delphi', 'ORG')\n", - "('Athens', 'GPE')\n", - "('the days', 'DATE')\n", - "('Icarius', 'PERSON')\n", - "('Actaeus', 'PERSON')\n", - "('first', 'ORDINAL')\n", - "('Attica', 'GPE')\n", - "('Cecrops', 'PERSON')\n", - "('Herse', 'GPE')\n", - "('Pandrosus', 'PERSON')\n", - "('Erysichthon', 'PERSON')\n", - "('Athenians', 'NORP')\n", - "('Cecrops', 'GPE')\n", - "('Cranaus', 'PERSON')\n", - "('Athenians', 'NORP')\n", - "('Cranaus', 'PERSON')\n", - "('Attica', 'GPE')\n", - "('Actaea', 'ORG')\n", - "('Amphictyon', 'PERSON')\n", - "('Cranaus', 'PERSON')\n", - "('Erichthonius', 'ORG')\n", - "('Erichthonius', 'ORG')\n", - "('Hephaestus', 'ORG')\n", - "('Earth', 'LOC')\n", - "('1.3.1', 'CARDINAL')\n", - "('Cerameicus', 'ORG')\n", - "('Ceramus', 'PERSON')\n", - "('Dionysus', 'PERSON')\n", - "('Ariadne', 'PERSON')\n", - "('First', 'ORDINAL')\n", - "('the Royal Portico', 'ORG')\n", - "('yearly', 'DATE')\n", - "('Theseus', 'PERSON')\n", - "('Cephalus', 'ORG')\n", - "('Phaethon', 'LOC')\n", - "('Hesiod', 'PERSON')\n", - "('1.3.2', 'CARDINAL')\n", - "('Conon, Timotheus', 'PERSON')\n", - "('Phoenician', 'NORP')\n", - "('Conon by King Artaxerxes', 'WORK_OF_ART')\n", - "('Athenian', 'NORP')\n", - "('Salamis', 'ORG')\n", - "('Teucer', 'PERSON')\n", - "('Cinyras', 'ORG')\n", - "('Zeus', 'PERSON')\n", - "('Zeus of Freedom', 'ORG')\n", - "('Hadrian', 'NORP')\n", - "('Athenians', 'NORP')\n", - "('1.3.3', 'CARDINAL')\n", - "('Twelve', 'CARDINAL')\n", - "('Theseus', 'PERSON')\n", - "('Theseus', 'PERSON')\n", - "('Athenians', 'NORP')\n", - "('Theseus', 'PERSON')\n", - "('Peisistratus', 'ORG')\n", - "('one', 'CARDINAL')\n", - "('Theseus', 'PERSON')\n", - "('Menestheus', 'PERSON')\n", - "('Theseus', 'PERSON')\n", - "('fourth', 'ORDINAL')\n", - "('Melanthus', 'NORP')\n", - "('Cleidicus', 'GPE')\n", - "('Aesimides', 'ORG')\n", - "('1.3.4', 'CARDINAL')\n", - "('Mantinea', 'GPE')\n", - "('Athenians', 'NORP')\n", - "('Xenophon', 'ORG')\n", - "('Cadmea', 'ORG')\n", - "('Lacedaemonians', 'NORP')\n", - "('Leuctra', 'GPE')\n", - "('Boeotians', 'NORP')\n", - "('Peloponnesus', 'PERSON')\n", - "('Lacedacmonians', 'ORG')\n", - "('Athenians', 'NORP')\n", - "('Athenians', 'NORP')\n", - "('Xenophon', 'PERSON')\n", - "('Boeotian', 'NORP')\n", - "('Epaminondas the Theban', 'PERSON')\n", - "('Athenians', 'NORP')\n", - "('Euphranor', 'PERSON')\n", - "('Apollo', 'ORG')\n", - "('one', 'CARDINAL')\n", - "('Apollo', 'ORG')\n", - "('Leochares', 'ORG')\n", - "('Apollo', 'ORG')\n", - "('Averter', 'PERSON')\n", - "('Calamis', 'NORP')\n", - "('Delphi', 'ORG')\n", - "('Athenians', 'NORP')\n", - "('Peloponnesian', 'NORP')\n", - "('1.3.5', 'CARDINAL')\n", - "('Athenian', 'NORP')\n", - "('a year', 'DATE')\n", - "('Zeus Counsellor', 'PERSON')\n", - "('Apollo', 'ORG')\n", - "('Peisias,14', 'PERSON')\n", - "('a Demos by Lyson', 'WORK_OF_ART')\n", - "('Caunian', 'NORP')\n", - "('Callippus', 'PERSON')\n", - "('Athenians', 'NORP')\n", - "('Thermopylae', 'GPE')\n", - "('Gauls', 'PERSON')\n", - "('1.4.1', 'CARDINAL')\n", - "('Gauls', 'PERSON')\n", - "('Europe', 'LOC')\n", - "('Eridanus', 'GPE')\n", - "('Helius (Sun', 'ORG')\n", - "('Phaethon', 'WORK_OF_ART')\n", - "('Gauls', 'PERSON')\n", - "('Celts', 'NORP')\n", - "('the Ionian Sea', 'LOC')\n", - "('Illyrian', 'NORP')\n", - "('Macedonia', 'GPE')\n", - "('Macedonians', 'NORP')\n", - "('Thessaly', 'GPE')\n", - "('Thermopylae', 'GPE')\n", - "('Greeks', 'NORP')\n", - "('Alexander', 'PERSON')\n", - "('Philip', 'PERSON')\n", - "('Antipater', 'PERSON')\n", - "('Greeks', 'NORP')\n", - "('1.4.2', 'CARDINAL')\n", - "('Athenians', 'NORP')\n", - "('Greeks', 'NORP')\n", - "('Macedonian', 'NORP')\n", - "('Thermopylae', 'GPE')\n", - "('Greeks', 'NORP')\n", - "('Greece', 'GPE')\n", - "('Celts', 'NORP')\n", - "('Ephialtes of Trachis once', 'ORG')\n", - "('Persians', 'NORP')\n", - "('Phocians', 'NORP')\n", - "('Oeta', 'PERSON')\n", - "('1.4.3', 'CARDINAL')\n", - "('Athenians', 'NORP')\n", - "('Greeks', 'NORP')\n", - "('two', 'CARDINAL')\n", - "('Athenians', 'NORP')\n", - "('the Lamian gulf', 'LOC')\n", - "('Thermopylae', 'GPE')\n", - "('Greeks', 'NORP')\n", - "('Greece', 'GPE')\n", - "('Gauls', 'PERSON')\n", - "('Delphi', 'ORG')\n", - "('Delphians', 'ORG')\n", - "('Phocians', 'NORP')\n", - "('Aetolians', 'GPE')\n", - "('Aetolians', 'PERSON')\n", - "('Parnassus', 'ORG')\n", - "('Gauls', 'PERSON')\n", - "('two', 'CARDINAL')\n", - "('Hyperochus', 'PERSON')\n", - "('Amadocus', 'ORG')\n", - "('Hyperboreans', 'NORP')\n", - "('third', 'ORDINAL')\n", - "('Pyrrhus', 'NORP')\n", - "('Achilles', 'PERSON')\n", - "('Delphians', 'NORP')\n", - "('1.4.5', 'CARDINAL')\n", - "('Gauls', 'PERSON')\n", - "('Asia', 'LOC')\n", - "('Pergamus', 'GPE')\n", - "('Teuthrania', 'GPE')\n", - "('Gauls', 'PERSON')\n", - "('Sangarius', 'ORG')\n", - "('Ancyra', 'PERSON')\n", - "('Phrygians', 'NORP')\n", - "('Midas', 'PRODUCT')\n", - "('Gordius', 'ORG')\n", - "('Midas', 'ORG')\n", - "('Zeus', 'PERSON')\n", - "('the Spring of Midas', 'EVENT')\n", - "('Midas', 'PERSON')\n", - "('Silenus', 'PERSON')\n", - "('Pergameni', 'PERSON')\n", - "('Ancyra', 'PRODUCT')\n", - "('Pessinus', 'LOC')\n", - "('Mount Agdistis', 'ORG')\n", - "('Attis', 'ORG')\n", - "('Gauls', 'PERSON')\n", - "('Cabeiri', 'ORG')\n", - "('Arcadians', 'NORP')\n", - "('Asia', 'LOC')\n", - "('Telephus', 'NORP')\n", - "('three', 'CARDINAL')\n", - "('Asia', 'LOC')\n", - "('Gauls', 'PERSON')\n", - "('Telephus', 'NORP')\n", - "('Agamemnon', 'ORG')\n", - "('Greeks', 'NORP')\n", - "('Troy', 'PERSON')\n", - "('Meian', 'NORP')\n", - "('the Council Chamber of the Five Hundred', 'ORG')\n", - "('Tholos (Round House', 'PRODUCT')\n", - "('Athenian', 'NORP')\n", - "('ten', 'CARDINAL')\n", - "('four', 'CARDINAL')\n", - "('1.5.2', 'CARDINAL')\n", - "('Hippothoon', 'PERSON')\n", - "('Poseidon', 'GPE')\n", - "('Alope', 'GPE')\n", - "('Cercyon', 'GPE')\n", - "('Antiochus', 'NORP')\n", - "('one', 'CARDINAL')\n", - "('Heracles', 'PERSON')\n", - "('Meda', 'LOC')\n", - "('Phylas', 'GPE')\n", - "('Ajax', 'ORG')\n", - "('Telamon', 'PERSON')\n", - "('Athenians', 'NORP')\n", - "('Leos', 'PERSON')\n", - "('Erechtheus', 'ORG')\n", - "('Eleusinians', 'NORP')\n", - "('Immaradus', 'PERSON')\n", - "('Eumolpus', 'GPE')\n", - "('Aegeus', 'PERSON')\n", - "('Oeneus', 'PERSON')\n", - "('Pandion', 'ORG')\n", - "('Acamas', 'PERSON')\n", - "('one', 'CARDINAL')\n", - "('Theseus', 'PERSON')\n", - "('Cecrops', 'GPE')\n", - "('Cecrops', 'PERSON')\n", - "('Actaeus', 'PERSON')\n", - "('Erechtheus', 'ORG')\n", - "('Pandion', 'ORG')\n", - "('Erichthonius', 'ORG')\n", - "('Erichthonius', 'ORG')\n", - "('Cecrops', 'GPE')\n", - "('second', 'ORDINAL')\n", - "('Metionidae', 'PERSON')\n", - "('Megara', 'PERSON')\n", - "('Pylas king', 'PERSON')\n", - "('Megara', 'PERSON')\n", - "('Pandion', 'ORG')\n", - "('Megarid', 'PERSON')\n", - "('Athena the Gannet', 'GPE')\n", - "('Metionidae', 'PERSON')\n", - "('Megara', 'PERSON')\n", - "('Aegeus', 'PERSON')\n", - "('Athenians', 'NORP')\n", - "('Pandion', 'LAW')\n", - "('Tereus', 'PERSON')\n", - "('Procne', 'ORG')\n", - "('Philomela', 'PERSON')\n", - "('Greek', 'NORP')\n", - "('Pandion', 'LOC')\n", - "('Acropolis', 'LOC')\n", - "('1.5.5', 'CARDINAL')\n", - "('Athenian', 'NORP')\n", - "('Hadrian,25', 'ORG')\n", - "('Hebrews', 'NORP')\n", - "('Syria', 'GPE')\n", - "('Greek', 'NORP')\n", - "('Athens', 'GPE')\n", + "('PTOLEMY THE GREAT', 'WORK_OF_ART')\n", "('Attalus', 'ORG')\n", "('Ptolemy', 'PERSON')\n", "('Egypt', 'GPE')\n", "('Mysians', 'ORG')\n", - "('1.6.2', 'CARDINAL')\n", - "('27', 'CARDINAL')\n", "('Macedonians', 'NORP')\n", "('Ptolemy', 'PERSON')\n", "('Philip', 'GPE')\n", @@ -810,7 +358,6 @@ "('Egyptians', 'NORP')\n", "('Antigonus Ptolemy', 'GPE')\n", "('Egypt', 'GPE')\n", - "('1.6.6', 'CARDINAL')\n", "('Demetrius', 'PERSON')\n", "('Cyprus', 'GPE')\n", "('Menelaus', 'ORG')\n", @@ -865,14 +412,12 @@ "('Arsinoe', 'PERSON')\n", "('Macedonian', 'NORP')\n", "('Egyptian', 'NORP')\n", - "('Secondly', 'ORDINAL')\n", "('Argaeus', 'PERSON')\n", "('Memphis', 'GPE')\n", "('Alexander', 'PERSON')\n", "('Eurydice', 'ORG')\n", "('Cyprians', 'NORP')\n", "('Magas', 'GPE')\n", - "('half', 'CARDINAL')\n", "('Ptolemy', 'PERSON')\n", "('Cyrene', 'PERSON')\n", "('Berenice', 'PERSON')\n", @@ -881,7 +426,6 @@ "('Cyrene', 'PERSON')\n", "('Ptolemy', 'GPE')\n", "('Egypt', 'GPE')\n", - "('1.7.2', 'CARDINAL')\n", "('Egypt', 'GPE')\n", "('Cyrenians', 'NORP')\n", "('Magas', 'GPE')\n", @@ -890,10 +434,8 @@ "('Cyrene', 'PERSON')\n", "('Ptolemy', 'PERSON')\n", "('Magas', 'GPE')\n", - "('some four thousand', 'CARDINAL')\n", "('Gauls', 'PERSON')\n", "('Egypt', 'GPE')\n", - "('1.7.3', 'CARDINAL')\n", "('Magas', 'GPE')\n", "('Apame', 'PERSON')\n", "('Antiochus', 'NORP')\n", @@ -915,7 +457,6 @@ "('Arsinoe', 'PERSON')\n", "('Egypt', 'GPE')\n", "('Arsinoites', 'ORG')\n", - "('1.8.1', 'CARDINAL')\n", "('Attalus', 'ORG')\n", "('Athenian', 'NORP')\n", "('Macedonian', 'NORP')\n", @@ -933,7 +474,6 @@ "('Philetaerus', 'GPE')\n", "('Eumenes', 'PERSON')\n", "('Gauls', 'PERSON')\n", - "('1.8.2', 'CARDINAL')\n", "('Amphiaraus', 'ORG')\n", "('Eirene', 'ORG')\n", "('Plutus', 'PERSON')\n", @@ -948,7 +488,6 @@ "('Calauria', 'GPE')\n", "('Troezen', 'ORG')\n", "('Lamia', 'PERSON')\n", - "('second', 'ORDINAL')\n", "('Demosthenes', 'PERSON')\n", "('Calauria', 'GPE')\n", "('Greek', 'NORP')\n", @@ -962,15 +501,11 @@ "('Greeks', 'NORP')\n", "('Thessaly', 'GPE')\n", "('Athens', 'GPE')\n", - "('1.8.4', 'CARDINAL')\n", "('Demosthenes', 'PRODUCT')\n", "('Ares', 'PERSON')\n", - "('two', 'CARDINAL')\n", "('Aphrodite', 'PERSON')\n", - "('one', 'CARDINAL')\n", "('Ares', 'PERSON')\n", "('Alcamenes', 'PERSON')\n", - "('one', 'CARDINAL')\n", "('Athena', 'ORG')\n", "('Parian', 'NORP')\n", "('Locrus', 'GPE')\n", @@ -982,7 +517,6 @@ "('Athenians', 'NORP')\n", "('Pindar', 'PERSON')\n", "('Athenians', 'NORP')\n", - "('1.8.5', 'CARDINAL')\n", "('Harmodius', 'PERSON')\n", "('Aristogiton', 'GPE')\n", "('Critius,35', 'ORG')\n", @@ -992,3470 +526,501 @@ "('Athenians', 'NORP')\n", "('Athenians', 'NORP')\n", "('Antiochus', 'PERSON')\n", - "('1.8.6', 'CARDINAL')\n", "('the Odeum (Music Hall', 'ORG')\n", "('Egyptian', 'NORP')\n", "('Ptolemy', 'PERSON')\n", - "('one', 'CARDINAL')\n", "('Philadelphus', 'ORG')\n", "('Lagus', 'PERSON')\n", "('Soter', 'PERSON')\n", "('Rhodians', 'NORP')\n", "('Philadelphus', 'ORG')\n", - "('Arsinoe', 'PERSON')\n", - "('PTOLEMY PHILOMETOR', 'PERSON')\n", - "('EGYPT', 'GPE')\n", - "('1.9.1', 'CARDINAL')\n", - "('one', 'CARDINAL')\n", - "('Philometor', 'ORG')\n", - "('eighth', 'ORDINAL')\n", - "('Ptolemy', 'GPE')\n", - "('Lagus', 'PERSON')\n", - "('Cyprus', 'GPE')\n", - "('Cleopatra', 'PERSON')\n", - "('Alexander', 'PERSON')\n", - "('Egyptians', 'NORP')\n", - "('Alexander', 'PERSON')\n", - "('Alexander', 'PERSON')\n", - "('second', 'ORDINAL')\n", - "('Cyprus', 'GPE')\n", - "('Ptolemy', 'PERSON')\n", - "('Ptolemy', 'PERSON')\n", - "('Alexandria', 'PERSON')\n", - "('Ptolemy', 'PERSON')\n", - "('Alexander', 'PERSON')\n", - "('Cyprus', 'GPE')\n", - "('Ptolemy', 'GPE')\n", - "('Cleopatra', 'PERSON')\n", - "('Alexander', 'PERSON')\n", - "('Egyptians', 'NORP')\n", - "('Alexander', 'PERSON')\n", - "('Ptolemy', 'PERSON')\n", - "('second', 'ORDINAL')\n", - "('Egypt', 'GPE')\n", - "('Thebans', 'NORP')\n", - "('two years', 'DATE')\n", - "('Greeks', 'NORP')\n", - "('Delphi', 'ORG')\n", - "('Orchomenians', 'NORP')\n", - "('Ptolemy', 'PERSON')\n", - "('Athenians', 'NORP')\n", - "('Berenice', 'GPE')\n", - "('1.9.4', 'CARDINAL')\n", - "('Egyptians', 'NORP')\n", - "('Philip', 'PERSON')\n", - "('Alexander', 'PERSON')\n", - "('Egyptians', 'NORP')\n", - "('Philip', 'PERSON')\n", - "('Alexander', 'PERSON')\n", - "('1.9.5', 'ORG')\n", - "('Macedonian', 'NORP')\n", - "('one', 'CARDINAL')\n", - "('Alexander', 'ORG')\n", - "('Alexander', 'PERSON')\n", - "('Macedonians', 'NORP')\n", - "('Alexander', 'PERSON')\n", - "('Thracians', 'NORP')\n", - "('Macedonians', 'NORP')\n", - "('Alexander', 'PERSON')\n", - "('Philip', 'GPE')\n", - "('Thrace', 'GPE')\n", - "('Celts', 'NORP')\n", - "('Thracians', 'NORP')\n", - "('Romans', 'NORP')\n", - "('Thracian', 'NORP')\n", - "('Romans', 'NORP')\n", - "('Thrace', 'ORG')\n", - "('Celtic', 'NORP')\n", - "('Odrysae', 'ORG')\n", - "('secondly', 'ORDINAL')\n", - "('Getae', 'GPE')\n", - "('Agathocles', 'PERSON')\n", - "('first', 'ORDINAL')\n", - "('Getae', 'PERSON')\n", - "('Getic', 'NORP')\n", - "('Ister', 'PERSON')\n", - "('Agathocles', 'PERSON')\n", - "('Lysimachus', 'PERSON')\n", - "('Agathocles', 'PERSON')\n", - "('Getic', 'NORP')\n", - "('Agathocles Lysandra', 'PERSON')\n", - "('Ptolemy', 'GPE')\n", - "('Lagus', 'PERSON')\n", - "('Eurydice', 'ORG')\n", - "('Asia', 'LOC')\n", - "('Ephesus', 'GPE')\n", - "('Lebedos', 'GPE')\n", - "('Phoenix', 'GPE')\n", - "('Mermesianax', 'PERSON')\n", - "('Pyrrhus', 'NORP')\n", - "('Aeacides', 'EVENT')\n", - "('Epeirus', 'PERSON')\n", - "('Pyrrhus', 'NORP')\n", - "('Epeirus', 'PERSON')\n", - "('Hieronymus', 'PERSON')\n", - "('Hieronymus', 'PERSON')\n", - "('Antigonus', 'LOC')\n", - "('Epeirot', 'PERSON')\n", - "('Macedonian', 'NORP')\n", - "('Lysimachus', 'PERSON')\n", - "('Alexander', 'PERSON')\n", - "('Alexander', 'PERSON')\n", - "('Epeirot', 'PERSON')\n", - "('Pyrrhus', 'NORP')\n", - "('Hieronymus', 'PERSON')\n", - "('Lysimachus', 'ORG')\n", - "('Cardians', 'NORP')\n", - "('Lysimachea', 'PERSON')\n", - "('Thracian', 'NORP')\n", - "('Chersonesus', 'PERSON')\n", - "('1.10.1', 'CARDINAL')\n", - "('Aridaeus', 'ORG')\n", - "('Cassander', 'PERSON')\n", - "('Lysimachus', 'NORP')\n", - "('Macedon', 'GPE')\n", - "('Demetrius', 'PERSON')\n", - "('Antigonus, Lysimachus', 'ORG')\n", - "('Demetrius', 'PERSON')\n", - "('Macedonia', 'GPE')\n", - "('Alexander', 'PERSON')\n", - "('Cassander', 'PERSON')\n", - "('Alexander himself38', 'PERSON')\n", - "('Macedonians', 'NORP')\n", - "('Pyrrhus', 'PERSON')\n", - "('Thrace', 'PERSON')\n", - "('Nestians', 'NORP')\n", - "('Macedonians', 'NORP')\n", - "('Macedonia', 'GPE')\n", - "('Pyrrhus', 'NORP')\n", - "('Epeirus', 'ORG')\n", - "('Demetrius', 'PERSON')\n", - "('Asia', 'LOC')\n", - "('Seleucus', 'GPE')\n", - "('Pyrrhus', 'NORP')\n", - "('Lysimachus', 'PERSON')\n", - "('Demetrius', 'PERSON')\n", - "('Seleucus', 'GPE')\n", - "('Pyrrhus', 'PERSON')\n", - "('Antigonus', 'LOC')\n", - "('Demetrius', 'PERSON')\n", - "('Pyrrhus', 'NORP')\n", - "('Macedonia', 'GPE')\n", - "('Pyrrhus', 'NORP')\n", - "('Epeirus', 'PERSON')\n", - "('Love', 'WORK_OF_ART')\n", - "('Agathocles', 'PERSON')\n", - "('Lysandra', 'PERSON')\n", - "('Lysandra', 'PERSON')\n", - "('Arsinoe', 'PERSON')\n", - "('Arsinoe', 'PERSON')\n", - "('Agathocles', 'GPE')\n", - "('Agathocles', 'GPE')\n", - "('Arsinoe', 'PERSON')\n", - "('Agathocles', 'PERSON')\n", - "('Lysimachus', 'ORG')\n", - "('Arsinoe', 'PERSON')\n", - "('Agathocles', 'GPE')\n", - "('Lysandra', 'PERSON')\n", - "('Seleucus', 'GPE')\n", - "('Ptolemy', 'PERSON')\n", - "('Seleucus', 'GPE')\n", - "('Alexander', 'PERSON')\n", - "('Odrysian', 'NORP')\n", - "('Babylon', 'GPE')\n", - "('Seleucus', 'GPE')\n", - "('Philetaerus', 'GPE')\n", - "('Lysimachus', 'ORG')\n", - "('Agathocles', 'PERSON')\n", - "('Arsinoe', 'PERSON')\n", - "('Pergamus', 'PERSON')\n", - "('Caicus', 'ORG')\n", - "('Seleucus', 'GPE')\n", - "('1.10.5', 'CARDINAL')\n", - "('Asia,40', 'GPE')\n", - "('Seleucus', 'PERSON')\n", - "('Alexander', 'PERSON')\n", - "('Odrysian', 'NORP')\n", - "('Lysandra', 'PERSON')\n", - "('Chersonesus', 'PERSON')\n", - "('Cardia', 'GPE')\n", - "('1.11.1', 'CARDINAL')\n", - "('Athenians', 'NORP')\n", - "('Pyrrhus', 'NORP')\n", - "('Pyrrhus', 'PERSON')\n", - "('Alexander', 'PERSON')\n", - "('Aeacides', 'EVENT')\n", - "('Arybbas', 'ORG')\n", - "('Alexander', 'PERSON')\n", - "('Neoptolemus', 'GPE')\n", - "('Neoptolemus', 'GPE')\n", - "('Aryblas was Alcetas', 'ORG')\n", - "('Tharypus', 'PERSON')\n", - "('Tharypus', 'PERSON')\n", - "('Achilles', 'ORG')\n", - "('fifteen', 'CARDINAL')\n", - "('Pyrrhus', 'PERSON')\n", - "('first', 'ORDINAL')\n", - "('Troy', 'PERSON')\n", - "('Thessaly', 'GPE')\n", - "('Epeirus', 'PERSON')\n", - "('Helenus', 'GPE')\n", - "('Hermione Pyrrhus', 'PERSON')\n", - "('Andromache', 'ORG')\n", - "('Molossus', 'PERSON')\n", - "('Pielus', 'GPE')\n", - "('Pergamus', 'PERSON')\n", - "('Helenus', 'ORG')\n", - "('Cestrinus', 'LOC')\n", - "('Andromache', 'ORG')\n", - "('Delphi', 'ORG')\n", - "('Molossus', 'PERSON')\n", - "('Pyrrhus', 'PERSON')\n", - "('Cestrinus', 'LOC')\n", - "('Epeirots', 'ORG')\n", - "('Thyamis', 'ORG')\n", - "('Pergamus', 'PERSON')\n", - "('Asia', 'LOC')\n", - "('Areius', 'NORP')\n", - "('Teuthrania', 'GPE')\n", - "('Andromache', 'ORG')\n", - "('Epeirus', 'ORG')\n", - "('Pyrrhus', 'NORP')\n", - "('Aeacides', 'EVENT')\n", - "('Molossus', 'PERSON')\n", - "('PYRRHUS', 'ORG')\n", - "('MACEDONIA', 'ORG')\n", - "('1.11.3', 'CARDINAL')\n", - "('Tharypus', 'PERSON')\n", - "('Epeirus', 'PERSON')\n", - "('one', 'CARDINAL')\n", - "('Alcetas', 'ORG')\n", - "('Alexander', 'PERSON')\n", - "('Neoptolemus', 'GPE')\n", - "('Leucani', 'PERSON')\n", - "('Epeirus', 'ORG')\n", - "('Antipater', 'PERSON')\n", - "('Aeacides', 'PERSON')\n", - "('Arybbas', 'ORG')\n", - "('Aridaeus', 'ORG')\n", - "('Macedonians', 'NORP')\n", - "('Epeirots', 'ORG')\n", - "('Aridaeus', 'ORG')\n", - "('Macedonians', 'NORP')\n", - "('Cassander', 'PRODUCT')\n", - "('Aeacides', 'PERSON')\n", - "('first', 'ORDINAL')\n", - "('Epeirots', 'ORG')\n", - "('Epeirus', 'PERSON')\n", - "('Cassander', 'PERSON')\n", - "('Oeneadae', 'GPE')\n", - "('Philip', 'PERSON')\n", - "('Cassander', 'ORG')\n", - "('Aeacides', 'PERSON')\n", - "('Aeacides', 'PERSON')\n", - "('1.11.5', 'CARDINAL')\n", - "('The Epeirots accepted Alcetas', 'ORG')\n", - "('Arybbas', 'ORG')\n", - "('Aeacides', 'PERSON')\n", - "('Epeirots', 'ORG')\n", - "('night', 'TIME')\n", - "('Pyrrhus', 'PERSON')\n", - "('Aeacides', 'EVENT')\n", - "('Cassander', 'PRODUCT')\n", - "('years', 'DATE')\n", - "('Macedonians', 'NORP')\n", - "('Pyrrhus', 'PERSON')\n", - "('Ptolemy', 'GPE')\n", - "('Lagus', 'PERSON')\n", - "('Egypt', 'GPE')\n", - "('Ptolemy', 'PERSON')\n", - "('half', 'CARDINAL')\n", - "('Egyptian', 'NORP')\n", - "('first', 'ORDINAL')\n", - "('Greeks', 'NORP')\n", - "('Pyrrhus', 'NORP')\n", - "('Corcyraeans', 'NORP')\n", - "('Lysimachus', 'ORG')\n", - "('Corcyra', 'PERSON')\n", - "('Demetrius', 'PERSON')\n", - "('Macedonia', 'GPE')\n", - "('Lysimachus', 'ORG')\n", - "('Romans', 'NORP')\n", - "('1.11.7', 'CARDINAL')\n", - "('first', 'ORDINAL')\n", - "('Greek', 'NORP')\n", - "('Aeneas', 'PERSON')\n", - "('Diomedes', 'ORG')\n", - "('Argives', 'GPE')\n", - "('One', 'CARDINAL')\n", - "('Athenians', 'NORP')\n", - "('Italy', 'GPE')\n", - "('Romans', 'NORP')\n", - "('Alexander', 'PERSON')\n", - "('Neoptolemus', 'GPE')\n", - "('Pyrrhus', 'NORP')\n", - "('Leucani', 'PERSON')\n", - "('Romans', 'NORP')\n", - "('1.12.1', 'CARDINAL')\n", - "('Pyrrhus', 'PERSON')\n", - "('first', 'ORDINAL')\n", - "('the Ionian Sea', 'LOC')\n", - "('Greece', 'GPE')\n", - "('Tarentines', 'PERSON')\n", - "('Romans', 'NORP')\n", - "('Corcyra', 'PERSON')\n", - "('Tarentine', 'PERSON')\n", - "('Italy', 'GPE')\n", - "('Greece', 'GPE')\n", - "('their hour', 'TIME')\n", - "('Pyrrhus', 'PERSON')\n", - "('Troy', 'PERSON')\n", - "('Achilles', 'PERSON')\n", - "('Trojans', 'NORP')\n", - "('1.12.2', 'CARDINAL')\n", - "('Memoirs', 'WORK_OF_ART')\n", - "('Pyrrhus', 'NORP')\n", - "('Italy', 'GPE')\n", - "('Romans', 'NORP')\n", - "('Romans', 'NORP')\n", - "('Tarentines', 'PERSON')\n", - "('1.12.3', 'CARDINAL')\n", - "('Romans', 'NORP')\n", - "('first', 'ORDINAL')\n", - "('European', 'NORP')\n", - "('Alexander', 'PERSON')\n", - "('Porus', 'PERSON')\n", - "('Indians', 'NORP')\n", - "('Pyrrhus', 'NORP')\n", - "('Demetrius', 'PERSON')\n", - "('Romans', 'NORP')\n", - "('1.12.4', 'CARDINAL')\n", - "('Macedonians', 'NORP')\n", - "('Asia', 'LOC')\n", - "('Indians', 'NORP')\n", - "('Libyans', 'NORP')\n", - "('Homer', 'PERSON')\n", - "('1.12.5', 'CARDINAL')\n", - "('Sicily', 'PERSON')\n", - "('Syracusans', 'PERSON')\n", - "('Carthaginians', 'NORP')\n", - "('Greek', 'NORP')\n", - "('Syracuse', 'ORG')\n", - "('Tarentum', 'ORG')\n", - "('Sicily', 'GPE')\n", - "('Carthaginians', 'NORP')\n", - "('Syracuse', 'GPE')\n", - "('Carthaginians', 'NORP')\n", - "('Phoenicians', 'NORP')\n", - "('non-Greek', 'NORP')\n", - "('that day', 'DATE')\n", - "('Pyrrhus', 'PERSON')\n", - "('Epeirots', 'ORG')\n", - "('Troy', 'PERSON')\n", - "('Homer', 'ORG')\n", - "('Odyssey', 'GPE')\n", - "('11.122', 'CARDINAL')\n", - "('1.13.1', 'CARDINAL')\n", - "('Pyrrhus', 'NORP')\n", - "('Tarentum', 'ORG')\n", - "('Romans', 'NORP')\n", - "('Sicily', 'PERSON')\n", - "('first', 'ORDINAL')\n", - "('Asia', 'LOC')\n", - "('Antigonus', 'LOC')\n", - "('Antigonus', 'LOC')\n", - "('Epeirot', 'PERSON')\n", - "('Tarentine', 'PERSON')\n", - "('Romans', 'NORP')\n", - "('Macedonians', 'NORP')\n", - "('Asiatic', 'NORP')\n", - "('Pyrrhus', 'NORP')\n", - "('Romans', 'NORP')\n", - "('Pyrrhus', 'NORP')\n", - "('Ceraunian', 'NORP')\n", - "('1.13.2', 'CARDINAL')\n", - "('Italy Pyrrhus', 'NORP')\n", - "('Antigonus', 'LOC')\n", - "('Italy', 'GPE')\n", - "('Antigonus', 'LOC')\n", - "('Macedonia', 'GPE')\n", - "('Thessalians', 'ORG')\n", - "('Pyrrhus', 'NORP')\n", - "('Celtic', 'NORP')\n", - "('Itonian Athena', 'ORG')\n", - "('Pherae', 'ORG')\n", - "('Larisa', 'PERSON')\n", - "('1.13.3', 'CARDINAL')\n", - "('Molossian', 'PERSON')\n", - "('Gauls', 'PERSON')\n", - "('Itonian\\nAthena', 'ORG')\n", - "('Antigonus', 'LOC')\n", - "('Tis', 'PERSON')\n", - "('Macedonians', 'NORP')\n", - "('Dodonian Zeus', 'PERSON')\n", - "('Asia', 'LOC')\n", - "('Greeks', 'NORP')\n", - "('Zeus', 'PERSON')\n", - "('Macedonia', 'GPE')\n", - "('Macedonia', 'GPE')\n", - "('1.13.4', 'CARDINAL')\n", - "('first', 'ORDINAL')\n", - "('Cleonymus', 'PERSON')\n", - "('Cleonymus', 'PERSON')\n", - "('Pyrrhus', 'PERSON')\n", - "('Macedonian', 'NORP')\n", - "('Peloponnesus', 'PERSON')\n", - "('Lacedaemonian', 'PERSON')\n", - "('Lacedaemonian', 'NORP')\n", - "('Cleonymus', 'GPE')\n", - "('Greeks', 'LANGUAGE')\n", - "('Pleistoanax', 'ORG')\n", - "('Pausanias', 'PERSON')\n", - "('Cleombrotus', 'ORG')\n", - "('Leuctra', 'GPE')\n", - "('Epaminondas', 'PERSON')\n", - "('Thebans', 'NORP')\n", - "('Agesipolis', 'PERSON')\n", - "('Cleomenes', 'GPE')\n", - "('Agesipolis', 'PERSON')\n", - "('Cleomenes', 'PERSON')\n", - "('1.13.5', 'CARDINAL')\n", - "('Cleomenes', 'ORG')\n", - "('two', 'CARDINAL')\n", - "('Acrotatus', 'ORG')\n", - "('Cleonymus', 'PERSON')\n", - "('Acrotatus', 'ORG')\n", - "('first', 'ORDINAL')\n", - "('Cleomenes', 'PERSON')\n", - "('Areus', 'GPE')\n", - "('Acrotatus', 'ORG')\n", - "('Cleonymus', 'PERSON')\n", - "('Lacedaemonians', 'NORP')\n", - "('Leonidas', 'PERSON')\n", - "('Persians', 'NORP')\n", - "('Demosthenes', 'PRODUCT')\n", - "('Athenians', 'NORP')\n", - "('1.13.6', 'CARDINAL')\n", - "('first', 'ORDINAL')\n", - "('Boeotia', 'GPE')\n", - "('Antipater', 'PERSON')\n", - "('Thirdly', 'ORDINAL')\n", - "('Pyrrhus', 'NORP')\n", - "('fourth', 'ORDINAL')\n", - "('Argives', 'GPE')\n", - "('Messenians', 'NORP')\n", - "('Sparta', 'GPE')\n", - "('Sparta', 'GPE')\n", - "('Demetrius', 'PERSON')\n", - "('1.13.7', 'CARDINAL')\n", - "('the Laconian war', 'EVENT')\n", - "('Antigonus', 'LOC')\n", - "('Macedonian', 'NORP')\n", - "('Peloponnesus', 'PERSON')\n", - "('Pyrrhus', 'PERSON')\n", - "('Lacedaemon', 'PERSON')\n", - "('Peloponnesus', 'PERSON')\n", - "('Epeirus', 'PERSON')\n", - "('Macedonia', 'GPE')\n", - "('Argos', 'ORG')\n", - "('Laconia', 'GPE')\n", - "('Pyrrhus', 'NORP')\n", - "('Argos', 'ORG')\n", - "('1.13.8', 'CARDINAL')\n", - "('Pyrrhus', 'NORP')\n", - "('death52', 'GPE')\n", - "('Argives', 'PERSON')\n", - "('Demeter', 'PERSON')\n", - "('Argives', 'GPE')\n", - "('Lyceas', 'GPE')\n", - "('Demeter', 'PERSON')\n", - "('Pyrrhus', 'NORP')\n", - "('1.13.9', 'CARDINAL')\n", - "('three', 'CARDINAL')\n", - "('Homer', 'PERSON')\n", - "('Achilles', 'PERSON')\n", - "('Alexander', 'PERSON')\n", - "('Priam', 'PERSON')\n", - "('Apollo', 'ORG')\n", - "('Delphians', 'LAW')\n", - "('Pythia', 'GPE')\n", - "('Pyrrhus', 'PERSON')\n", - "('Achilles', 'PERSON')\n", - "('Aeacides', 'PRODUCT')\n", - "('Argives', 'GPE')\n", - "('Lyceas', 'PERSON')\n", - "('Hieronymus the', 'PERSON')\n", - "('Cardian', 'PRODUCT')\n", - "('Philistus', 'ORG')\n", - "('Dionysius', 'GPE')\n", - "('Syracuse', 'GPE')\n", - "('Hieronymus', 'PERSON')\n", - "('Antigonus', 'LOC')\n", - "('1.14.1', 'CARDINAL')\n", - "('Epeirot', 'PERSON')\n", - "('Odeum', 'ORG')\n", - "('Athens', 'GPE')\n", - "('Dionysus', 'PERSON')\n", - "('Enneacrunos', 'PERSON')\n", - "('Nine', 'CARDINAL')\n", - "('Peisistratus', 'ORG')\n", - "('two', 'CARDINAL')\n", - "('Demeter', 'PERSON')\n", - "('Maid', 'PERSON')\n", - "('Triptolemus', 'ORG')\n", - "('Triptolemus', 'ORG')\n", - "('Deiope', 'EVENT')\n", - "('1.14.2', 'CARDINAL')\n", - "('Greeks', 'NORP')\n", - "('Athenian', 'NORP')\n", - "('Argives', 'GPE')\n", - "('Greeks', 'NORP')\n", - "('Egyptians', 'NORP')\n", - "('Phrygians', 'NORP')\n", - "('Demeter', 'PERSON')\n", - "('Pelasgus', 'ORG')\n", - "('Maid', 'PERSON')\n", - "('Trochilus', 'ORG')\n", - "('Argos', 'ORG')\n", - "('Agenor', 'ORG')\n", - "('Attica', 'GPE')\n", - "('Eleusis', 'PERSON')\n", - "('two', 'CARDINAL')\n", - "('Eubuleus', 'PERSON')\n", - "('Triptolemus', 'ORG')\n", - "('Argives', 'GPE')\n", - "('Athenians', 'NORP')\n", - "('Triptolemus', 'ORG')\n", - "('Celeus', 'PERSON')\n", - "('first', 'ORDINAL')\n", - "('1.14.3', 'CARDINAL')\n", - "('Musaeus', 'GPE')\n", - "('Triptolemus', 'ORG')\n", - "('Oceanus', 'GPE')\n", - "('Earth', 'LOC')\n", - "('Orpheus', 'GPE')\n", - "('Eubuleus', 'PERSON')\n", - "('Triptolemus', 'ORG')\n", - "('Dysaules', 'GPE')\n", - "('Demeter', 'PERSON')\n", - "('Choerilus', 'GPE')\n", - "('Athenian', 'NORP')\n", - "('Alope', 'PERSON')\n", - "('Cercyon', 'ORG')\n", - "('Triptolemus', 'ORG')\n", - "('Amphictyon', 'PERSON')\n", - "('Triptolemus', 'ORG')\n", - "('Rarus', 'PERSON')\n", - "('Cercyon', 'GPE')\n", - "('Poseidon', 'GPE')\n", - "('Athens', 'GPE')\n", - "('1.14.4', 'CARDINAL')\n", - "('Triptolemus', 'ORG')\n", - "('Epimenides of Cnossus,53', 'GPE')\n", - "('the fortieth year', 'DATE')\n", - "('Athens', 'GPE')\n", - "('Thales', 'PERSON')\n", - "('Lacedaemonians', 'NORP')\n", - "('Cnossus', 'ORG')\n", - "('Thales', 'PERSON')\n", - "('Gortyn', 'ORG')\n", - "('Polymnastus of Colophon', 'ORG')\n", - "('Lacedaemonians', 'NORP')\n", - "('1.14.5', 'CARDINAL')\n", - "('Glory', 'GPE')\n", - "('Persians', 'NORP')\n", - "('Marathon', 'EVENT')\n", - "('Athenians', 'NORP')\n", - "('Aeschylus', 'PERSON')\n", - "('Artemisium', 'ORG')\n", - "('Salamis', 'ORG')\n", - "('Marathon and in', 'FAC')\n", - "('Persians', 'NORP')\n", - "('1.14.6', 'CARDINAL')\n", - "('Cerameicus', 'ORG')\n", - "(\"the King's Portico\", 'WORK_OF_ART')\n", - "('Hephaestus', 'ORG')\n", - "('Athena', 'ORG')\n", - "('Erichthonius', 'ORG')\n", - "('Athena', 'ORG')\n", - "('Libyan', 'NORP')\n", - "('Libyans', 'NORP')\n", - "('Goddess', 'WORK_OF_ART')\n", - "('Poseidon', 'GPE')\n", - "('Lake Tritonis', 'FAC')\n", - "('Poseidon', 'GPE')\n", - "('1.14.7', 'CARDINAL')\n", - "('first', 'ORDINAL')\n", - "('Assyrians', 'NORP')\n", - "('Assyrians', 'NORP')\n", - "('Paphians', 'NORP')\n", - "('Phoenicians', 'NORP')\n", - "('Ascalon', 'ORG')\n", - "('Palestine', 'GPE')\n", - "('Phoenicians', 'NORP')\n", - "('Cythera', 'ORG')\n", - "('Athenians', 'NORP')\n", - "('Aegeus', 'PERSON')\n", - "('Heavenly Aphrodite', 'PERSON')\n", - "('Parian', 'NORP')\n", - "('Pheidias', 'PERSON')\n", - "('One', 'CARDINAL')\n", - "('Athenian', 'NORP')\n", - "('Athmoneis', 'ORG')\n", - "('Porphyrion', 'PRODUCT')\n", - "('the Heavenly One', 'ORG')\n", - "('1.15.1', 'CARDINAL')\n", - "('Hermes of the Market-place', 'ORG')\n", - "('Athenians', 'NORP')\n", - "('Pleistarchus', 'ORG')\n", - "('Cassander', 'PERSON')\n", - "('first', 'ORDINAL')\n", - "('Athenians', 'NORP')\n", - "('Lacedaemonians', 'NORP')\n", - "('Oenoe', 'FAC')\n", - "('Argive', 'PERSON')\n", - "('1.15.2', 'CARDINAL')\n", - "('Athenians', 'NORP')\n", - "('Theseus', 'PERSON')\n", - "('Amazons', 'ORG')\n", - "('Themiscyra', 'PERSON')\n", - "('Heracles', 'PERSON')\n", - "('Athens', 'GPE')\n", - "('Troy', 'PERSON')\n", - "('Greeks', 'NORP')\n", - "('Athenians', 'NORP')\n", - "('Amazons', 'ORG')\n", - "('Greeks', 'NORP')\n", - "('Troy', 'PERSON')\n", - "('Ajax', 'ORG')\n", - "('Cassandra', 'PERSON')\n", - "('Ajax', 'ORG')\n", - "('Cassandra', 'PERSON')\n", - "('1.15.3', 'CARDINAL')\n", - "('Marathon', 'ORG')\n", - "('Attic', 'NORP')\n", - "('Phoenician', 'NORP')\n", - "('Greeks', 'NORP')\n", - "('Marathon', 'PERSON')\n", - "('Theseus', 'PERSON')\n", - "('Athena', 'ORG')\n", - "('Heracles', 'PERSON')\n", - "('Marathonians', 'PERSON')\n", - "('first', 'ORDINAL')\n", - "('Heracles', 'PERSON')\n", - "('Callimachus', 'PERSON')\n", - "('Athenians', 'NORP')\n", - "('Miltiades', 'PERSON')\n", - "('one', 'CARDINAL')\n", - "('Echetlus', 'ORG')\n", - "('1.15.4', 'CARDINAL')\n", - "('Scioneans', 'NORP')\n", - "('Lacedaemonians', 'NORP')\n", - "('1.16.1', 'CARDINAL')\n", - "('Solon', 'ORG')\n", - "('one', 'CARDINAL')\n", - "('Seleucus', 'GPE')\n", - "('Macedonia', 'GPE')\n", - "('Alexander', 'PERSON')\n", - "('Pella', 'GPE')\n", - "('Zeus', 'PERSON')\n", - "('SELEUCUS', 'PERSON')\n", - "('ANTIOCH', 'ORG')\n", - "('Alexander', 'GPE')\n", - "('Seleucus', 'GPE')\n", - "('Antigonus', 'LOC')\n", - "('Babylon', 'GPE')\n", - "('Ptolemy', 'GPE')\n", - "('Lagus', 'PERSON')\n", - "('Babylon', 'GPE')\n", - "('Antigonus', 'LOC')\n", - "('Antigonus', 'LOC')\n", - "('Demetrius', 'PERSON')\n", - "('Antigonus', 'LOC')\n", - "('1.16.2', 'CARDINAL')\n", - "('the fall', 'DATE')\n", - "('Antiochus', 'PERSON')\n", - "('Asia', 'LOC')\n", - "('Macedonia', 'GPE')\n", - "('Greeks', 'NORP')\n", - "('Ptolemy', 'PERSON')\n", - "('Lysandra', 'PERSON')\n", - "('Thunderbolt', 'PERSON')\n", - "('Seleucus', 'GPE')\n", - "('Lysimachea', 'PERSON')\n", - "('Seleucus', 'GPE')\n", - "('Macedonia', 'GPE')\n", - "('first', 'ORDINAL')\n", - "('Gauls', 'PERSON')\n", - "('Antigonus', 'LOC')\n", - "('Demetrius', 'PERSON')\n", - "('1.16.3', 'CARDINAL')\n", - "('Seleucus', 'GPE')\n", - "('Firstly', 'ORDINAL')\n", - "('Seleucus', 'GPE')\n", - "('Branchidae for the Milesians', 'WORK_OF_ART')\n", - "('Apollo', 'ORG')\n", - "('Xerxes', 'PERSON')\n", - "('Persia', 'GPE')\n", - "('Secondly', 'ORDINAL')\n", - "('Seleucea', 'ORG')\n", - "('Tigris', 'ORG')\n", - "('Babylonian', 'NORP')\n", - "('Babylon', 'GPE')\n", - "('Bel', 'GPE')\n", - "('Chaldeans', 'NORP')\n", - "('ATHENS', 'GPE')\n", - "('1.17.1', 'CARDINAL')\n", - "('Athenian', 'NORP')\n", - "('Mercy', 'LOC')\n", - "('Athenians', 'NORP')\n", - "('Greeks', 'NORP')\n", - "('Shamefastness', 'PERSON')\n", - "('1.17.2', 'CARDINAL')\n", - "('Ptolemy', 'PERSON')\n", - "('Hermae', 'GPE')\n", - "('Ptolemy', 'GPE')\n", - "('Juba', 'NORP')\n", - "('Libyan', 'NORP')\n", - "('Theseus', 'PERSON')\n", - "('Athenians', 'NORP')\n", - "('Amazons', 'ORG')\n", - "('Athena', 'ORG')\n", - "('the Olympian Zeus', 'LOC')\n", - "('Theseus', 'PERSON')\n", - "('Centaurs', 'ORG')\n", - "('Lapithae', 'PRODUCT')\n", - "('Theseus', 'PERSON')\n", - "('1.17.3', 'CARDINAL')\n", - "('third', 'ORDINAL')\n", - "('Micon', 'PRODUCT')\n", - "('Minos', 'PERSON')\n", - "('Theseus', 'PERSON')\n", - "('Crete', 'GPE')\n", - "('Periboea', 'ORG')\n", - "('Theseus', 'PERSON')\n", - "('Poseidon', 'GPE')\n", - "('Minos', 'ORG')\n", - "('Theseus', 'PERSON')\n", - "('Amphitrite', 'PERSON')\n", - "('1.17.4', 'CARDINAL')\n", - "('the end of Theseus', 'DATE')\n", - "('Heracles', 'PERSON')\n", - "('Theseus', 'PERSON')\n", - "('Thesprotia', 'ORG')\n", - "('Thesprotian', 'NORP')\n", - "('Peirithous', 'PERSON')\n", - "('Thesprotian', 'NORP')\n", - "('Cichyrus', 'ORG')\n", - "('1.17.5', 'CARDINAL')\n", - "('Thesprotia', 'ORG')\n", - "('Zeus', 'PERSON')\n", - "('Dodona', 'PERSON')\n", - "('Acherusia', 'LOC')\n", - "('Acheron', 'ORG')\n", - "('Cocytus', 'NORP')\n", - "('Hades', 'PERSON')\n", - "('Thesprotia', 'GPE')\n", - "('Theseus', 'PERSON')\n", - "('Tyndareus', 'PERSON')\n", - "('Aphidna', 'ORG')\n", - "('Menestheus', 'PERSON')\n", - "('1.17.6', 'CARDINAL')\n", - "('Now Menestheus', 'PERSON')\n", - "('Theseus', 'PERSON')\n", - "('Elephenor in Euboea', 'ORG')\n", - "('Theseus', 'PERSON')\n", - "('Thesprotia', 'ORG')\n", - "('Theseus', 'PERSON')\n", - "('Theseus', 'PERSON')\n", - "('Deucalion in Crete', 'ORG')\n", - "('Scyros', 'GPE')\n", - "('Lycomedes', 'PERSON')\n", - "('Athens', 'GPE')\n", - "('Persians', 'NORP')\n", - "('Marathon', 'ORG')\n", - "('Cimon', 'ORG')\n", - "('Miltiades', 'PERSON')\n", - "('Scyros', 'ORG')\n", - "('Theseus', 'PERSON')\n", - "('Athens', 'GPE')\n", - "('Dioscuri', 'ORG')\n", - "('Leucippus', 'GPE')\n", - "('Micon', 'PERSON')\n", - "('Jason', 'PERSON')\n", - "('Colchians', 'NORP')\n", - "('Acastus', 'ORG')\n", - "('1.18.2', 'CARDINAL')\n", - "('Dioscuri', 'ORG')\n", - "('Herse', 'GPE')\n", - "('Pandrosus', 'PERSON')\n", - "('Athena', 'ORG')\n", - "('Erichthonius', 'ORG')\n", - "('Pandrosus', 'PERSON')\n", - "('two', 'CARDINAL')\n", - "('Erichthonius', 'ORG')\n", - "('Acropolis', 'LOC')\n", - "('Persians', 'NORP')\n", - "('Athenians', 'NORP')\n", - "('oracle62', 'ORG')\n", - "('Themistocles', 'ORG')\n", - "('Acropolis', 'LOC')\n", - "('stakes.63', 'GPE')\n", - "('1.18.3', 'CARDINAL')\n", - "('Prytaneum', 'GPE')\n", - "('Solon', 'ORG')\n", - "('Hestia', 'PERSON')\n", - "('Autolycus', 'GPE')\n", - "('Miltiades', 'PERSON')\n", - "('Themistocles', 'ORG')\n", - "('Roman', 'NORP')\n", - "('Thracian', 'NORP')\n", - "('1.18.4', 'CARDINAL')\n", - "('Serapis', 'PERSON')\n", - "('Athenians', 'NORP')\n", - "('Ptolemy', 'GPE')\n", - "('Egyptian', 'NORP')\n", - "('Serapis', 'PERSON')\n", - "('Alexandria', 'GPE')\n", - "('Memphis', 'GPE')\n", - "('Apis', 'PERSON')\n", - "('Serapis', 'PERSON')\n", - "('Peirithous', 'PERSON')\n", - "('Theseus', 'PERSON')\n", - "('Lacedaemon', 'PERSON')\n", - "('Thesprotia', 'ORG')\n", - "('1.18.5', 'CARDINAL')\n", - "('Eileithyia', 'GPE')\n", - "('Hyperboreans', 'NORP')\n", - "('Delos', 'PERSON')\n", - "('Leto', 'PERSON')\n", - "('Delos', 'ORG')\n", - "('Delians', 'NORP')\n", - "('Eileithyia', 'GPE')\n", - "('Olen', 'PERSON')\n", - "('Cretans', 'ORG')\n", - "('Eileithyia', 'GPE')\n", - "('Auunisus', 'ORG')\n", - "('Cnossian', 'NORP')\n", - "('Hera', 'PERSON')\n", - "('Athenians', 'NORP')\n", - "('Eileithyia', 'GPE')\n", - "('two', 'CARDINAL')\n", - "('Cretan', 'GPE')\n", - "('Phaedra', 'PERSON')\n", - "('third', 'ORDINAL')\n", - "('Erysichthon', 'ORG')\n", - "('Delos', 'PERSON')\n", - "('1.18.6', 'CARDINAL')\n", - "('Olympian Zeus', 'PERSON')\n", - "('Hadrian', 'NORP')\n", - "('Roman', 'NORP')\n", - "('one', 'CARDINAL')\n", - "('Rhodes', 'GPE')\n", - "('Rome', 'GPE')\n", - "('Hadrian', 'NORP')\n", - "('two', 'CARDINAL')\n", - "('Thasian', 'NORP')\n", - "('two', 'CARDINAL')\n", - "('Egyptian', 'NORP')\n", - "('Athenians', 'NORP')\n", - "('about four', 'CARDINAL')\n", - "('Hadrian', 'NORP')\n", - "('Athenians', 'NORP')\n", - "('Zeus', 'PERSON')\n", - "('Cronus', 'PERSON')\n", - "('Rhea', 'PERSON')\n", - "('Earth', 'LOC')\n", - "('Deucalion', 'ORG')\n", - "('Isocrates', 'GPE')\n", - "('three', 'CARDINAL')\n", - "('ninety-eight years', 'DATE')\n", - "('Phrygian', 'NORP')\n", - "('Persians', 'NORP')\n", - "('Olympian Zeus', 'FAC')\n", - "('Athenians', 'NORP')\n", - "('Deucalion', 'ORG')\n", - "('Deucalion', 'ORG')\n", - "('Athens', 'GPE')\n", - "('Hadrian', 'NORP')\n", - "('Athenians', 'NORP')\n", - "('Hera', 'GPE')\n", - "('Zeus Panellenios', 'PERSON')\n", - "('Greeks', 'LANGUAGE')\n", - "('hundred', 'CARDINAL')\n", - "('Phrygian', 'NORP')\n", - "('Hadrian', 'NORP')\n", - "('a hundred', 'CARDINAL')\n", - "('Libyan', 'NORP')\n", - "('1.19.1', 'CARDINAL')\n", - "('Olympian Zeus', 'PERSON')\n", - "('the Pythian Apollo', 'ORG')\n", - "('Apollo', 'ORG')\n", - "('Theseus', 'PERSON')\n", - "('Delphinian', 'NORP')\n", - "('Theseus', 'PERSON')\n", - "('1.19.2', 'CARDINAL')\n", - "('The Gardens', 'LOC')\n", - "('Aphrodite', 'PERSON')\n", - "('Aphrodite', 'PERSON')\n", - "('Hermae', 'GPE')\n", - "('Fates', 'NORP')\n", - "('Aphrodite', 'PERSON')\n", - "('Gardens', 'LOC')\n", - "('Alcamenes', 'PERSON')\n", - "('Athens', 'GPE')\n", - "('1.19.3', 'CARDINAL')\n", - "('Cynosarges', 'ORG')\n", - "('Heracles', 'PERSON')\n", - "('Heracles', 'PERSON')\n", - "('Hebe', 'PERSON')\n", - "('Zeus', 'PERSON')\n", - "('Heracles', 'PERSON')\n", - "('Alcmena', 'ORG')\n", - "('Iolaus', 'PERSON')\n", - "('Heracles', 'PERSON')\n", - "('Lyceum', 'ORG')\n", - "('Lycus', 'GPE')\n", - "('Pandion', 'LOC')\n", - "('Apollo', 'ORG')\n", - "('first', 'ORDINAL')\n", - "('Lyceus', 'PERSON')\n", - "('Termilae', 'ORG')\n", - "('Lycus', 'ORG')\n", - "('Aegeus', 'PERSON')\n", - "('Lycii', 'PERSON')\n", - "('1.19.4', 'CARDINAL')\n", - "('Lyceum', 'ORG')\n", - "('Nisus', 'PERSON')\n", - "('Megara', 'PERSON')\n", - "('Athenians', 'NORP')\n", - "('Nisus', 'PERSON')\n", - "('Cretans', 'ORG')\n", - "('Megarid', 'PERSON')\n", - "('Nisaea', 'PERSON')\n", - "('Nisus', 'PERSON')\n", - "('Nisus', 'PERSON')\n", - "('Minos', 'ORG')\n", - "('1.19.5', 'CARDINAL')\n", - "('Athenian', 'NORP')\n", - "('Ilisus', 'ORG')\n", - "('Eridanus', 'LOC')\n", - "('Celtic', 'NORP')\n", - "('Ilisus', 'ORG')\n", - "('Oreithyia', 'PERSON')\n", - "('the North Wind', 'LOC')\n", - "('Oreithyia', 'PERSON')\n", - "('Athenians', 'NORP')\n", - "('Athenians', 'NORP')\n", - "('Ilisus', 'ORG')\n", - "('Ilisian', 'NORP')\n", - "('Peloponnesians', 'NORP')\n", - "('Codrus', 'PERSON')\n", - "('Melanthus', 'NORP')\n", - "('Athens', 'GPE')\n", - "('1.19.6', 'CARDINAL')\n", - "('Ilisus', 'ORG')\n", - "('Agrae', 'PERSON')\n", - "('Artemis Agrotera', 'ORG')\n", - "('Artemis', 'ORG')\n", - "('first', 'ORDINAL')\n", - "('Delos', 'PERSON')\n", - "('Ilisus', 'ORG')\n", - "('two', 'CARDINAL')\n", - "('Herodes', 'ORG')\n", - "('Athenian', 'NORP')\n", - "('Pentelic', 'PERSON')\n", - "('1.20.1', 'CARDINAL')\n", - "('Tripods', 'PRODUCT')\n", - "('Satyr', 'ORG')\n", - "('Praxiteles', 'ORG')\n", - "('Phryne', 'PERSON')\n", - "('Phryne', 'PERSON')\n", - "('Praxiteles', 'ORG')\n", - "('1.20.2', 'CARDINAL')\n", - "('Satyr', 'ORG')\n", - "('Love', 'WORK_OF_ART')\n", - "('Phryne', 'PERSON')\n", - "('Phryne', 'PERSON')\n", - "('Love', 'WORK_OF_ART')\n", - "('Satyr', 'ORG')\n", - "('Dionysus', 'PERSON')\n", - "('Love', 'WORK_OF_ART')\n", - "('Dionysus', 'PERSON')\n", - "('1.20.3', 'CARDINAL')\n", - "('Dionysus', 'PERSON')\n", - "('two temples', 'QUANTITY')\n", - "('two', 'CARDINAL')\n", - "('Dionysus', 'PERSON')\n", - "('Eleuthereus', 'PERSON')\n", - "('one', 'CARDINAL')\n", - "('Alcamenes', 'PERSON')\n", - "('Dionysus', 'PERSON')\n", - "('Hephaestus', 'PERSON')\n", - "('One', 'CARDINAL')\n", - "('Greek', 'NORP')\n", - "('Hephaestus', 'ORG')\n", - "('Hera', 'PERSON')\n", - "('Hera', 'PERSON')\n", - "('Hephaestus', 'ORG')\n", - "('Dionysus', 'PERSON')\n", - "('Dionysus', 'PERSON')\n", - "('Pentheus', 'PERSON')\n", - "('Lycurgus', 'PERSON')\n", - "('Dionysus', 'PERSON')\n", - "('Ariadne', 'PERSON')\n", - "('Theseus', 'PERSON')\n", - "('Dionysus', 'PERSON')\n", - "('Ariadne', 'PERSON')\n", - "('1.20.4', 'CARDINAL')\n", - "('Dionysus', 'PERSON')\n", - "('Xerxes', 'ORG')\n", - "('Roman', 'NORP')\n", - "('Sulla', 'PERSON')\n", - "('Mithridates', 'PERSON')\n", - "('Euxine', 'PERSON')\n", - "('Romans', 'NORP')\n", - "('Asia', 'LOC')\n", - "('Mithridates', 'PERSON')\n", - "('Athens', 'GPE')\n", - "('ASIA', 'LOC')\n", - "('1.20.5', 'CARDINAL')\n", - "('Athenian', 'NORP')\n", - "('Aristion', 'ORG')\n", - "('Mithridates', 'PERSON')\n", - "('Greek', 'NORP')\n", - "('Athenians', 'NORP')\n", - "('Mithridates', 'PERSON')\n", - "('Romans', 'NORP')\n", - "('Athenians', 'NORP')\n", - "('Romans', 'NORP')\n", - "('Romans', 'NORP')\n", - "('Aristion', 'ORG')\n", - "('Athenians', 'NORP')\n", - "('Archelaus', 'PERSON')\n", - "('Peiraeus', 'PERSON')\n", - "('This Archelaus', 'PERSON')\n", - "('Mithridates', 'PERSON')\n", - "('Magnetes', 'NORP')\n", - "('Sipylus', 'PRODUCT')\n", - "('Athens', 'GPE')\n", - "('1.20.6', 'CARDINAL')\n", - "('Mithridates', 'PERSON')\n", - "('Elatea', 'ORG')\n", - "('Phocis', 'GPE')\n", - "('Attica', 'GPE')\n", - "('Roman', 'NORP')\n", - "('Athens', 'GPE')\n", - "('Taxilus', 'FAC')\n", - "('Boeotia', 'GPE')\n", - "('the third day', 'DATE')\n", - "('Roman', 'NORP')\n", - "('Sulla', 'PERSON')\n", - "('Athenian', 'NORP')\n", - "('Taxilus', 'FAC')\n", - "('Chaeronea', 'GPE')\n", - "('Sulla', 'PERSON')\n", - "('Attica', 'GPE')\n", - "('Cerameicus', 'GPE')\n", - "('Athenians', 'NORP')\n", - "('one', 'CARDINAL')\n", - "('1.20.7', 'CARDINAL')\n", - "('Sulla', 'PERSON')\n", - "('Athenians', 'NORP')\n", - "('Delphi', 'ORG')\n", - "('Athens', 'GPE')\n", - "('Pythia', 'GPE')\n", - "('Sulla', 'PERSON')\n", - "('Syrian', 'NORP')\n", - "('Sulla', 'PERSON')\n", - "('Athenian', 'NORP')\n", - "('Roman', 'NORP')\n", - "('Aristion', 'ORG')\n", - "('Athena', 'ORG')\n", - "('Athens', 'GPE')\n", - "('Rome', 'GPE')\n", - "('Hadrian', 'NORP')\n", - "('1.21.1', 'CARDINAL')\n", - "('Athenians', 'NORP')\n", - "('Menander', 'GPE')\n", - "('two', 'CARDINAL')\n", - "('Euripides', 'NORP')\n", - "('Sophocles', 'PERSON')\n", - "('Sophocles the Lacedaemonians', 'PERSON')\n", - "('Attica', 'GPE')\n", - "('Dionysus', 'PERSON')\n", - "('Siren', 'ORG')\n", - "('Sophocles', 'PERSON')\n", - "('Siren', 'ORG')\n", - "('1.21.2', 'CARDINAL')\n", - "('Aeschylus', 'PERSON')\n", - "('Marathon Aeschylus', 'FAC')\n", - "('Dionysus', 'PERSON')\n", - "('1.21.3', 'CARDINAL')\n", - "('South', 'LOC')\n", - "('Acropolis', 'LOC')\n", - "('Medusa the Gorgon', 'ORG')\n", - "('Acropolis', 'NORP')\n", - "('Apollo', 'ORG')\n", - "('Artemis', 'ORG')\n", - "('Niobe', 'GPE')\n", - "('Niobe', 'GPE')\n", - "('Mount Sipylus', 'PERSON')\n", - "('1.21.4', 'CARDINAL')\n", - "('the Athenian Acropolis', 'LOC')\n", - "('Calos', 'PERSON')\n", - "('Daedalus', 'PRODUCT')\n", - "('Calos', 'PERSON')\n", - "('Crete', 'GPE')\n", - "('Cocalus in Sicily', 'WORK_OF_ART')\n", - "('Asclepius', 'ORG')\n", - "('Poseidon', 'ORG')\n", - "('Halirrhothius', 'PERSON')\n", - "('Alcippe', 'PERSON')\n", - "('Ares', 'PERSON')\n", - "('first', 'ORDINAL')\n", - "('1.21.5', 'CARDINAL')\n", - "('Sauromatic', 'NORP')\n", - "('Greeks', 'NORP')\n", - "('Greeks', 'NORP')\n", - "('1.21.7', 'CARDINAL')\n", - "('Gryneum', 'ORG')\n", - "('Apollo', 'ORG')\n", - "('1.22.1', 'CARDINAL')\n", - "('Asclepius', 'ORG')\n", - "('Acropolis', 'LOC')\n", - "('Themis', 'GPE')\n", - "('Hippolytus', 'NORP')\n", - "('Greek', 'NORP')\n", - "('Phaedra', 'PERSON')\n", - "('Troezenians', 'NORP')\n", - "('Hippolytus', 'ORG')\n", - "('1.22.2', 'CARDINAL')\n", - "('Theseus', 'PERSON')\n", - "('Phaedra', 'PERSON')\n", - "('Hippolytus', 'ORG')\n", - "('Pittheus', 'PERSON')\n", - "('Troezen', 'ORG')\n", - "('Theseus', 'PERSON')\n", - "('Troezen', 'ORG')\n", - "('Phaedra', 'PERSON')\n", - "('first', 'ORDINAL')\n", - "('Hippolytus', 'ORG')\n", - "('Troezenians', 'NORP')\n", - "('Phaedra', 'PERSON')\n", - "('1.22.3', 'CARDINAL')\n", - "('Theseus', 'PERSON')\n", - "('one', 'CARDINAL')\n", - "('Athenian', 'NORP')\n", - "('Aphrodite Pandemos', 'PERSON')\n", - "('Earth', 'LOC')\n", - "('Nurse of Youth', 'ORG')\n", - "('Demeter Chloe', 'PERSON')\n", - "('ATHENS', 'GPE')\n", - "('1.22.4', 'CARDINAL')\n", - "('Acropolis', 'LOC')\n", - "('Xenophon', 'PERSON')\n", - "('Aegeus', 'PERSON')\n", - "('1.22.5', 'CARDINAL')\n", - "('Crete', 'GPE')\n", - "('Theseus', 'PERSON')\n", - "('Minos', 'ORG')\n", - "('Ariadne', 'PERSON')\n", - "('Aegeus', 'PERSON')\n", - "('Athens', 'GPE')\n", - "('Aegeus', 'PERSON')\n", - "('Diomedes', 'ORG')\n", - "('Athena', 'ORG')\n", - "('Troy', 'GPE')\n", - "('Odysseus', 'PERSON')\n", - "('Lemnos', 'ORG')\n", - "('Philoctetes', 'ORG')\n", - "('Orestes', 'ORG')\n", - "('Aegisthus', 'ORG')\n", - "('Pylades', 'PERSON')\n", - "('Nauplius', 'PERSON')\n", - "('Aegisthus', 'ORG')\n", - "('Polyxena', 'PERSON')\n", - "('Achilles', 'PERSON')\n", - "('Achilles', 'PERSON')\n", - "('Achilles', 'ORG')\n", - "('Scyros', 'GPE')\n", - "('Polygnotus', 'ORG')\n", - "('Odysseus', 'PERSON')\n", - "('Nausicaa', 'ORG')\n", - "('Alcibiades', 'PERSON')\n", - "('1.22.7', 'CARDINAL')\n", - "('Nemea', 'ORG')\n", - "('Perseus journeying', 'PERSON')\n", - "('Seriphos', 'PERSON')\n", - "('Polydectes', 'PERSON')\n", - "('Medusa', 'ORG')\n", - "('Attica', 'GPE')\n", - "('Musaeus', 'PERSON')\n", - "('Musaeus', 'PERSON')\n", - "('the North Wind', 'LOC')\n", - "('Onomacritus', 'ORG')\n", - "('Musaeus', 'PERSON')\n", - "('Demeter', 'PERSON')\n", - "('Lycomidae', 'DATE')\n", - "('1.22.8', 'CARDINAL')\n", - "('Acropolis', 'NORP')\n", - "('Hermes of the Gateway', 'ORG')\n", - "('Graces', 'ORG')\n", - "('Socrates', 'PRODUCT')\n", - "('Sophroniscus', 'GPE')\n", - "('Pythia', 'PERSON')\n", - "('Anacharsis', 'ORG')\n", - "('Delphi', 'ORG')\n", - "('1.23.1', 'CARDINAL')\n", - "('Greeks', 'NORP')\n", - "('seven', 'CARDINAL')\n", - "('Two', 'CARDINAL')\n", - "('Lesbos', 'GPE')\n", - "('Periander', 'NORP')\n", - "('Cypselus', 'ORG')\n", - "('Peisistratus', 'ORG')\n", - "('Hippias', 'PERSON')\n", - "('Periander', 'NORP')\n", - "('Hipparchus', 'PERSON')\n", - "('Hippias', 'PERSON')\n", - "('Leaena', 'PERSON')\n", - "('1.23.2', 'CARDINAL')\n", - "('Athenians', 'NORP')\n", - "('Hipparchus', 'PERSON')\n", - "('Hippias', 'PERSON')\n", - "('Leaena', 'GPE')\n", - "('Aristogeiton', 'PERSON')\n", - "('Peisistratidae', 'PERSON')\n", - "('Athenians', 'NORP')\n", - "('Callias', 'NORP')\n", - "('Calamis', 'NORP')\n", - "('1.23.3', 'CARDINAL')\n", - "('Diitrephes', 'PERSON')\n", - "('Diitrephes', 'PERSON')\n", - "('Athenians', 'NORP')\n", - "('Thracian', 'NORP')\n", - "('Syracuse', 'ORG')\n", - "('the Chalcidic Euripus', 'FAC')\n", - "('Boeotians', 'NORP')\n", - "('Mycalessus', 'PERSON')\n", - "('Thracians', 'NORP')\n", - "('Boeotian', 'NORP')\n", - "('Thebans', 'NORP')\n", - "('Mycalessians', 'GPE')\n", - "('1.23.4', 'CARDINAL')\n", - "('Diitrephes', 'PERSON')\n", - "('Greeks', 'NORP')\n", - "('Cretans', 'ORG')\n", - "('the Opuntian Locrians', 'PRODUCT')\n", - "('Homer', 'PERSON')\n", - "('Troy', 'PERSON')\n", - "('Persian', 'NORP')\n", - "('Malians', 'NORP')\n", - "('Philoctetes', 'ORG')\n", - "('Diitrephes', 'PERSON')\n", - "('Health', 'ORG')\n", - "('Asclepius', 'PERSON')\n", - "('Athena', 'ORG')\n", - "('1.23.5', 'CARDINAL')\n", - "('Silenus', 'PERSON')\n", - "('Dionysus', 'PERSON')\n", - "('Satyrs', 'ORG')\n", - "('Sileni', 'NORP')\n", - "('Euphemus', 'PERSON')\n", - "('Carian', 'PERSON')\n", - "('Italy', 'GPE')\n", - "('1.23.6', 'CARDINAL')\n", - "('Satyrides', 'PRODUCT')\n", - "('Satyrs', 'ORG')\n", - "('1.23.7', 'CARDINAL')\n", - "('the Athenian Acropolis', 'LOC')\n", - "('Lycius', 'ORG')\n", - "('Myron', 'PERSON')\n", - "(\"Myron's Perseus\", 'PERSON')\n", - "('Medusa', 'PERSON')\n", - "('Brauronian Artemis', 'ORG')\n", - "('Praxiteles', 'ORG')\n", - "('Brauron', 'ORG')\n", - "('Brauron', 'ORG')\n", - "('the Tauric Artemis', 'ORG')\n", - "('1.23.8', 'CARDINAL')\n", - "('Epeius', 'PERSON')\n", - "('Phrygians', 'NORP')\n", - "('Greeks', 'NORP')\n", - "('Menestheus', 'PERSON')\n", - "('Teucer', 'PERSON')\n", - "('Theseus', 'PERSON')\n", - "('1.23.9', 'CARDINAL')\n", - "('Epicharinus', 'LOC')\n", - "('Critius', 'ORG')\n", - "('Oenobius', 'PERSON')\n", - "('Thucydides', 'FAC')\n", - "('Thucydides', 'GPE')\n", - "('Athens', 'GPE')\n", - "('Melitid', 'PERSON')\n", - "('1.23.10', 'CARDINAL')\n", - "('Hermolycus', 'ORG')\n", - "('Phormio71', 'GPE')\n", - "('Phormio', 'ORG')\n", - "('Athens', 'GPE')\n", - "('Paeania', 'GPE')\n", - "('Athenians', 'NORP')\n", - "('Athenians', 'NORP')\n", - "('Phormio', 'ORG')\n", - "('1.24.1', 'CARDINAL')\n", - "('Athena', 'ORG')\n", - "('Theseus', 'PERSON')\n", - "('Bull of Minos', 'ORG')\n", - "('1.24.2', 'CARDINAL')\n", - "('Phrixus', 'NORP')\n", - "('Athamas', 'ORG')\n", - "('Colchians', 'NORP')\n", - "('one', 'CARDINAL')\n", - "('Greek', 'NORP')\n", - "('one', 'CARDINAL')\n", - "('Heracles', 'PERSON')\n", - "('Athena', 'ORG')\n", - "('Zeus', 'PERSON')\n", - "('the Council of the Areopagus', 'ORG')\n", - "('1.24.3', 'CARDINAL')\n", - "('Athenians', 'NORP')\n", - "('first', 'ORDINAL')\n", - "('Athena Ergane', 'ORG')\n", - "('first', 'ORDINAL')\n", - "('Hermae', 'PERSON')\n", - "('Cleoetas', 'ORG')\n", - "('Earth', 'LOC')\n", - "('Zeus', 'PERSON')\n", - "('Athenians', 'NORP')\n", - "('Greeks', 'NORP')\n", - "('Timotheus', 'PERSON')\n", - "('Conon', 'PERSON')\n", - "('Procne', 'ORG')\n", - "('Itys', 'PERSON')\n", - "('Alcamenes', 'ORG')\n", - "('Athena', 'ORG')\n", - "('Poseidon', 'GPE')\n", - "('1.24.4', 'CARDINAL')\n", - "('Zeus', 'PERSON')\n", - "('Leochares72', 'ORG')\n", - "('one', 'CARDINAL')\n", - "('Polieus (Urban', 'ORG')\n", - "('Zeus Polieus', 'PERSON')\n", - "('One', 'CARDINAL')\n", - "('Parthenon', 'GPE')\n", - "('Athena', 'ORG')\n", - "('Athena', 'ORG')\n", - "('Poseidon', 'GPE')\n", - "('Sphinx', 'FAC')\n", - "('Boeotia', 'PERSON')\n", - "('1.24.6', 'CARDINAL')\n", - "('Proconnesus', 'PERSON')\n", - "('Arimaspi', 'PERSON')\n", - "('Issedones', 'NORP')\n", - "('Arimaspi', 'ORG')\n", - "('one', 'CARDINAL')\n", - "('1.24.7', 'CARDINAL')\n", - "('Athena', 'ORG')\n", - "('Medusa', 'ORG')\n", - "('about four', 'CARDINAL')\n", - "('Erichthonius', 'ORG')\n", - "('Hesiod', 'PERSON')\n", - "('first', 'ORDINAL')\n", - "('Pandora', 'PERSON')\n", - "('Hadrian', 'NORP')\n", - "('Apollo', 'ORG')\n", - "('Pheidias', 'PERSON')\n", - "('Attica', 'GPE')\n", - "('three', 'CARDINAL')\n", - "('Mount Sipylus', 'LOC')\n", - "('third', 'ORDINAL')\n", - "('1.25.1', 'CARDINAL')\n", - "('the Athenian Acropolis', 'LOC')\n", - "('Pericles', 'GPE')\n", - "('Xanthippus', 'ORG')\n", - "('one', 'CARDINAL')\n", - "('Xanthippus', 'ORG')\n", - "('Persians', 'NORP')\n", - "('Pericles', 'ORG')\n", - "('Xanthippus', 'ORG')\n", - "('Anacreon of Teos', 'WORK_OF_ART')\n", - "('first', 'ORDINAL')\n", - "('Sappho of Lesbos', 'PERSON')\n", - "('two', 'CARDINAL')\n", - "('Io', 'LOC')\n", - "('Inachus', 'PERSON')\n", - "('Callisto', 'ORG')\n", - "('Lycaon', 'GPE')\n", - "('Zeus', 'PERSON')\n", - "('Hera', 'PERSON')\n", - "('Io', 'LOC')\n", - "('Callisto', 'PRODUCT')\n", - "('1.25.2', 'CARDINAL')\n", - "('Thrace', 'PERSON')\n", - "('Pallene', 'ORG')\n", - "('Athenians', 'NORP')\n", - "('Amazons', 'ORG')\n", - "('Persians', 'NORP')\n", - "('Marathon', 'FAC')\n", - "('Gauls', 'PERSON')\n", - "('about two', 'CARDINAL')\n", - "('Attalus', 'ORG')\n", - "('Olympiodorus', 'PERSON')\n", - "('the days', 'DATE')\n", - "('ATHENS', 'GPE')\n", - "('1.25.3', 'CARDINAL')\n", - "('Greeks', 'NORP')\n", - "('Macedon', 'GPE')\n", - "('Philip', 'PERSON')\n", - "('Athens', 'GPE')\n", - "('Athenians', 'NORP')\n", - "('Philip', 'PERSON')\n", - "('Alexander', 'PERSON')\n", - "('Alexander', 'PERSON')\n", - "('Macedonians', 'NORP')\n", - "('Aridaeus', 'ORG')\n", - "('Antipater', 'PERSON')\n", - "('Athenians', 'NORP')\n", - "('Greece', 'GPE')\n", - "('Macedonians', 'NORP')\n", - "('1.25.4', 'CARDINAL')\n", - "('Peloponnesians', 'NORP')\n", - "('Argos', 'ORG')\n", - "('Troezen', 'ORG')\n", - "('Eleans', 'NORP')\n", - "('Phliasians', 'NORP')\n", - "('Messene', 'PERSON')\n", - "('Corinthian', 'NORP')\n", - "('Locrians', 'NORP')\n", - "('Phocians', 'NORP')\n", - "('Thessalians', 'ORG')\n", - "('Carystus', 'ORG')\n", - "('Acarnanians', 'NORP')\n", - "('the Aetolian League', 'ORG')\n", - "('Boeotians', 'NORP')\n", - "('Thebaid', 'PERSON')\n", - "('Thebans', 'NORP')\n", - "('Athenians', 'NORP')\n", - "('Thebes', 'PERSON')\n", - "('Macedonian', 'NORP')\n", - "('1.25.5', 'CARDINAL')\n", - "('the Athenian Leosthenes', 'ORG')\n", - "('Greece', 'GPE')\n", - "('Greeks', 'NORP')\n", - "('Darius', 'PERSON')\n", - "('Alexander', 'PERSON')\n", - "('Persia', 'GPE')\n", - "('Leosthenes', 'ORG')\n", - "('Europe', 'LOC')\n", - "('Macedonian', 'NORP')\n", - "('Athenians', 'NORP')\n", - "('Munychia', 'PERSON')\n", - "('Peiraeus', 'PERSON')\n", - "('1.25.6', 'CARDINAL')\n", - "('Epeirus', 'ORG')\n", - "('Aridaeus', 'ORG')\n", - "('Cassander', 'PRODUCT')\n", - "('Cassander', 'PRODUCT')\n", - "('Athenians', 'NORP')\n", - "('Panactum', 'GPE')\n", - "('Attica', 'GPE')\n", - "('Salamis', 'PRODUCT')\n", - "('Athens Demetrius', 'GPE')\n", - "('Phanostratus', 'ORG')\n", - "('Demetrius', 'PERSON')\n", - "('Antigonus', 'LOC')\n", - "('Greek', 'NORP')\n", - "('1.25.7', 'CARDINAL')\n", - "('Cassander', 'PRODUCT')\n", - "('Athenians', 'NORP')\n", - "('Lachares', 'PERSON')\n", - "('Antigonus', 'LOC')\n", - "('Athenian', 'NORP')\n", - "('Lachares', 'PERSON')\n", - "('Boeotia', 'PERSON')\n", - "('Lachares', 'PERSON')\n", - "('Acropolis', 'LOC')\n", - "('Athena', 'ORG')\n", - "('1.25.8', 'CARDINAL')\n", - "('Coronea', 'GPE')\n", - "('Athenians', 'NORP')\n", - "('Demetrius', 'PERSON')\n", - "('Antigonus', 'LOC')\n", - "('Peiraeus', 'PERSON')\n", - "('Lachares', 'PERSON')\n", - "('Acropolis', 'NORP')\n", - "('Musaeus', 'PERSON')\n", - "('Syrian', 'NORP')\n", - "('Demetrius', 'PERSON')\n", - "('1.26.1', 'CARDINAL')\n", - "('Athens', 'GPE')\n", - "('Macedonians,80', 'PRODUCT')\n", - "('Macedonians', 'NORP')\n", - "('Museum', 'ORG')\n", - "('1.26.2', 'CARDINAL')\n", - "('Athens', 'GPE')\n", - "('Macedonians', 'NORP')\n", - "('Athenians', 'NORP')\n", - "('Leocritus', 'ORG')\n", - "('Protarchus', 'NORP')\n", - "('first', 'ORDINAL')\n", - "('first', 'ORDINAL')\n", - "('Athenians', 'NORP')\n", - "('Zeus of Freedom', 'ORG')\n", - "('Leocritus', 'ORG')\n", - "('1.26.3', 'CARDINAL')\n", - "('Olympiodorus', 'GPE')\n", - "('Peiraeus', 'PERSON')\n", - "('Munychia', 'PERSON')\n", - "('Macedonians', 'NORP')\n", - "('Eleusis', 'PERSON')\n", - "('Eleusinians', 'NORP')\n", - "('Cassander', 'PERSON')\n", - "('Attica', 'GPE')\n", - "('Aetolia', 'PERSON')\n", - "('Aetolians', 'GPE')\n", - "('Athenians', 'NORP')\n", - "('Cassander', 'PRODUCT')\n", - "('Athens', 'GPE')\n", - "('Acropolis', 'LOC')\n", - "('Eleusis', 'ORG')\n", - "('Phocians', 'NORP')\n", - "('Elatea', 'ORG')\n", - "('Delphi', 'ORG')\n", - "('Cassander', 'PRODUCT')\n", - "('1.26.4', 'CARDINAL')\n", - "('Artemis surnamed Leucophryne', 'ORG')\n", - "('Themistocles', 'ORG')\n", - "('Magnesians', 'NORP')\n", - "('Artemis Leucophryne', 'ORG')\n", - "('Greece', 'GPE')\n", - "('Athenian', 'NORP')\n", - "('Daedalus', 'PRODUCT')\n", - "('Daedalus', 'PERSON')\n", - "('Calos', 'PERSON')\n", - "('Crete', 'GPE')\n", - "('Athena', 'ORG')\n", - "('Callias', 'NORP')\n", - "('Endoeus', 'PERSON')\n", - "('1.26.5', 'CARDINAL')\n", - "('Erechtheum', 'GPE')\n", - "('Zeus', 'PERSON')\n", - "('Poseidon', 'GPE')\n", - "('Erechtheus', 'ORG')\n", - "('second', 'ORDINAL')\n", - "('Butes', 'PERSON')\n", - "('third', 'ORDINAL')\n", - "('Hephaestus', 'ORG')\n", - "('Butadae', 'PERSON')\n", - "('Aphrodisias', 'GPE')\n", - "('Caria', 'GPE')\n", - "('Poseidon', 'ORG')\n", - "('1.26.6', 'CARDINAL')\n", - "('Athena', 'ORG')\n", - "('Athena', 'ORG')\n", - "('all many years', 'DATE')\n", - "('Athena', 'ORG')\n", - "('Acropolis', 'NORP')\n", - "('early days', 'DATE')\n", - "('Polis', 'NORP')\n", - "('the same day next year', 'DATE')\n", - "('Carpasian', 'NORP')\n", - "('Callimachus', 'PERSON')\n", - "('first', 'ORDINAL')\n", - "('first', 'ORDINAL')\n", - "('Refiner of Art', 'ORG')\n", - "('1.27.1', 'CARDINAL')\n", - "('Athena Polias', 'ORG')\n", - "('Hermes', 'ORG')\n", - "('Cecrops', 'PERSON')\n", - "('Daedalus', 'PERSON')\n", - "('Persian', 'NORP')\n", - "('Masistius', 'ORG')\n", - "('Plataea,84', 'LAW')\n", - "('Mardonius', 'ORG')\n", - "('Athenian', 'NORP')\n", - "('Mardonius', 'ORG')\n", - "('Lacedaemonians', 'NORP')\n", - "('Spartan', 'GPE')\n", - "('Athenians', 'NORP')\n", - "('Lacedaemonians', 'NORP')\n", - "('1.27.2', 'CARDINAL')\n", - "('Persians', 'NORP')\n", - "('Athens', 'GPE')\n", - "('the very day', 'DATE')\n", - "('two', 'CARDINAL')\n", - "('Athena', 'ORG')\n", - "('Pandrosus', 'GPE')\n", - "('1.27.3', 'CARDINAL')\n", - "('Two', 'CARDINAL')\n", - "('Athena Polias', 'ORG')\n", - "('Athenians', 'NORP')\n", - "('the Sacred Offerings', 'ORG')\n", - "('night', 'TIME')\n", - "('Athena', 'ORG')\n", - "('Aphrodite', 'PERSON')\n", - "('Acropolis', 'NORP')\n", - "('1.27.4', 'CARDINAL')\n", - "('Athena', 'ORG')\n", - "('Lysimache', 'PERSON')\n", - "('one', 'CARDINAL')\n", - "('Erechtheus', 'ORG')\n", - "('Eumolpus', 'NORP')\n", - "('Athenians', 'NORP')\n", - "('Erechtheus', 'PERSON')\n", - "('Immaradus', 'GPE')\n", - "('Eumolpus', 'GPE')\n", - "('1.27.5', 'CARDINAL')\n", - "('Theaenetus', 'ORG')\n", - "('Tolmides', 'PERSON')\n", - "('Tolmides', 'PERSON')\n", - "('Athenian', 'NORP')\n", - "('Peloponnesians', 'NORP')\n", - "('Gythium', 'ORG')\n", - "('Boeae', 'PERSON')\n", - "('Cythera', 'ORG')\n", - "('Sicyonia', 'ORG')\n", - "('Athens', 'GPE')\n", - "('Athenian', 'NORP')\n", - "('Euboea and Naxos', 'WORK_OF_ART')\n", - "('Boeotia', 'PERSON')\n", - "('Chaeronea', 'GPE')\n", - "('Haliartus', 'ORG')\n", - "('worsted.85 Such', 'FAC')\n", - "('Tolmides', 'PERSON')\n", - "('1.27.6', 'CARDINAL')\n", - "('Athena', 'ORG')\n", - "('Athenians', 'NORP')\n", - "('King', 'PERSON')\n", - "('Calydonian', 'NORP')\n", - "('Cycnus', 'GPE')\n", - "('Heracles', 'PERSON')\n", - "('Cycnus', 'GPE')\n", - "('Lycus', 'GPE')\n", - "('Thracian', 'NORP')\n", - "('Peneius', 'PERSON')\n", - "('Heracles', 'PERSON')\n", - "('1.27.7', 'CARDINAL')\n", - "('One', 'CARDINAL')\n", - "('Troezenian', 'NORP')\n", - "('Theseus', 'PERSON')\n", - "('Heracles', 'PERSON')\n", - "('Pittheus', 'PERSON')\n", - "('Troezen', 'ORG')\n", - "('Troezenian', 'NORP')\n", - "('Theseus', 'PERSON')\n", - "('about seven years of age', 'DATE')\n", - "('Theseus', 'PERSON')\n", - "('1.27.8', 'CARDINAL')\n", - "('first', 'ORDINAL')\n", - "('Troezenian', 'NORP')\n", - "('Theseus', 'PERSON')\n", - "('Aegeus', 'PERSON')\n", - "('Athens', 'GPE')\n", - "('Theseus', 'PERSON')\n", - "('sixteen years old', 'DATE')\n", - "('Aegeus', 'PERSON')\n", - "('Acropolis', 'NORP')\n", - "('1.27.9', 'CARDINAL')\n", - "('Theseus', 'PERSON')\n", - "('Cretans', 'ORG')\n", - "('Tethris', 'PRODUCT')\n", - "('the days of old', 'DATE')\n", - "('Nemean', 'NORP')\n", - "('Parnassus', 'PERSON')\n", - "('Greece', 'GPE')\n", - "('Calydon', 'GPE')\n", - "('Crommyon', 'ORG')\n", - "('Corinth', 'GPE')\n", - "('Cretans', 'ORG')\n", - "('Poseidon', 'ORG')\n", - "('Minos', 'ORG')\n", - "('the Greek Sea', 'LOC')\n", - "('Poseidon', 'PERSON')\n", - "('1.27.10', 'CARDINAL')\n", - "('Crete', 'GPE')\n", - "('Peloponnesus', 'PERSON')\n", - "('Heracles', 'PERSON')\n", - "('Argive', 'PERSON')\n", - "('Corinth', 'GPE')\n", - "('Attica', 'GPE')\n", - "('Attic', 'NORP')\n", - "('Marathon', 'EVENT')\n", - "('Androgeos', 'ORG')\n", - "('Minos', 'ORG')\n", - "('Athens', 'GPE')\n", - "('Athenians', 'NORP')\n", - "('Androgeos', 'ORG')\n", - "('seven', 'CARDINAL')\n", - "('seven', 'CARDINAL')\n", - "('Marathon Theseus', 'FAC')\n", - "('Acropolis', 'LOC')\n", - "('Marathon', 'LOC')\n", - "('Cylon', 'PRODUCT')\n", - "('Olympian', 'PERSON')\n", - "('Theagenes', 'PERSON')\n", - "('Megara', 'PERSON')\n", - "('1.28.2', 'CARDINAL')\n", - "('two', 'CARDINAL')\n", - "('Athenians', 'NORP')\n", - "('first', 'ORDINAL')\n", - "('Athena', 'ORG')\n", - "('Persians', 'NORP')\n", - "('Marathon', 'ORG')\n", - "('Pheidias', 'PERSON')\n", - "('Centaurs', 'PERSON')\n", - "('Lapithae', 'PERSON')\n", - "('Mys,87', 'ORG')\n", - "('Parrhasius', 'PERSON')\n", - "('Evenor', 'GPE')\n", - "('Athena', 'ORG')\n", - "('Athens', 'GPE')\n", - "('Sunium', 'ORG')\n", - "('Boeotians', 'NORP')\n", - "('Chalcidians', 'NORP')\n", - "('two', 'CARDINAL')\n", - "('Pericles', 'GPE')\n", - "('Xanthippus', 'ORG')\n", - "('Pheidias', 'PERSON')\n", - "('Athena', 'ORG')\n", - "('Lemnian', 'PERSON')\n", - "('1.28.3', 'CARDINAL')\n", - "('Acropolis', 'LOC')\n", - "('Cimon', 'ORG')\n", - "('Miltiades', 'PERSON')\n", - "('Pelasgians', 'NORP')\n", - "('Acropolis', 'LOC')\n", - "('Agrolas', 'PERSON')\n", - "('Hyperbius', 'PERSON')\n", - "('Sicilians', 'NORP')\n", - "('Acarnania', 'GPE')\n", - "('ATHENS', 'GPE')\n", - "('1.28.4', 'CARDINAL')\n", - "('Apollo', 'ORG')\n", - "('Apollo', 'ORG')\n", - "('Erechtheus', 'ORG')\n", - "('Persians', 'NORP')\n", - "('Attica Philippides', 'PERSON')\n", - "('Lacedaemon', 'PERSON')\n", - "('Lacedacmonians', 'ORG')\n", - "('Mount Parthenius', 'PERSON')\n", - "('Athenians', 'NORP')\n", - "('1.28.5', 'CARDINAL')\n", - "('the Hill of Ares', 'FAC')\n", - "('Ares', 'PERSON')\n", - "('first', 'ORDINAL')\n", - "('Halirrhothius', 'PERSON')\n", - "('Orestes', 'ORG')\n", - "('Athena Areia', 'ORG')\n", - "('Ruthlessness', 'ORG')\n", - "('Athenians', 'NORP')\n", - "('August', 'DATE')\n", - "('Hesiod', 'PERSON')\n", - "('Theogony89', 'GPE')\n", - "('Erinyes', 'ORG')\n", - "('Furies', 'ORG')\n", - "('Aeschylus', 'PERSON')\n", - "('first', 'ORDINAL')\n", - "('Pluto, Hermes', 'ORG')\n", - "('Earth', 'LOC')\n", - "('the Hill of Ares', 'FAC')\n", - "('1.28.7', 'CARDINAL')\n", - "('Oedipus', 'PERSON')\n", - "('Thebes', 'PERSON')\n", - "('Oedipus', 'PERSON')\n", - "('Oedipus Mecisteus', 'PERSON')\n", - "('Thebes', 'PERSON')\n", - "('1.28.8', 'CARDINAL')\n", - "('Athenians', 'NORP')\n", - "('Parabystum', 'NORP')\n", - "('Triangle', 'ORG')\n", - "('Green Court', 'ORG')\n", - "('Red Court', 'ORG')\n", - "('the present day', 'DATE')\n", - "('Heliaea', 'PERSON')\n", - "('One', 'CARDINAL')\n", - "('At Palladium', 'WORK_OF_ART')\n", - "('first', 'ORDINAL')\n", - "('Troy Diomedes', 'PERSON')\n", - "('night', 'TIME')\n", - "('Phalerum', 'GPE')\n", - "('Argives', 'PERSON')\n", - "('Attica', 'GPE')\n", - "('Argives', 'PERSON')\n", - "('Palladium', 'ORG')\n", - "('Athenian', 'NORP')\n", - "('Whereupon Demophon', 'ORG')\n", - "('Argive', 'PERSON')\n", - "('Delphinium', 'ORG')\n", - "('Theseus', 'PERSON')\n", - "('Pallas', 'PERSON')\n", - "('Theseus', 'PERSON')\n", - "('Court', 'ORG')\n", - "('Prytaneum', 'GPE')\n", - "('Erechtheus', 'PERSON')\n", - "('Athens', 'GPE')\n", - "('first', 'ORDINAL')\n", - "('Zeus Polieus', 'PERSON')\n", - "('year', 'DATE')\n", - "('year', 'DATE')\n", - "('Peiraeus', 'PERSON')\n", - "('Phreattys', 'PERSON')\n", - "('Teucer', 'PERSON')\n", - "('Telamon', 'PERSON')\n", - "('Ajax', 'ORG')\n", - "('ATHENS', 'GPE')\n", - "('1.29.1', 'CARDINAL')\n", - "('XXIX', 'ORG')\n", - "('the Hill of Ares', 'FAC')\n", - "('Panathenaea', 'PERSON')\n", - "('Delos', 'ORG')\n", - "('nine', 'CARDINAL')\n", - "('1.29.2', 'CARDINAL')\n", - "('Athenians', 'NORP')\n", - "('Academy', 'ORG')\n", - "('Artemis', 'ORG')\n", - "('Ariste', 'PERSON')\n", - "('Calliste (Fairest', 'ORG')\n", - "('Pamphos', 'GPE')\n", - "('Artemis', 'ORG')\n", - "('every year', 'DATE')\n", - "('Dionysus Eleuthereus', 'PERSON')\n", - "('1.29.3', 'CARDINAL')\n", - "('first', 'ORDINAL')\n", - "('Thrasybulus', 'ORG')\n", - "('Lycus', 'GPE')\n", - "('Athenians', 'NORP')\n", - "('Thebes', 'PERSON')\n", - "('first', 'ORDINAL')\n", - "('Athenians', 'NORP')\n", - "('first', 'ORDINAL')\n", - "('Pericles', 'GPE')\n", - "('1.29.4', 'CARDINAL')\n", - "('Athenians', 'NORP')\n", - "('Marathon', 'EVENT')\n", - "('Academy', 'ORG')\n", - "('First', 'ORDINAL')\n", - "('Thrace', 'GPE')\n", - "('Drabescus,94', 'NORP')\n", - "('Edonians', 'NORP')\n", - "('1.29.5', 'CARDINAL')\n", - "('Leagrus', 'PERSON')\n", - "('Sophanes', 'ORG')\n", - "('Decelea', 'ORG')\n", - "('Argive', 'PERSON')\n", - "('Nemean', 'FAC')\n", - "('third', 'ORDINAL')\n", - "('Athenians', 'NORP')\n", - "('Greece', 'GPE')\n", - "('Priam', 'PERSON')\n", - "('one', 'CARDINAL')\n", - "('Greeks', 'NORP')\n", - "('Athenians', 'NORP')\n", - "('first', 'ORDINAL')\n", - "('Iolaus', 'ORG')\n", - "('Sardinia', 'GPE')\n", - "('secondly', 'ORDINAL')\n", - "('Ionia', 'GPE')\n", - "('thirdly', 'ORDINAL')\n", - "('Thrace', 'GPE')\n", - "('1.29.6', 'CARDINAL')\n", - "('Melanopus', 'PERSON')\n", - "('Macartatus', 'PERSON')\n", - "('Lacedaemonians', 'NORP')\n", - "('Boeotians', 'NORP')\n", - "('Eleon', 'PERSON')\n", - "('Tanagra', 'ORG')\n", - "('Thessalian', 'NORP')\n", - "('Peloponnesians', 'NORP')\n", - "('Archidamus', 'NORP')\n", - "('Attica', 'GPE')\n", - "('first', 'ORDINAL')\n", - "('Cretan', 'NORP')\n", - "('Athenians', 'NORP')\n", - "('Cleisthenes', 'WORK_OF_ART')\n", - "('Thessalians', 'ORG')\n", - "('Athenians', 'NORP')\n", - "('1.29.7', 'CARDINAL')\n", - "('Cleone', 'ORG')\n", - "('Argives', 'GPE')\n", - "('Argives', 'GPE')\n", - "('Athenians', 'NORP')\n", - "('Aeginetans', 'NORP')\n", - "('Persian', 'NORP')\n", - "('Athenians', 'NORP')\n", - "('Olynthus,99', 'ORG')\n", - "('Melesander', 'ORG')\n", - "('Maeander', 'ORG')\n", - "('1.29.8', 'CARDINAL')\n", - "('Cassander', 'PRODUCT')\n", - "('Argives', 'GPE')\n", - "('Athens', 'GPE')\n", - "('two', 'CARDINAL')\n", - "('Sparta', 'GPE')\n", - "('Helots', 'ORG')\n", - "('Lacedaemonians', 'NORP')\n", - "('Athens', 'GPE')\n", - "('Cimon', 'ORG')\n", - "('Miltiades', 'PERSON')\n", - "('Lacedaemonians', 'NORP')\n", - "('1.29.9', 'CARDINAL')\n", - "('Athenians', 'NORP')\n", - "('Argives', 'GPE')\n", - "('Lacedaemonians', 'NORP')\n", - "('Tanagra,102', 'ORG')\n", - "('Athenians', 'NORP')\n", - "('Boeotians', 'NORP')\n", - "('Lacedaemonians', 'NORP')\n", - "('Argives', 'GPE')\n", - "('Athenians', 'NORP')\n", - "('Argives', 'GPE')\n", - "('night', 'TIME')\n", - "('the next day', 'DATE')\n", - "('Lacedaemonians', 'NORP')\n", - "('Thessalians', 'ORG')\n", - "('Athenians', 'NORP')\n", - "('1.29.10', 'CARDINAL')\n", - "('Apollodorus', 'GPE')\n", - "('Athenian', 'NORP')\n", - "('Arsites', 'PERSON')\n", - "('Phrygia', 'ORG')\n", - "('Hellespont', 'GPE')\n", - "('Perinthians', 'NORP')\n", - "('Philip', 'PERSON')\n", - "('Spintharus', 'GPE')\n", - "('Lachares', 'PERSON')\n", - "('Peiraeus', 'PERSON')\n", - "('Macedonian', 'NORP')\n", - "('Greeks', 'NORP')\n", - "('Lacedaemonians', 'NORP')\n", - "('Corinthians', 'NORP')\n", - "('Athenians', 'NORP')\n", - "('Argives', 'PERSON')\n", - "('Boeotians', 'NORP')\n", - "('Leuctra', 'GPE')\n", - "('Boeotians', 'NORP')\n", - "('Corinth', 'GPE')\n", - "('Euboea and Chios,107', 'WORK_OF_ART')\n", + "('Arsinoe', 'PERSON')\n" + ] + } + ], + "source": [ + "# We're running these lines in a separate cell so that we don't\n", + "# need to run the full analysis each time we inspect the results.\n", + "\n", + "ents = [(e.text, e.label_) for e in doc.ents \n", + " if e.label_ not in (\"CARDINAL\",\"ORDINAL\")]\n", + "\n", + "for ent in ents:\n", + " print(ent)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "doc.ents[0].start\n", + "# can also do for key words in context (word token, -4, +5)\n", + "# also read documentation/website" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + ":::{note}\n", + "What is the type of the results in `ents`?\n", + ":::{answer}\n", + "e.text, e.label = string\n", + "otherwise \"span objects\"\n", + "touples of strings" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[('Themistocles', 'ORG'),\n", + " ('Megarus', 'PERSON'),\n", + " ('Asia', 'LOC'),\n", + " ('First', 'ORDINAL'),\n", + " ('1.37.7', 'CARDINAL'),\n", + " ('Macedonians', 'NORP'),\n", + " ('Persians', 'NORP'),\n", + " ('Oreithyia', 'PERSON'),\n", + " ('Oceanus', 'GPE'),\n", + " ('1.8.2', 'CARDINAL'),\n", + " ('2.2.5', 'CARDINAL'),\n", + " ('Acestium', 'PERSON'),\n", + " ('Greece', 'GPE'),\n", + " ('Neoptolemus', 'GPE'),\n", + " ('Brauron', 'ORG'),\n", + " ('Lacedaemonian', 'PERSON'),\n", + " ('fourth', 'ORDINAL'),\n", + " ('Leucippus', 'GPE'),\n", + " ('Alexander', 'PERSON'),\n", + " ('Aethiopian', 'NORP')]" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import random\n", + "\n", + "my_ents = random.sample(ents,20)\n", + "\n", + "my_ents" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Looking up coordinates\n", + "\n", + "While these results are far from perfect — \"Hyllus,\" at least in my practice runs, was classified as a \"PRODUCT\" rather than a \"PERSON\" — they're fairly useful in broad strokes for our purposes.\n", + "\n", + "But we still need to add coordinates, and we have over 4000 entities to link. How can we go about doing this scalably?\n", + "\n", + "## Build a search tool\n", + "\n", + "All of the data we need is available through [Pleiades](https://pleiades.stoa.org) and [ToposText](https://topostext.org), but the strings that are labeled by our NER model might not match the titles of places available from these sources. We could build a search index that lets us match titles mor flexibly, but that is beyond the scope of our work for today.\n", + "\n", + "## Annotate by hand\n", + "\n", + "Instead, working in groups, choose about **20** places from the NER list that you would like to map. You could even pull them out randomly, if you'd like.\n", + "\n", + "Then, using Pleiades's own search tool, find the coordinates for each location. Store this data, along with any contextual information or descriptions that you deem relevant, in a CSV or spreadsheet that you can upload to ArcGIS.\n", + "\n", + ":::{note}\n", + "Can you also include a `count` parameter for how often each place is mentioned in Book 1?\n", + ":::\n", + "\n", + "If you find that your group is working particularly quickly, grab another 10 placenames, or experiment with mapping specific sections of Pausanias' text." + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "import spacy\n", + "from spacy import displacy\n", + "\n", + "nlp = spacy.load(\"en_core_web_md\")\n", + "\n", + "doc = nlp(\"\"\"\n", + "\n", + "PTOLEMY THE GREAT (HISTORY)\n", + "\n", + "[1.6.1] VI. But as to the history of Attalus and Ptolemy, it is more ancient in point of time, so that tradition no longer remains, and those who lived with these kings for the purpose of chronicling their deeds fell into neglect even before tradition failed. Where fore it occurred to me to narrate their deeds also, and how the sovereignty of Egypt, of the Mysians and of the neighboring peoples fell into the hands of their fathers.\n", + "\n", + "[1.6.2] 27 The Macedonians consider Ptolemy to be the son of Philip, the son of Amyntas, though putatively the son of Lagus, asserting that his mother was with child when she was married to Lagus by Philip. And among the distinguished acts of Ptolemy in Asia they mention that it was he who, of Alexander's companions, was foremost in succoring him when in danger among the Oxydracae. After the death of Alexander,28 by withstanding those who would have conferred all his empire upon Aridaeus, the son of Philip, he became chiefly responsible for the division of the various nations into the kingdoms.\n", + "\n", + "[1.6.3] He crossed over to Egypt in person, and killed Cleomenes, whom Alexander had appointed satrap of that country, considering him a friend of Perdiccas, and therefore not faithful to himself; and the Macedonians who had been entrusted with the task of carrying the corpse of Alexander to Aegae, he persuaded to hand it over to him. And he proceeded to bury it with Macedonian rites in Memphis, but, knowing that Perdiccas would make war, he kept Egypt garrisoned. And Perdiccas took Aridaeus, son of Philip, and the boy Alexander, whom Roxana, daughter of Oxyartes, had borne to Alexander, to lend color to the campaign, but really he was plotting to take from Ptolemy his kingdom in Egypt. But being expelled from Egypt, and having lost his reputation as a soldier, and being in other respects unpopular with the Macedonians, he was put to death by his body guard.\n", + "\n", + "[1.6.4] The death of Perdiccas immediately raised Ptolemy to power, who both reduced the Syrians and Phoenicia, and also welcomed Seleucus, son of Antiochus, who was in exile, having been expelled by Antigonus; he further himself prepared to attack Antigonus. He prevailed on Cassander, son of Anti pater, and Lysimachus, who was king in Thrace, to join in the war, urging that Seleucus was in exile and that the growth of the power of Antigonus was dangerous to them all.\n", + "\n", + "[1.6.5] For a time Antigonus pre pared for war, and was by no means confident of the issue; but on learning that the revolt of Cyrene had called Ptolemy to Libya, he immediately reduced the Syrians and Phoenicians by a sudden inroad, handed them over to Demetrius, his son, a man who for all his youth had already a reputation for good sense, and went down to the Hellespont. But he led his army back without crossing, on hearing that Demetrius had been overcome by Ptolemy in battle. But Demetrius had not altogether evacuated the country before Ptolemy, and having surprised a body of Egyptians, killed a few of them. Then on the arrival of Antigonus Ptolemy did not wait for him but returned to Egypt.\n", + "\n", + "[1.6.6] When the winter was over, Demetrius sailed to Cyprus and overcame in a naval action Menelaus, the satrap of Ptolemy, and afterwards Ptolemy him self, who had crossed to bring help. Ptolemy fled to Egypt, where he was besieged by Antigonus on land and by Demetrius with a fleet. In spite of his extreme peril Ptolemy saved his empire by making a stand with an army at Pelusium while offering resistance with warships from the river. Antigonus now abandoned all hope of reducing Egypt in the circumstances, and dispatched Demetrius against the Rhodians with a fleet and a large army, hoping, if the island were won, to use it as a base against the Egyptians. But the Rhodians displayed daring and ingenuity in the face of the besiegers, while Ptolemy helped them with all the forces he could muster.\n", + "\n", + "[1.6.7] Antigonus thus failed to reduce Egypt or, later, Rhodes, and shortly afterwards he offered battle to Lysimachus, and to Cassander and the army of Seleucus, lost most of his forces, and was himself killed, having suffered most by reason of the length of the war with Eumenes. Of the kings who put down Antigonus I hold that the most wicked was Cassander, who although he had recovered the throne of Macedonia with the aid of Antigonus, nevertheless came to fight against a benefactor.\n", + "\n", + "[1.6.8] After the death of Antigonus, Ptolemy again reduced the Syrians and Cyprus, and also restored Pyrrhus to Thesprotia on the mainland. Cyrene rebelled; but Magas, the son of Berenice (who was at this time married to Ptolemy) captured Cyrene in the fifth year of the rebellion. If this Ptolemy really was the son of Philip, son of Amyntas, he must have inherited from his father his passion for women, for, while wedded to Eurydice, the daughter of Antipater, although he had children he took a fancy to Berenice, whom Antipater had sent to Egypt with Eurydice. He fell in love with this woman and had children by her, and when his end drew near he left the kingdom of Egypt to Ptolemy (from whom the Athenians name their tribe) being the son of Berenice and not of the daughter of Antipater.\n", + "\n", + "[1.7.1] VII. This Ptolemy fell in love with Arsinoe, his full sister, and married her, violating herein Macedonian custom, but following that of his Egyptian subjects. Secondly he put to death his brother Argaeus, who was, it is said, plotting against him; and he it was who brought down from Memphis the corpse of Alexander. He put to death another brother also, son of Eurydice, on discovering that he was creating disaffection among the Cyprians. Then Magas, the half-brother of Ptolemy, who had been entrusted with the governorship of Cyrene by his mother Berenice--she had borne him to Philip, a Macedonians but of no note and of lowly origin--induced the people of Cyrene to revolt from Ptolemy and marched against Egypt.\n", + "\n", + "[1.7.2] Ptolemy fortified the entrance into Egypt and awaited the attack of the Cyrenians. But while on the march Magas was in formed that the Marmaridae,a tribe of Libyan nomads, had revolted, and thereupon fell back upon Cyrene. Ptolemy resolved to pursue, but was checked owing to the following circumstance. When he was preparing to meet the attack of Magas, he engaged mercenaries, including some four thousand Gauls. Discovering that they were plotting to seize Egypt, he led them through the river to a deserted island. There they perished at one another's hands or by famine.\n", + "\n", + "[1.7.3] Magas, who was married to Apame, daughter of Antiochus, son of Seleucus, persuaded Antiochus to break the treaty which his father Seleucus had made with Ptolemy and to attack Egypt. When Antiochus resolved to attack, Ptolemy dispatched forces against all the subjects of Antiochus, freebooters to overrun the lands of the weaker, and an army to hold back the stronger, so that Antiochus never had an opportunity of attacking Egypt. I have already stated how this Ptolemy sent a fleet to help the Athenians against Antigonus and the Macedonians, but it did very little to save Athens. His children were by Arsinoe, not his sister, but the daughter of Lysimachus. His sister who had wedded him happened to die before this, leaving no issue, and there is in Egypt a district called Arsinoites after her.\n", + "\n", + "[1.8.1] VIII. It is pertinent to add here an account of Attalus, because he too is one of the Athenian eponymoi. A Macedonian of the name of Docimus, a general of Antigonus, who afterwards surrendered both himself and his property to Lysimachus, had a Paphlagonian eunuch called Philetaerus. All that Philetaerus did to further the revolt from Lysimachus, and how he won over Seleucus, will form an episode in my account of Lysimachus. Attalus, however, son of Attalus and nephew of Philetaerus, received the kingdom from his cousin Eumenes, who handed it over. The greatest of his achievements was his forcing the Gauls to retire from the sea into the country which they still hold.\n", + "\n", + "[1.8.2] After the statues of the eponymoi come statues of gods, Amphiaraus, and Eirene (Peace) carrying the boy Plutus (Wealth). Here stands a bronze figure of Lycurgus,29 son of Lycophron, and of Callias, who, as most of the Athenians say, brought about the peace between the Greeks and Artaxerxes, son of Xerxes.30 Here also is Demosthenes, whom the Athenians forced to retire to Calauria, the island off Troezen, and then, after receiving him back, banished again after the disaster at Lamia.\n", + "\n", + "[1.8.3] Exiled for the second time31 Demosthenes crossed once more to Calauria, and committed suicide there by taking poison, being the only Greek exile whom Archias failed to bring back to Antipater and the Macedonians. This Archias was a Thurian who undertook the abominable task of bringing to Antipater for punishment those who had opposed the Macedonians before the Greeks met with their defeat in Thessaly. Such was Demosthenes' reward for his great devotion to Athens. I heartily agree with the remark that no man who has unsparingly thrown himself into politics trusting in the loyalty of the democracy has ever met with a happy death.\n", + "\n", + "[1.8.4] Near the statue of Demosthenes is a sanctuary of Ares, where are placed two images of Aphrodite, one of Ares made by Alcamenes, and one of Athena made by a Parian of the name of Locrus. There is also an image of Enyo, made by the sons of Praxiteles. About the temple stand images of Heracles, Theseus, Apollo binding his hair with a fillet, and statues of Calades,32 who it is said framed laws33 for the Athenians, and of Pindar, the statue being one of the rewards the Athenians gave him for praising them in an ode.\n", + "\n", + "[1.8.5] Hard by stand statues of Harmodius and Aristogiton, who killed Hipparchus.34 The reason of this act and the method of its execution have been related by others; of the figures some were made by Critius,35 the old ones being the work of Antenor. When Xerxes took Athens after the Athenians had abandoned the city he took away these statues also among the spoils, but they were afterwards restored to the Athenians by Antiochus.\n", + "\n", + "[1.8.6] Before the entrance of the theater which they call the Odeum (Music Hall) are statues of Egyptian kings. They are all alike called Ptolemy, but each has his own surname. For they call one Philometor, and another Philadelphus, while the son of Lagus is called Soter, a name given him by the Rhodians. Of these, Philadelphus is he whom I have mentioned before among the eponymoi, and near him is a statue of his sister Arsinoe.\n", + "\n", + " PTOLEMY PHILOMETOR OF EGYPT (HISTORY)\n", + "\n", + "[1.9.1] IX. The one called Philometor is eighth in descent from Ptolemy son of Lagus, and his surname was given him in sarcastic mockery, for we know of none of the kings who was so hated by his mother. Although he was the eldest of her children she would not allow him to be called to the throne, but prevailed on his father before the call came to send him to Cyprus. Among the reasons assigned for Cleopatra's enmity towards her son is her expectation that Alexander the younger of her sons would prove more subservient, and this consideration induced her to urge the Egyptians to choose Alexander as king.\n", + "\n", + "[1.9.2] When the people offered opposition, she dispatched Alexander for the second time to Cyprus, ostensibly as general, but really because she wished by his means to make Ptolemy more afraid of her. Finally she covered with wounds those eunuchs she thought best disposed, and presented them to the people, making out that she was the victim of Ptolemy's machinations, and that he had treated the eunuchs in such a fashion. The people of Alexandria rushed to kill Ptolemy, and when he escaped on board a ship, made Alexander, who returned from Cyprus, their king.\n", + "\n", + "[1.9.3] Retribution for the exile of Ptolemy came upon Cleopatra, for she was put to death by Alexander, whom she herself had made to be king of the Egyptians. When the deed was discovered, and Alexander fled in fear of the citizens, Ptolemy returned and for the second time assumed control of Egypt. He made war against the Thebans, who had revolted, reduced them two years after the revolt, and treated them so cruelly that they were left not even a memorial of their former prosperity, which had so grown that they surpassed in wealth the richest of the Greeks, the sanctuary of Delphi and the Orchomenians. Shortly after this Ptolemy met with his appointed fate, and the Athenians, who had been benefited by him in many ways which I need not stop to relate, set up a bronze likeness of him and of Berenice, his only legitimate child.\n", + "\n", + "LYSIMACHUS OF MACEDONIA (HISTORY)\n", + "\n", + "[1.9.4] After the Egyptians come statues of Philip and of his son Alexander. The events of their lives were too important to form a mere digression in another story. Now the Egyptians had their honors bestowed upon them out of genuine respect and because they were benefactors, but it was rather the sycophancy of the people that gave them to Philip and Alexander, since they set up a statue to Lysimachus also not so much out of goodwill as because they thought to serve their immediate ends.\n", + "\n", + "[1.9.5] This Lysimachus was a Macedonian by birth and one of Alexander's body-guards, whom Alexander once in anger shut up in a chamber with a lion, and afterwards found that he had overpowered the brute. Henceforth he always treated him with respect, and honored him as much as the noblest Macedonians. After the death of Alexander, Lysimachus ruled such of the Thracians, who are neighbors of the Macedonians, as had been under the sway of Alexander and before him of Philip. These would comprise but a small part of Thrace. If race be compared with race no nation of men except the Celts are more numerous than the Thracians taken all together, and for this reason no one before the Romans reduced the whole Thracian population. But the Romans have subdued all Thrace, and they also hold such Celtic territory as is worth possessing, but they have intentionally overlooked the parts that they consider useless through excessive cold or barrenness.\n", + "\n", + "[1.9.6] Then Lysimachus made war against his neighbours, first the Odrysae, secondly the Getae and Dromichaetes. Engaging with men not unversed in warfare and far his superiors in number, he himself escaped from a position of extreme danger, but his son Agathocles, who was serving with him then for the first time, was taken prisoner by the Getae. Lysimachus met with other reverses afterwards, and attaching great importance to the capture of his son made peace with Dromicliaetes, yielding to the Getic king the parts of his empire beyond the Ister, and, chiefly under compulsion, giving him his daughter in marriage. Others say that not Agathocles but Lysimachus himself was taken prisoner, regaining his liberty when Agathocles treated with the Getic king on his behalf. On his return he married to Agathocles Lysandra, the daughter of Ptolemy, son of Lagus, and of Eurydice.\n", + "\n", + "[1.9.7] He also crossed with a fleet to Asia and helped to overthrow the empire of Antigonus.36 He founded also the modern city of Ephesus as far as the coast, bringing to it as settlers people of Lebedos and Colophon, after destroying their cities, so that the iambic poet Phoenix com posed a lament for the capture of Colophon. Mermesianax, the elegiac writer, was, I think, no longer living, otherwise he too would certainly have been moved by the taking of Colophon to write a dirge. Lysimachus also went to war with Pyrrhus, son of Aeacides. Waiting for his departure from Epeirus (Pyrrhus was of a very roving disposition) he ravaged Epeirus until he reached the royal tombs.\n", + "\n", + "[1.9.8] The next part of the story is incredible to me, but Hieronymus the Cardian37 relates that he destroyed the tombs and cast out the bones of the dead. But this Hieronymus has a reputation generally of being biased against all the kings except Antigonus, and of being unfairly partial towards him. As to the treatment of the Epeirot graves, it is perfectly plain that it was malice that made him record that a Macedonian desecrated the tombs of the dead. Besides, Lysimachus was surely aware that they were the ancestors not of Pyrrhus only but also of Alexander. In fact Alexander was an Epeirot and an Aeacid on his mother's side, and the subsequent alliance between Pyrrhus and Lysimachus proves that even as enemies they were not irreconcilable. Possibly Hieronymus had grievances against Lysimachus, especially his destroying the city of the Cardians and founding Lysimachea in its stead on the isthmus of the Thracian Chersonesus.\n", + "\n", + "[1.10.1] X. As long as Aridaeus reigned, and after him Cassander and his sons, friendly relations continued between Lysimachus and Macedon. But when the kingdom devolved upon Demetrius, son of Antigonus, Lysimachus, henceforth expecting that war would be declared upon him by Demetrius, resolved to take aggressive action. He was aware that Demetrius inherited a tendency to aggrandise, and he also knew that he visited Macedonia at the summons of Alexander and Cassander, and on his arrival murdered Alexander himself38 and ruled the Macedonians in his stead.\n", + "\n", + "[1.10.2] Therefore encountering Demetrius at Amphipolis he came near to being expelled from Thrace,39 but on Pyrrhus' coming to his aid he mastered Thrace and afterwards extended his empire at the expense of the Nestians and Macedonians. The greater part of Macedonia was under the control of Pyrrhus himself, who came from Epeirus with an army and was at that time on friendly terms with Lysimachus. When however Demetrius crossed over into Asia and made war on Seleucus, the alliance between Pyrrhus and Lysimachus lasted only as long as Demetrius continued hostilities; when Demetrius submitted to Seleucus, the friendship between Lysimachus and Pyrrhus was broken, and when war broke out Lysimachus fought against Antigonus son of Demetrius and against Pyrrhus himself, had much the better of the struggle, conquered Macedonia and forced Pyrrhus to retreat to Epeirus.\n", + "\n", + "[1.10.3] Love is wont to bring many calamities upon men. Lysimachus, although by this time of mature age and considered happy in respect of his children, and although Agathocles had children by Lysandra, nevertheless married Lysandra's sister Arsinoe. This Arsinoe, fearing for her children, lest on the death of Lysimachus they should fall into the hands of Agathocles, is said for this reason to have plotted against Agathocles. Historians have already related how Arsinoe fell in love with Agathocles, and being unsuccessful they say that she plotted against his life. They say also that Lysimachus discovered later his wife's machinations, but was by this time powerless, having lost all his friends.\n", + "\n", + "[1.10.4] Since Lysimachus, then, overlooked Arsinoe's murder of Agathocles, Lysandra fled to Seleucus, taking with her her children and her brothers, who were taking refuge with Ptolemy and finally adopted this course. They were accompanied on their flight to Seleucus by Alexander who was the son of Lysimachus by an Odrysian woman. So they going up to Babylon entreated Seleucus to make war on Lysimachus. And at the same time Philetaerus, to whom the property of Lysimachus had been entrusted, aggrieved at the death of Agathocles and suspicious of the treatment he would receive at the hands of Arsinoe, seized Pergamus on the Caicus, and sending a herald offered both the property and himself to Seleucus.\n", + "\n", + "[1.10.5] Lysimachus hearing of all these things lost no time in crossing into Asia,40 and assuming the initiative met Seleucus, suffered a severe defeat and was killed. Alexander, his son by the Odrysian woman, after interceding long with Lysandra, won his body and afterwards carried it to the Chersonesus and buried it, where his grave is still to be seen between the village of Cardia and Pactye.\n", + "\n", + "[1.11.1] XI. Such was the history of Lysimachus. The Athenians have also a statue of Pyrrhus. This Pyrrhus was not related to Alexander, except by ancestry. Pyrrhus was son of Aeacides, son of Arybbas, but Alexander was son of Olympias, daughter of Neoptolemus, and the father of Neoptolemus and Aryblas was Alcetas, son of Tharypus. And from Tharypus to Pyrrhus, son of Achilles, are fifteen generations. Now Pyrrhus was the first who after the capture of Troy disdained to return to Thessaly, but sailing to Epeirus dwelt there because of the oracles of Helenus. By Hermione Pyrrhus had no child, but by Andromache he had Molossus, Pielus, and Pergamus, who was the youngest. Helenus also had a son, Cestrinus, being married to Andromache after the murder of Pyrrhus at Delphi.\n", + "\n", + "[1.11.2] Helenus on his death passed on the kingdom to Molossus, son of Pyrrhus, so that Cestrinus with volunteers from the Epeirots took possession of the region beyond the river Thyamis, while Pergamus crossed into Asia and killed Areius, despot in Teuthrania, who fought with him in single combat for his kingdom, and gave his name to the city which is still called after him. To Andromache, who accompanied him, there is still a shrine in the city. Pielus remained behind in Epeirus, and to him as ancestor Pyrrhus, the son of Aeacides, and his fathers traced their descent, and not to Molossus.\n", + "\n", + "PYRRHUS OF MACEDONIA (HISTORY)\n", + "\n", + "[1.11.3] Down to Alcetas, son of Tharypus, Epeirus too was under one king. But the sons of Alcetas after a quarrel agreed to rule with equal authority, remaining faithful to their compact; and afterwards, when Alexander, son of Neoptolemus, died among the Leucani, and Olympias returned to Epeirus through fear of Antipater, Aeacides, son of Arybbas, continued in allegiance to Olympias and joined in her campaign against Aridaeus and the Macedonians, although the Epeirots refused to accompany him.\n", + "\n", + "[1.11.4] Olympias on her victory behaved wickedly in the matter of the death of Aridaeus, and much more wickedly to certain Macedonians, and for this reason was considered to have deserved her subsequent treatment at the hands of Cassander; so Aeacides at first was not received even by the Epeirots because of their hatred of Olympias, and when after wards they forgave him, his return to Epeirus was next opposed by Cassander. When a battle occurred at Oeneadae between Philip, brother of Cassander, and Aeacides, Aeacides was wounded and shortly after met his fate.41\n", + "\n", + "[1.11.5] The Epeirots accepted Alcetas as their king, being the son of Arybbas and the elder brother of Aeacides, but of an uncontrollable temper and on this account banished by his father. Immediately on his arrival he began to vent his fury on the Epeirots, until they rose up and put him and his children to death at night. After killing him they brought back Pyrrhus, son of Aeacides. No sooner had he arrived than Cassander made war upon him, while he was young in years and before he had consolidated his empire. When the Macedonians attacked him, Pyrrhus went to Ptolemy, son of Lagus, in Egypt. Ptolemy gave him to wife the half-sister of his children, and restored him by an Egyptian force.\n", + "\n", + "[1.11.6] The first Greeks that Pyrrhus attacked on becoming king were the Corcyraeans. He saw that the island lay off his own territory, and he did not wish others to have a base from which to attack him. My account of Lysimachus has already related how he fared, after taking Corcyra, in his war with Lysimachus, how he expelled Demetrius and ruled Macedonia until he was in turn expelled by Lysimachus, the most important of his achievements until he waged war against the Romans,\n", + "\n", + "[1.11.7] being the first Greek we know of to do so. For no further battle, it is said, took place between Aeneas and Diomedes with his Argives. One of the many ambitions of the Athenians was to reduce all Italy, but the disaster at Syracuse42 prevented their trying conclusions with the Romans. Alexander, son of Neoptolemus, of the same family as Pyrrhus but older, died among the Leucani before he could meet the Romans in battle.\n", + "\n", + "[1.12.1] XII. So Pyrrhus was the first to cross the Ionian Sea from Greece to attack the Romans.43 And even he crossed on the invitation of the Tarentines. For they were already involved in a war with the Romans, but were no match for them unaided. Pyrrhus was already in their debt, because they had sent a fleet to help him in his war with Corcyra, but the most cogent arguments of the Tarentine envoys were their accounts of Italy, how its prosperity was equal to that of the whole of Greece, and their plea that it was wicked to dismiss them when they had come as friends and suppliants in their hour of need. When the envoys urged these considerations, Pyrrhus remembered the capture of Troy, which he took to be an omen of his success in the war, as he was a descendant of Achilles making war upon a colony of Trojans.\n", + "\n", + "[1.12.2] Pleased with this proposal, and being a man who never lost time when once he had made up his mind, he immediately proceeded to man war ships and to prepare transports to carry horses and men-at-arms. There are books written by men of no renown as historians, entitled “Memoirs.” When I read these I marvelled greatly both at the personal bravery of Pyrrhus in battle, and also at the forethought he displayed whenever a contest was imminent. So on this occasion also when crossing to Italy with a fleet he eluded the observation of the Romans, and for some time after his arrival they were unaware of his presence; it was only when the Romans made an attack upon the Tarentines that he appeared on the scene with his army, and his unexpected assault naturally threw his enemies into confusion.\n", + "\n", + "[1.12.3] And being perfectly aware that he was no match for the Romans, he prepared to let loose against them his elephants. The first European to acquire elephants was Alexander, after subduing Porus and the power of the Indians; after his death others of the kings got them but Antigonus more than any; Pyrrhus captured his beasts in the battle with Demetrius. When on this occasion they came in sight the Romans were seized with panic, and did not believe they were animals.\n", + "\n", + "[1.12.4] For although the use of ivory in arts and crafts all men obviously have known from of old, the actual beasts, before the Macedonians crossed into Asia, nobody had seen at all except the Indians themselves, the Libyans, and their neighbours. This is proved by Homer, who describes the couches and houses of the more prosperous kings as ornamented with ivory, but never mentions the beast; but if he had seen or heard about it he would, in my opinion have been much more likely to speak of it than of the battle between the Dwarf-men and cranes.44\n", + "\n", + "[1.12.5] Pyrrhus was brought over to Sicily by an embassy of the Syracusans. The Carthaginians had crossed over and were destroying the Greek cities, and had sat down to invest Syracuse, the only one now remaining. When Pyrrhus heard this from the envoys he abandoned Tarentum and the Italiots on the coast, and crossing into Sicily forced the Carthaginians to raise the siege of Syracuse. In his self-conceit, although the Carthaginians, being Phoenicians of Tyre by ancient descent, were more experienced sea men than any other non-Greek people of that day, Pyrrhus was nevertheless encouraged to meet them in a naval battle, employing the Epeirots, the majority of whom, even after the capture of Troy, knew no thing of the sea nor even as yet how to use salt. Witness the words of Homer in the Odyssey:– Nothing they know of ocean, and mix not salt with their victuals. Hom. Od. 11.122\n", + "\n", + "[1.13.1] XIII. Worsted on this occasion Pyrrhus put back with the remainder of his vessels to Tarentum. Here he met with a serious reverse, and his retirement, for he knew that the Romans would not let him depart without striking a blow, he contrived in the following manner. On his return from Sicily and his defeat, he first sent various dispatches to Asia and to Antigonus, asking some of the kings for troops, some for money, and Antigonus for both. When the envoys returned and their dispatches were delivered, he summoned those in authority, whether Epeirot or Tarentine, and without reading any of the dispatches declared that reinforcements would come. A report spread quickly even to the Romans that Macedonians and Asiatic tribes also were crossing to the aid of Pyrrhus. The Romans, on hearing this, made no move, but Pyrrhus on the approach of that very night crossed to the headlands of the mountains called Ceraunian.\n", + "\n", + "[1.13.2] After the defeat in Italy Pyrrhus gave his forces a rest and then declared war on Antigonus, his chief ground of complaint being the failure to send reinforcements to Italy. Overpowering the native troops of Antigonus an his Gallic mercenaries he pursued them to the coast cities, and himself reduced upper Macedonia and the Thessalians. The extent of the fighting and the decisive character of the victory of Pyrrhus are shown best by the Celtic armour dedicated in the sanctuary of Itonian Athena between Pherae and Larisa, with this inscription on them:–\n", + "\n", + "[1.13.3]\n", + "\n", + "Pyrrhus the Molossian hung these shields\n", + "taken from the bold Gauls as a gift to Itonian\n", + "Athena, when he had destroyed all the host\n", + "of Antigonus. 'Tis no great marvel. The\n", + "Aeacidae are warriors now, even as they were of old.\n", + "\n", + "These shields then are here, but the bucklers of the Macedonians themselves he dedicated to Dodonian Zeus. They too have an inscription:–\n", + "\n", + "These once ravaged golden Asia, and brought\n", + "slavery upon the Greeks. Now ownerless\n", + "they lie by the pillars of the temple of Zeus,\n", + "spoils of boastful Macedonia.\n", + "\n", + "Pyrrhus came very near to reducing Macedonia entirely, but,\n", + "\n", + "[1.13.4] being usually readier to do what came first to hand, he was prevented by Cleonymus. This Cleonymus, who persuaded Pyrrhus to abandon his Macedonian adventure and to go to the Peloponnesus, was a Lacedaemonian who led an hostile army into the Lacedaemonian territory for a reason which I will relate after giving the descent of Cleonymus. Pausanias, who was in command of the Greeks at Plataea,45 was the father of Pleistoanax, he of Pausanias, and he of Cleombrotus, who was killed at Leuctra fighting against Epaminondas and the Thebans. Cleombrotus was the father of Agesipolis and Cleomenes, and, Agesipolis dying without issue, Cleomenes ascended the throne.\n", + "\n", + "[1.13.5] Cleomenes had two sons, the elder being Acrotatus and the younger Cleonymus. Now Acrotatus died first; and when afterwards Cleomenes died, a claim to the throne was put forward by Areus son of Acrotatus, and Cleonymus took steps to induce Pyrrhus to enter the country. Before the battle of Leuctra46 the Lacedaemonians had suffered no disaster, so that they even refused to admit that they had yet been worsted in a land battle. For Leonidas, they said, had won the victory,47 but his followers were insufficient for the entire destruction of the Persians; the achievement of Demosthenes and the Athenians on the island of Sphacteria48 was no victory, but only a trick in war.\n", + "\n", + "[1.13.6] Their first reverse took place in Boeotia, and they afterwards suffered a severe defeat at the hands of Antipater and the Macedonians.49 Thirdly the war with Demetrius50 came as an unexpected misfortune to their land. Invaded by Pyrrhus and seeing a hostile army for the fourth time, they arrayed themselves to meet it along with the Argives and Messenians who had come as their allies. Pyrrhus won the day, and came near to capturing Sparta without further fighting, but desisted for a while after ravaging the land and carrying off plunder.51 The citizens prepared for a siege, and Sparta even before this in the war with Demetrius had been fortified with deep trenches and strong stakes, and at the most vulnerable points with buildings as well.\n", + "\n", + "[1.13.7] Just about this time, while the Laconian war was dragging on, Antigonus, having recovered the Macedonian cities, hastened to the Peloponnesus being well aware that if Pyrrhus were to reduce Lacedaemon and the greater part of the Peloponnesus, he would not return to Epeirus but to Macedonia to make war there again. When Antigonus was about to lead his army from Argos into Laconia, Pyrrhus himself reached Argos. Victorious once more he dashed into the city along with the fugitives, and his formation not unnaturally was broken up.\n", + "\n", + "[1.13.8] When the fighting was now taking place by sanctuaries and houses, and in the narrow lanes, between detached bodies in different parts of the town, Pyrrhus left by himself was wounded in the head. It is said that his death52 was caused by a blow from a tile thrown by a woman. The Argives however declare that it was not a woman who killed him but Demeter in the likeness of a woman. This is what the Argives themselves relate about his end, and Lyceas, the guide for the neighborhood, has written a poem which confirms the story. They have a sanctuary of Demeter, built at the command of the oracle, on the spot where Pyrrhus died, and in it Pyrrhus is buried.\n", + "\n", + "[1.13.9] I consider it remarkable that of those styled Aeacidae three met their end by similar heaven-sent means; if, as Homer says, Achilles was killed by Alexander, son of Priam, and by Apollo, if the Delphians were bidden by the Pythia to slay Pyrrhus, son of Achilles, and if the end of the son of Aeacides was such as the Argives say and Lyceas has described in his poem. The account, how ever, given by Hieronymus the Cardian is different, for a man who associates with royalty cannot help being a partial historian. If Philistus was justified in suppressing the most wicked deeds of Dionysius, because he expected his return to Syracuse, surely Hieronymus may be fully forgiven for writing to please Antigonus.\n", + "\n", + "[1.14.1] XIV. So ended the period of Epeirot ascendancy. When you have entered the Odeum at Athens you meet, among other objects, a figure of Dionysus worth seeing. Hard by is a spring called Enneacrunos (Nine Jets), embellished as you see it by Peisistratus. There are cisterns all over the city, but this is the only fountain. Above the spring are two temples, one to Demeter and the Maid, while in that of Triptolemus is a statue of him. The accounts given of Triptolemus I shall write, omitting from the story as much as relates to Deiope.\n", + "\n", + "[1.14.2] The Greeks who dispute most the Athenian claim to antiquity and the gifts they say they have received from the gods are the Argives, just as among those who are not Greeks the Egyptians compete with the Phrygians. It is said, then, that when Demeter came to Argos she was received by Pelasgus into his home, and that Chrysanthis, knowing about the rape of the Maid, related the story to her. Afterwards Trochilus, the priest of the mysteries, fled, they say, from Argos because of the enmity of Agenor, came to Attica and married a woman of Eleusis, by whom he had two children, Eubuleus and Triptolemus. That is the account given by the Argives. But the Athenians and those who with them . . . know that Triptolemus, son of Celeus, was the first to sow seed for cultivation.\n", + "\n", + "[1.14.3] Some extant verses of Musaeus, if indeed they are to be included among his works, say that Triptolemus was the son of Oceanus and Earth; while those ascribed to Orpheus (though in my opinion the received authorship is again incorrect) say that Eubuleus and Triptolemus were sons of Dysaules, and that because they gave Demeter information about her daughter the sowing of seed was her reward to them. But Choerilus, an Athenian, who wrote a play called Alope, says that Cercyon and Triptolemus were brothers, that their mother was the daughter of Amphictyon, while the father of Triptolemus was Rarus, of Cercyon, Poseidon. After I had intended to go further into this story, and to describe the contents of the sanctuary at Athens, called the Eleusinium, I was stayed by a vision in a dream. I shall therefore turn to those things it is lawful to write of to all men.\n", + "\n", + "[1.14.4] In front of this temple, where is also the statue of Triptolemus, is a bronze bull being led as it were to sacrifice, and there is a sitting figure of Epimenides of Cnossus,53 who they say entered a cave in the country and slept. And the sleep did not leave him before the fortieth year, and afterwards he wrote verses and purified Athens and other cities. But Thales who stayed the plague for the Lacedaemonians was not related to Epimenides in any way, and belonged to a different city. The latter was from Cnossus, but Thales was from Gortyn, according to Polymnastus of Colophon, who com posed a poem about him for the Lacedaemonians.\n", + "\n", + "[1.14.5] Still farther of is a temple to Glory, this too being a thank-offering for the victory over the Persians, who had landed at Marathon. This is the victory of which I am of opinion the Athenians were proudest; while Aeschylus, who had won such renown for his poetry and for his share in the naval battles before Artemisium and at Salamis, recorded at the prospect of death nothing else, and merely wrote his name, his father's name, and the name of his city, and added that he had witnesses to his valor in the grove at Marathon and in the Persians who landed there.\n", + "\n", + "[1.14.6] Above the Cerameicus and the portico called the King's Portico is a temple of Hephaestus. I was not surprised that by it stands a statue of Athena, be cause I knew the story about Erichthonius. But when I saw that the statue of Athena had blue eyes I found out that the legend about them is Libyan. For the Libyans have a saying that the Goddess is the daughter of Poseidon and Lake Tritonis, and for this reason has blue eyes like Poseidon.\n", + "\n", + "[1.14.7] Hard by is a sanctuary of the Heavenly Aphrodite; the first men to establish her cult were the Assyrians, after the Assyrians the Paphians of Cyprus and the Phoenicians who live at Ascalon in Palestine; the Phoenicians taught her worship to the people of Cythera. Among the Athenians the cult was established by Aegeus, who thought that he was childless (he had, in fact, no children at the time) and that his sisters had suffered their misfortune because of the wrath of Heavenly Aphrodite. The statue still extant is of Parian marble and is the work of Pheidias. One of the Athenian parishes is that of the Athmoneis, who say that Porphyrion, an earlier king than Actaeus, founded their sanctuary of the Heavenly One. But the traditions current among the Parishes often differ altogether from those of the city.\n", + "\n", + "[1.15.1] XV. As you go to the portico which they call painted, because of its pictures, there is a bronze statue of Hermes of the Market-place, and near it a gate. On it is a trophy erected by the Athenians, who in a cavalry action overcame Pleistarchus, to whose command his brother Cassander had entrusted his cavalry and mercenaries. This portico contains, first, the Athenians arrayed against the Lacedaemonians at Oenoe in the Argive territory.54 What is depicted is not the crisis of the battle nor when the action had advanced as far as the display of deeds of valor, but the beginning of the fight when the combatants were about to close.\n", + "\n", + "[1.15.2] On the middle wall are the Athenians and Theseus fighting with the Amazons. So, it seems, only the women did not lose through their defeats their reckless courage in the face of danger; Themiscyra was taken by Heracles, and afterwards the army which they dispatched to Athens was destroyed, but nevertheless they came to Troy to fight all the Greeks as well as the Athenians them selves. After the Amazons come the Greeks when they have taken Troy, and the kings assembled on account of the outrage committed by Ajax against Cassandra. The picture includes Ajax himself, Cassandra and other captive women.\n", + "\n", + "[1.15.3] At the end of the painting are those who fought at Marathon; the Boeotians of Plataea and the Attic contingent are coming to blows with the foreigners. In this place neither side has the better, but the center of the fighting shows the foreigners in flight and pushing one another into the morass, while at the end of the painting are the Phoenician ships, and the Greeks killing the foreigners who are scrambling into them. Here is also a portrait of the hero Marathon, after whom the plain is named, of Theseus represented as coming up from the under-world, of Athena and of Heracles. The Marathonians, according to their own account, were the first to regard Heracles as a god. Of the fighters the most conspicuous figures in the painting are Callimachus, who had been elected commander-in-chief by the Athenians, Miltiades, one of the generals, and a hero called Echetlus, of whom I shall make mention later.\n", + "\n", + "[1.15.4] Here are dedicated brazen shields, and some have an inscription that they are taken from the Scioneans and their allies,55 while others, smeared with pitch lest they should be worn by age and rust, are said to be those of the Lacedaemonians who were taken prisoners in the island of Sphacteria.56\n", + "\n", + "[1.16.1] XVI. Here are placed bronze statues, one, in front of the portico, of Solon, who composed the laws for the Athenians,57 and, a little farther away, one of Seleucus, whose future prosperity was foreshadowed by unmistakable signs. When he was about to set forth from Macedonia with Alexander, and was sacrificing at Pella to Zeus, the wood that lay on the altar advanced of its own accord to the image and caught fire without the application of a light.\n", + "\"\"\")" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "('Egypt', 'GPE')\n", + "('Philip', 'GPE')\n", + "('Ptolemy', 'GPE')\n", "('Asia', 'LOC')\n", - "('Sicily', 'GPE')\n", - "('1.29.12', 'CARDINAL')\n", - "('Nicias', 'PERSON')\n", - "('Plataeans', 'NORP')\n", - "('Athenians', 'NORP')\n", - "('Nicias', 'PERSON')\n", - "('Philistus', 'ORG')\n", - "('Nicias', 'PERSON')\n", - "('Nicias', 'PERSON')\n", - "('1.29.13', 'CARDINAL')\n", + "('Egypt', 'GPE')\n", + "('Perdiccas', 'GPE')\n", + "('Memphis', 'GPE')\n", + "('Perdiccas', 'GPE')\n", + "('Egypt', 'GPE')\n", + "('Ptolemy', 'GPE')\n", + "('Egypt', 'GPE')\n", + "('Egypt', 'GPE')\n", + "('Perdiccas', 'GPE')\n", + "('Phoenicia', 'GPE')\n", + "('Seleucus', 'GPE')\n", + "('Antigonus', 'LOC')\n", + "('Antigonus', 'LOC')\n", "('Thrace', 'GPE')\n", - "('Alcibiades', 'PERSON')\n", - "('Arcadians', 'NORP')\n", - "('Mantinea', 'GPE')\n", - "('Eleans', 'NORP')\n", - "('Lacedaemonians,110', 'PERSON')\n", - "('Syracusans', 'PERSON')\n", - "('Demosthenes', 'PERSON')\n", - "('Sicily', 'PERSON')\n", - "('Hellespont,111', 'GPE')\n", - "('Macedonians', 'NORP')\n", - "('Delium', 'ORG')\n", - "('Leosthenes', 'PERSON')\n", - "('Thessaly', 'GPE')\n", - "('Cimon', 'ORG')\n", - "('Cyprus,114', 'ORG')\n", - "('more than thirteen', 'CARDINAL')\n", - "('1.29.14', 'CARDINAL')\n", - "('Athenians', 'NORP')\n", - "('Romans', 'NORP')\n", - "('five', 'CARDINAL')\n", - "('Attic', 'NORP')\n", - "('Romans', 'NORP')\n", - "('Carthaginians', 'NORP')\n", - "('Tolmides', 'PERSON')\n", - "('Cimon', 'ORG')\n", - "('1.29.15', 'CARDINAL')\n", - "('Conon and Timotheus', 'WORK_OF_ART')\n", - "('second', 'ORDINAL')\n", - "('Miltiades', 'PERSON')\n", - "('Cimon', 'ORG')\n", - "('first', 'ORDINAL')\n", - "('Zeno', 'PERSON')\n", - "('Mnaseas', 'PERSON')\n", - "('Nicias', 'PERSON')\n", - "('Nicomedes', 'PRODUCT')\n", - "('Harmodius', 'PERSON')\n", - "('Aristogeiton', 'PERSON')\n", - "('Hipparchus', 'PERSON')\n", - "('Peisistratus', 'ORG')\n", - "('two', 'CARDINAL')\n", - "('Ephialtes', 'PERSON')\n", - "('Areopagus,118', 'PERSON')\n", - "('Lycurgus,119', 'PERSON')\n", - "('Lycophron', 'ORG')\n", - "('six thousand five hundred', 'DATE')\n", - "('Pericles', 'GPE')\n", - "('Xanthippus', 'ORG')\n", - "('Goddess', 'PRODUCT')\n", - "('hundred', 'CARDINAL')\n", - "('four hundred', 'CARDINAL')\n", - "('Peiraeus', 'PERSON')\n", - "('Lyceum', 'ORG')\n", - "('Lachares', 'PERSON')\n", - "('THE ACADEMY OF ATHENS', 'ORG')\n", - "('1.30.1', 'CARDINAL')\n", - "('Academy', 'ORG')\n", - "('Love', 'WORK_OF_ART')\n", - "('Charmus', 'ORG')\n", - "('first', 'ORDINAL')\n", - "('Athenian', 'NORP')\n", - "('Anteros (Love Avenged', 'WORK_OF_ART')\n", - "('the Athenian Meles', 'ORG')\n", - "('Timagoras', 'GPE')\n", - "('Timagoras', 'PERSON')\n", - "('Timagoras', 'PERSON')\n", - "('Anteros', 'LOC')\n", - "('Timagoras', 'GPE')\n", - "('1.30.2', 'CARDINAL')\n", - "('Academy', 'ORG')\n", - "('Prometheus', 'PERSON')\n", - "('first', 'ORDINAL')\n", - "('second', 'ORDINAL')\n", - "('third', 'ORDINAL')\n", - "('Muses', 'PRODUCT')\n", - "('Hermes', 'ORG')\n", - "('one', 'CARDINAL')\n", - "('Athena', 'ORG')\n", - "('Heracles', 'PERSON')\n", - "('second', 'ORDINAL')\n", - "('1.30.3', 'CARDINAL')\n", - "('Academy', 'ORG')\n", - "('Plato', 'PERSON')\n", - "('the night', 'TIME')\n", - "('Plato', 'PERSON')\n", - "('Socrates', 'PRODUCT')\n", - "('Swan', 'WORK_OF_ART')\n", - "('Ligyes', 'PERSON')\n", - "('Eridanus', 'LOC')\n", - "('Celtic', 'NORP')\n", - "('Apollo', 'ORG')\n", - "('Ligyes', 'PERSON')\n", - "('1.30.4', 'CARDINAL')\n", - "('Timon', 'ORG')\n", - "('the Hill of Horses', 'ORG')\n", - "('first', 'ORDINAL')\n", - "('Attica', 'GPE')\n", - "('Oedipus', 'PERSON')\n", - "('Homer', 'PERSON')\n", - "('Poseidon', 'GPE')\n", - "('Athena', 'ORG')\n", - "('Peirithous', 'PERSON')\n", - "('Theseus', 'PERSON')\n", - "('Oedipus', 'PERSON')\n", - "('Adrastus', 'ORG')\n", - "('Poseidon', 'GPE')\n", - "('Attica', 'GPE')\n", - "('Athenians', 'NORP')\n", - "('ALIMUS', 'ORG')\n", - "('ZOSTER', 'ORG')\n", - "('PROSPALTA', 'ORG')\n", - "('ANAGYRUS', 'ORG')\n", - "('CEPHALE', 'ORG')\n", - "('1.31.1', 'CARDINAL')\n", - "('Attica', 'GPE')\n", - "('Alimus', 'FAC')\n", - "('Demeter Lawgiver', 'PERSON')\n", - "('Maid', 'PERSON')\n", - "('Athena', 'ORG')\n", - "('Apollo', 'ORG')\n", - "('Artemis', 'ORG')\n", - "('Leto', 'PERSON')\n", - "('Leto', 'PERSON')\n", - "('Prospalta', 'PERSON')\n", - "('Maid', 'PERSON')\n", - "('Demeter', 'PERSON')\n", - "('Anagyrus', 'PERSON')\n", - "('Cephale', 'ORG')\n", - "('Dioscuri', 'ORG')\n", - "('1.31.2', 'CARDINAL')\n", - "('Prasiae', 'ORG')\n", - "('Apollo', 'ORG')\n", - "('first', 'ORDINAL')\n", - "('Hyperboreans', 'NORP')\n", - "('Hyperboreans', 'NORP')\n", - "('Arimaspi', 'PERSON')\n", - "('Arimaspi', 'PERSON')\n", - "('Issedones', 'ORG')\n", - "('Scythians', 'NORP')\n", - "('Sinope', 'PERSON')\n", - "('Greeks', 'NORP')\n", - "('Prasiae', 'ORG')\n", - "('Athenians', 'NORP')\n", - "('Delos', 'PERSON')\n", - "('first', 'ORDINAL')\n", - "('Prasiae', 'ORG')\n", - "('Erysichthon', 'GPE')\n", - "('Delos', 'ORG')\n", - "('1.31.3', 'CARDINAL')\n", - "('Athens', 'GPE')\n", - "('Lamptrae', 'PERSON')\n", - "('Attica', 'GPE')\n", - "('Xuthus', 'PERSON')\n", - "('Athenians', 'NORP')\n", - "('Eleusis', 'PERSON')\n", - "('PHYLA & MYRRHINUS', 'ORG')\n", - "('1.31.4', 'CARDINAL')\n", - "('Phlya', 'PERSON')\n", - "('Myrrhinus', 'GPE')\n", - "('Apollo Dionysodotus', 'ORG')\n", - "('Artemis Light', 'ORG')\n", - "('Dionysus Flower', 'ORG')\n", - "('Ismenian', 'NORP')\n", - "('Earth', 'LOC')\n", - "('Great', 'FAC')\n", - "('second', 'ORDINAL')\n", - "('Demeter Anesidora', 'PERSON')\n", - "('Gifts', 'PERSON')\n", - "('Zeus Ctesius', 'PERSON')\n", - "('Tithrone Athena', 'ORG')\n", - "('First', 'ORDINAL')\n", - "('August', 'DATE')\n", - "('Myrrhinus', 'GPE')\n", - "('Colaenis', 'NORP')\n", - "('1.31.5', 'CARDINAL')\n", - "('Athmonia', 'GPE')\n", - "('Artemis Amarysia', 'ORG')\n", - "('Euboea', 'GPE')\n", - "('Amarysia', 'PERSON')\n", - "('Amarysia', 'GPE')\n", - "('Athenians', 'NORP')\n", - "('Athmonia', 'GPE')\n", - "('Colaenis', 'NORP')\n", - "('Myrrhinus', 'GPE')\n", - "('Colaenus', 'GPE')\n", - "('Cecrops', 'GPE')\n", - "('Colaenus', 'PERSON')\n", - "('Myrrhinusians', 'NORP')\n", - "('Cecrops', 'PERSON')\n", - "('Acharnae', 'PERSON')\n", - "('Apollo Agyieus', 'PERSON')\n", - "('Heracles', 'PERSON')\n", - "('Athena Health', 'ORG')\n", - "('Athena Horse', 'ORG')\n", - "('Dionysus Singer', 'PERSON')\n", - "('Dionysus Ivy', 'PERSON')\n", - "('first', 'ORDINAL')\n", - "('MT PENTELICUS', 'PERSON')\n", - "('MT PARNES &', 'ORG')\n", - "('1.32.1', 'CARDINAL')\n", - "('Attic', 'NORP')\n", - "('Pentelicus', 'ORG')\n", - "('Parnes', 'ORG')\n", - "('Hymettus', 'ORG')\n", - "('1.32.2', 'CARDINAL')\n", - "('Athenians', 'NORP')\n", - "('Pentelicus', 'ORG')\n", - "('Athena', 'ORG')\n", - "('Hymettus', 'ORG')\n", - "('Zeus Hymettius', 'PERSON')\n", - "('Zeus Rain-god', 'FAC')\n", - "('Apollo Foreseer', 'PERSON')\n", - "('Parnes', 'ORG')\n", - "('Zeus Parnethius', 'PERSON')\n", - "('Zeus Semaleus', 'PERSON')\n", - "('Parnes', 'PRODUCT')\n", - "('Zeus', 'PERSON')\n", - "('Averter', 'PERSON')\n", - "('Anchesmus', 'NORP')\n", - "('Zeus Anchesmius', 'PERSON')\n", - "('MARATHON', 'ORG')\n", - "('1.32.3', 'CARDINAL')\n", - "('Marathon', 'FAC')\n", - "('Athens', 'GPE')\n", - "('Carystus', 'NORP')\n", - "('Attica', 'GPE')\n", - "('Athenians', 'NORP')\n", - "('the Boeotian Plataeans', 'ORG')\n", - "('first', 'ORDINAL')\n", - "('1.32.4', 'CARDINAL')\n", - "('one', 'CARDINAL')\n", - "('Miltiades', 'PERSON')\n", - "('Cimon', 'ORG')\n", - "('Paros', 'ORG')\n", - "('Athenians', 'NORP')\n", - "('every night', 'TIME')\n", - "('Marathonians', 'NORP')\n", - "('Marathon', 'EVENT')\n", - "('Heracles', 'PERSON')\n", - "('first', 'ORDINAL')\n", - "('Greeks', 'NORP')\n", - "('1.32.5', 'CARDINAL')\n", - "('Athenians', 'NORP')\n", - "('god', 'PERSON')\n", - "('Echetlaeus', 'PERSON')\n", - "('Athenians', 'NORP')\n", - "('Persians', 'NORP')\n", - "('1.32.6', 'CARDINAL')\n", - "('Marathon', 'DATE')\n", - "('Macaria', 'LANGUAGE')\n", - "('Heracles', 'PERSON')\n", - "('Tiryns', 'ORG')\n", - "('Eurystheus', 'PERSON')\n", - "('Ceyx', 'PERSON')\n", - "('Heracles', 'PERSON')\n", - "('Eurystheus', 'PERSON')\n", - "('Athens', 'GPE')\n", - "('Theseus', 'PERSON')\n", - "('first', 'ORDINAL')\n", - "('Peloponnesians', 'NORP')\n", - "('Athenians', 'NORP')\n", - "('Theseus', 'PERSON')\n", - "('Eurystheus', 'GPE')\n", - "('Athenians', 'NORP')\n", - "('one', 'CARDINAL')\n", - "('Heracles', 'PERSON')\n", - "('Thereupon Macaria', 'PERSON')\n", - "('Deianeira', 'PERSON')\n", - "('Heracles', 'PERSON')\n", - "('Athenians', 'NORP')\n", - "('1.32.7', 'CARDINAL')\n", - "('Marathon a lake', 'FAC')\n", - "('Artaphernes', 'ORG')\n", - "('the Hill of Pan', 'ORG')\n", - "(\"Pan's\", 'ORG')\n", - "('BRAURON', 'ORG')\n", - "('1.33.1', 'CARDINAL')\n", - "('Marathon', 'ORG')\n", - "('Brauron', 'ORG')\n", - "('Iphigenia', 'GPE')\n", - "('Agamemnon', 'ORG')\n", - "('Artemis', 'ORG')\n", - "('Tauri', 'GPE')\n", - "('Athens', 'GPE')\n", - "('Argos', 'ORG')\n", - "('Artemis', 'ORG')\n", - "('one', 'CARDINAL')\n", - "('RHAMNUS', 'PRODUCT')\n", - "('About sixty', 'CARDINAL')\n", - "('Oropus', 'ORG')\n", - "('Rhamnus', 'PRODUCT')\n", - "('Nemesis', 'WORK_OF_ART')\n", - "('Marathon', 'EVENT')\n", + "('Seleucus', 'GPE')\n", + "('Antigonus', 'LOC')\n", + "('Antigonus', 'LOC')\n", + "('Ptolemy', 'GPE')\n", + "('Libya', 'GPE')\n", + "('Hellespont', 'GPE')\n", + "('Antigonus Ptolemy', 'GPE')\n", + "('Egypt', 'GPE')\n", + "('Cyprus', 'GPE')\n", + "('Ptolemy', 'GPE')\n", + "('Egypt', 'GPE')\n", + "('Antigonus', 'LOC')\n", + "('Egypt', 'GPE')\n", + "('Egypt', 'GPE')\n", + "('Seleucus', 'GPE')\n", + "('Macedonia', 'GPE')\n", + "('Antigonus', 'LOC')\n", + "('Antigonus, Ptolemy', 'GPE')\n", + "('Cyprus', 'GPE')\n", + "('Magas', 'GPE')\n", + "('Ptolemy', 'GPE')\n", + "('Philip', 'GPE')\n", + "('Berenice', 'GPE')\n", + "('Egypt', 'GPE')\n", + "('Egypt', 'GPE')\n", + "('Ptolemy', 'GPE')\n", + "('Berenice', 'GPE')\n", + "('Memphis', 'GPE')\n", + "('Magas', 'GPE')\n", + "('Philip', 'GPE')\n", + "('Ptolemy', 'GPE')\n", + "('Egypt', 'GPE')\n", + "('Egypt', 'GPE')\n", + "('Magas', 'GPE')\n", + "('Magas', 'GPE')\n", + "('Egypt', 'GPE')\n", + "('Magas', 'GPE')\n", + "('Seleucus', 'GPE')\n", + "('Egypt', 'GPE')\n", + "('Egypt', 'GPE')\n", + "('Antigonus', 'LOC')\n", "('Athens', 'GPE')\n", - "('Parian', 'NORP')\n", - "('1.33.3', 'CARDINAL')\n", - "('Pheidias', 'PERSON')\n", - "('Nemesis', 'WORK_OF_ART')\n", - "('Aethiopians', 'PERSON')\n", - "('Aethiopians', 'PERSON')\n", - "('Aethiopians', 'PERSON')\n", - "('Aethiopians', 'PERSON')\n", - "('Ocean', 'ORG')\n", - "('Nemesis', 'PERSON')\n", - "('1.33.4', 'CARDINAL')\n", - "('Iberians', 'NORP')\n", - "('Celts', 'NORP')\n", - "('Ocean', 'ORG')\n", - "('Britain', 'GPE')\n", - "('Aethiopians', 'PERSON')\n", - "('Syene', 'PERSON')\n", - "('the Red Sea', 'LOC')\n", - "('Ichthyophagi', 'NORP')\n", - "('Meroe', 'PERSON')\n", - "('Aethiopian', 'NORP')\n", - "('Nile', 'LOC')\n", - "('1.33.5', 'CARDINAL')\n", - "('Aethiopians', 'PERSON')\n", - "('Mauri', 'ORG')\n", - "('Nasamones', 'ORG')\n", - "('Nasamones', 'ORG')\n", - "('Herodotus', 'NORP')\n", - "('Atlantes', 'LOC')\n", - "('Lixitae', 'FAC')\n", - "('Libyans', 'NORP')\n", - "('Mount Atlas', 'LOC')\n", - "('Aethiopians', 'PERSON')\n", - "('Nasamones', 'ORG')\n", - "('Atlas', 'GPE')\n", - "('three', 'CARDINAL')\n", - "('Aethiopians', 'PERSON')\n", - "('1.33.6', 'CARDINAL')\n", - "('Atlas', 'PERSON')\n", - "('less than two', 'CARDINAL')\n", - "('the spring', 'DATE')\n", - "('Nile', 'LOC')\n", "('Egypt', 'GPE')\n", - "('Mount Atlas', 'PERSON')\n", - "('Nasamones', 'ORG')\n", - "('1.33.7', 'CARDINAL')\n", - "('Smyrnaeans', 'NORP')\n", - "('Nemesis', 'WORK_OF_ART')\n", - "('Love', 'WORK_OF_ART')\n", - "('Greeks', 'NORP')\n", - "('Nemesis', 'PERSON')\n", - "('Helen', 'PERSON')\n", - "('Leda', 'PERSON')\n", - "('Helen', 'GPE')\n", - "('Greeks', 'NORP')\n", - "('Tyndareus', 'PERSON')\n", - "('Zeus', 'PERSON')\n", - "('1.33.8', 'CARDINAL')\n", - "('Pheidias', 'PERSON')\n", - "('Helen', 'PERSON')\n", - "('Nemesis', 'WORK_OF_ART')\n", - "('Leda', 'PERSON')\n", - "('Tyndareus', 'PERSON')\n", - "('Hippeus', 'PERSON')\n", - "('Agamemnon', 'ORG')\n", - "('Menelaus', 'PERSON')\n", - "('Pyrrhus', 'PERSON')\n", - "('Achilles', 'PERSON')\n", - "('first', 'ORDINAL')\n", - "('Hermione', 'PERSON')\n", - "('Helen', 'PERSON')\n", - "('Orestes', 'ORG')\n", - "('Hermione', 'PERSON')\n", - "('Oenoe', 'PRODUCT')\n", - "('Oropus', 'ORG')\n", - "('Attica', 'GPE')\n", - "('Tanagra', 'ORG')\n", - "('Boeotia', 'PERSON')\n", - "('Athenians', 'NORP')\n", - "('Philip', 'PERSON')\n", - "('Thebes', 'PERSON')\n", - "('About twelve', 'CARDINAL')\n", - "('Amphiaraus', 'ORG')\n", - "('1.34.2', 'CARDINAL')\n", - "('Amphiaraus', 'PERSON')\n", - "('Thebes', 'PERSON')\n", - "('Chariot', 'PRODUCT')\n", - "('Thebes', 'PERSON')\n", - "('Chalcis', 'GPE')\n", - "('Amphiaraus', 'ORG')\n", - "('first', 'ORDINAL')\n", - "('Oropians', 'ORG')\n", - "('Greeks', 'NORP')\n", - "('Greeks', 'NORP')\n", - "('Eleus', 'NORP')\n", - "('Chersonnesus', 'PERSON')\n", - "('Protesilaus', 'PERSON')\n", - "('Lebadea', 'ORG')\n", - "('Boeotians', 'NORP')\n", - "('Trophonius', 'GPE')\n", - "('Oropians', 'ORG')\n", - "('Amphiaraus', 'ORG')\n", - "('1.34.3', 'CARDINAL')\n", - "('One', 'CARDINAL')\n", - "('Heracles', 'GPE')\n", - "('Zeus', 'PERSON')\n", - "('Apollo Healer', 'PERSON')\n", - "('third', 'ORDINAL')\n", - "('Hestia', 'PERSON')\n", - "('Hermes', 'ORG')\n", - "('Amphiaraus', 'ORG')\n", - "('Amphilochus', 'PERSON')\n", - "('Eriphyle', 'GPE')\n", - "('Amphiaraus', 'ORG')\n", - "('Amphilochus', 'PERSON')\n", - "('fourth', 'ORDINAL')\n", - "('Aphrodite', 'PERSON')\n", - "('Panacea', 'ORG')\n", - "('Iaso, Health', 'ORG')\n", - "('Athena Healer', 'PERSON')\n", - "('fifth', 'ORDINAL')\n", - "('Pan', 'ORG')\n", - "('Achelous', 'PERSON')\n", - "('Cephisus', 'PERSON')\n", - "('Athenians', 'NORP')\n", - "('Amphilochus', 'PERSON')\n", - "('Mallus', 'NORP')\n", - "('Cilicia', 'ORG')\n", - "('1.34.4', 'CARDINAL')\n", - "('Oropians', 'ORG')\n", - "('the spring', 'DATE')\n", - "('Amphiaraus', 'ORG')\n", - "('Iophon', 'PERSON')\n", - "('Cnossian', 'NORP')\n", - "('Amphiaraus', 'ORG')\n", - "('Argives', 'GPE')\n", - "('Thebes', 'PERSON')\n", - "('Apollo', 'ORG')\n", - "('Amphiaraus', 'ORG')\n", - "('Amphiaraus', 'PERSON')\n", - "('first', 'ORDINAL')\n", - "('first', 'ORDINAL')\n", - "('SALAMIS', 'ORG')\n", - "('1.35.1', 'CARDINAL')\n", - "('XXXV', 'ORG')\n", - "('Attica', 'GPE')\n", - "('one', 'CARDINAL')\n", - "('the Island of Patroclus', 'LOC')\n", - "('Sunium', 'LOC')\n", - "('Attica', 'GPE')\n", - "('Helen', 'PERSON')\n", - "('Troy', 'PERSON')\n", - "('1.35.2', 'CARDINAL')\n", - "('Helene', 'PERSON')\n", - "('Salamis', 'ORG')\n", - "('Eleusis', 'ORG')\n", - "('Megara', 'PERSON')\n", - "('first', 'ORDINAL')\n", - "('Cychreus', 'GPE')\n", - "('Salamis', 'WORK_OF_ART')\n", - "('Asopus', 'ORG')\n", - "('Aeginetans', 'NORP')\n", - "('Telamon', 'PERSON')\n", - "('Philaeus', 'PERSON')\n", - "('Eurysaces', 'PERSON')\n", - "('Ajax', 'ORG')\n", - "('Athenians', 'NORP')\n", - "('Athenian', 'NORP')\n", - "('Athenians', 'NORP')\n", - "('Salaminians', 'NORP')\n", - "('Macedonians', 'NORP')\n", - "('Aeschetades', 'PERSON')\n", - "('Salamis', 'ORG')\n", - "('Salaminians', 'NORP')\n", - "('1.35.3', 'CARDINAL')\n", - "('Ajax', 'ORG')\n", - "('Athenians', 'NORP')\n", - "('Ajax', 'ORG')\n", - "('Eurysaces', 'PERSON')\n", - "('Eurysaces', 'PERSON')\n", + "('Docimus', 'GPE')\n", + "('Antigonus', 'LOC')\n", + "('Seleucus', 'GPE')\n", + "('Philetaerus', 'GPE')\n", + "('Lycurgus,29', 'GPE')\n", + "('Calauria', 'GPE')\n", + "('Calauria', 'GPE')\n", + "('Thessaly', 'GPE')\n", "('Athens', 'GPE')\n", - "('Salamis', 'PRODUCT')\n", - "('Telamon', 'PERSON')\n", - "('Greeks', 'NORP')\n", - "('1.35.4', 'CARDINAL')\n", - "('Salamis', 'PERSON')\n", - "('Ajax', 'PERSON')\n", - "('first', 'ORDINAL')\n", - "('Aeolians', 'NORP')\n", - "('Ilium', 'ORG')\n", - "('Odysseus', 'PERSON')\n", - "('Ajax', 'ORG')\n", - "('Mysian', 'NORP')\n", - "('1.35.5', 'CARDINAL')\n", - "('Ajax', 'ORG')\n", - "('Celts', 'NORP')\n", - "('Egyptian', 'NORP')\n", - "('1.35.6', 'CARDINAL')\n", - "('Magnesians', 'NORP')\n", - "('Lethaeus', 'PERSON')\n", - "('Protophanes', 'ORG')\n", - "('one', 'CARDINAL')\n", - "('Olympia', 'PERSON')\n", - "('one day', 'DATE')\n", - "('Milesians', 'NORP')\n", - "('Lade', 'PERSON')\n", - "('One', 'CARDINAL')\n", - "('Asterius', 'ORG')\n", - "('Asterius', 'ORG')\n", - "('Asterius', 'ORG')\n", - "('Anax', 'GPE')\n", - "('Anax', 'ORG')\n", - "('Earth', 'LOC')\n", - "('less than', 'CARDINAL')\n", - "('1.35.7', 'CARDINAL')\n", - "('Lydia', 'PERSON')\n", - "('The Doors of Temenus', 'ORG')\n", - "('Geryon', 'ORG')\n", - "('Chrysaor', 'ORG')\n", - "('Geryon', 'ORG')\n", - "('1.35.8', 'CARDINAL')\n", - "('Geryon', 'ORG')\n", - "('Gadeira', 'PERSON')\n", - "('Lydians', 'ORG')\n", - "('Hyllus', 'PRODUCT')\n", - "('Earth', 'LOC')\n", - "('Heracles', 'PERSON')\n", - "('Omphale', 'ORG')\n", - "('Hyllus', 'PRODUCT')\n", - "('Salamis', 'ORG')\n", - "('Artemis', 'ORG')\n", - "('Themistocles', 'ORG')\n", - "('Neocles', 'GPE')\n", - "('Cychreus', 'GPE')\n", - "('Athenians', 'NORP')\n", - "('Persians', 'NORP')\n", - "('Athenians', 'NORP')\n", - "('Cychreus', 'PERSON')\n", - "('1.36.2', 'CARDINAL')\n", - "('Salamis', 'LAW')\n", - "('Psyttalea', 'GPE')\n", - "('about four hundred', 'CARDINAL')\n", - "('Persians', 'NORP')\n", - "('Xerxes', 'PRODUCT')\n", - "('Greeks', 'NORP')\n", - "('Psyttalea', 'GPE')\n", - "('1.36.3', 'CARDINAL')\n", - "('Eleusis', 'PERSON')\n", + "('Locrus', 'GPE')\n", + "('Heracles', 'GPE')\n", + "('Aristogiton', 'GPE')\n", "('Athens', 'GPE')\n", - "('Athenians', 'NORP')\n", - "('Two', 'CARDINAL')\n", - "('this day', 'DATE')\n", - "('Greeks', 'NORP')\n", - "('Hadrian', 'NORP')\n", - "('1.36.4', 'CARDINAL')\n", - "('Anthemocritus', 'ORG')\n", - "('Molottus', 'PERSON')\n", - "('Athenians', 'NORP')\n", - "('Plutarch,130', 'PERSON')\n", - "('Scirum', 'PRODUCT')\n", - "('Eleusinians', 'NORP')\n", - "('Erechtheus', 'ORG')\n", - "('Dodona', 'PERSON')\n", - "('Scirus', 'PRODUCT')\n", - "('Phalerum', 'GPE')\n", - "('Athena Sciras', 'ORG')\n", - "('Elusinians', 'NORP')\n", - "('1.36.5', 'CARDINAL')\n", - "('Cephisodorus', 'PERSON')\n", - "('Philip', 'PERSON')\n", - "('Demetrius', 'PERSON')\n", + "('EGYPT', 'GPE')\n", + "('Ptolemy', 'GPE')\n", + "('Cyprus', 'GPE')\n", + "('Cyprus', 'GPE')\n", + "('Cyprus', 'GPE')\n", + "('Ptolemy', 'GPE')\n", + "('Egypt', 'GPE')\n", + "('Berenice', 'GPE')\n", + "('Philip', 'GPE')\n", + "('Thrace', 'GPE')\n", + "('Getae', 'GPE')\n", + "('Ptolemy', 'GPE')\n", + "('Asia', 'LOC')\n", + "('Ephesus', 'GPE')\n", + "('Lebedos', 'GPE')\n", + "('Phoenix', 'GPE')\n", + "('Antigonus', 'LOC')\n", "('Macedon', 'GPE')\n", - "('Athens', 'GPE')\n", - "('two', 'CARDINAL')\n", - "('Attalus', 'ORG')\n", - "('Mysian', 'NORP')\n", - "('Egyptian', 'NORP')\n", - "('Aetolians', 'GPE')\n", - "('Rhodians', 'NORP')\n", - "('Cretans', 'ORG')\n", - "('islanders', 'NORP')\n", - "('1.36.6', 'CARDINAL')\n", + "('Macedonia', 'GPE')\n", + "('Macedonia', 'GPE')\n", + "('Asia', 'LOC')\n", + "('Seleucus', 'GPE')\n", + "('Seleucus', 'GPE')\n", + "('Antigonus', 'LOC')\n", + "('Macedonia', 'GPE')\n", + "('Agathocles', 'GPE')\n", + "('Agathocles', 'GPE')\n", + "('Agathocles', 'GPE')\n", + "('Seleucus', 'GPE')\n", + "('Seleucus', 'GPE')\n", + "('Babylon', 'GPE')\n", + "('Seleucus', 'GPE')\n", + "('Philetaerus', 'GPE')\n", + "('Seleucus', 'GPE')\n", + "('Asia,40', 'GPE')\n", + "('Cardia', 'GPE')\n", + "('Neoptolemus', 'GPE')\n", + "('Neoptolemus', 'GPE')\n", + "('Thessaly', 'GPE')\n", + "('Helenus', 'GPE')\n", + "('Pielus', 'GPE')\n", + "('Cestrinus', 'LOC')\n", + "('Cestrinus', 'LOC')\n", + "('Asia', 'LOC')\n", + "('Teuthrania', 'GPE')\n", + "('Neoptolemus', 'GPE')\n", + "('Oeneadae', 'GPE')\n", + "('Ptolemy', 'GPE')\n", "('Egypt', 'GPE')\n", - "('Mysia', 'GPE')\n", - "('Crete', 'GPE')\n", - "('Rhodians', 'NORP')\n", - "('Macedonian', 'NORP')\n", - "('Cephisodorus', 'PERSON')\n", - "('Athenians', 'NORP')\n", + "('Macedonia', 'GPE')\n", + "('Argives', 'GPE')\n", "('Italy', 'GPE')\n", - "('Philip', 'PERSON')\n", - "('Macedonians', 'NORP')\n", - "('Perseus', 'PERSON')\n", - "('Philip', 'GPE')\n", + "('Neoptolemus', 'GPE')\n", + "('the Ionian Sea', 'LOC')\n", + "('Greece', 'GPE')\n", + "('Italy', 'GPE')\n", + "('Greece', 'GPE')\n", "('Italy', 'GPE')\n", - "('Philip', 'PERSON')\n", - "('Demetrius', 'PERSON')\n", - "('Demetrius', 'PERSON')\n", - "('first', 'ORDINAL')\n", - "('Macedon', 'GPE')\n", - "('Alexander', 'PERSON')\n", - "('Cassander', 'PRODUCT')\n", - "('1.37.1', 'CARDINAL')\n", - "('Cephisodorus', 'PERSON')\n", - "('Heliodorus', 'PERSON')\n", - "('Athena', 'ORG')\n", - "('Themistocles', 'ORG')\n", - "('Poliarchus', 'GPE')\n", - "('Themistocles', 'ORG')\n", - "('Xerxes', 'PRODUCT')\n", - "('Persians', 'NORP')\n", - "('Acestium', 'PERSON')\n", - "('Xenocles', 'PERSON')\n", - "('Sophocles', 'PERSON')\n", - "('Leon', 'PERSON')\n", - "('Leon', 'PERSON')\n", - "('first', 'ORDINAL')\n", - "('Sophocles', 'PERSON')\n", - "('Themistocles', 'ORG')\n", - "('Theophrastus', 'NORP')\n", - "('1.37.2', 'CARDINAL')\n", - "('Themistocles', 'ORG')\n", - "('Lacius', 'ORG')\n", - "('Laciadae', 'PERSON')\n", - "('Nicocles of Tarentum', 'ORG')\n", - "('Zephyrus', 'PERSON')\n", - "('Demeter', 'PERSON')\n", - "('Athena', 'ORG')\n", - "('Poseidon', 'GPE')\n", - "('Phytalus', 'PERSON')\n", - "('Demeter', 'PERSON')\n", - "('Phytalus', 'PERSON')\n", - "('Phytalus', 'PERSON')\n", - "('Demeter', 'PERSON')\n", - "('August', 'DATE')\n", - "('Whence Phytalus', 'ORG')\n", - "('1.37.3', 'CARDINAL')\n", - "('Cephisus', 'ORG')\n", - "('Theodorus', 'GPE')\n", - "('Mnesimache', 'PRODUCT')\n", - "('Cephisus', 'ORG')\n", - "('Greeks', 'NORP')\n", - "('Homer,134', 'PERSON')\n", - "('Peleus', 'PERSON')\n", - "('Achilles', 'PERSON')\n", - "('Troy', 'GPE')\n", - "('Spercheus', 'PERSON')\n", - "('1.37.4', 'CARDINAL')\n", - "('Cephisus', 'ORG')\n", - "('Zeus Meilichius', 'PERSON')\n", - "('Theseus', 'PERSON')\n", - "('Phytalus', 'PERSON')\n", - "('Sinis', 'ORG')\n", - "('Pittheus', 'PERSON')\n", - "('Phaselis', 'PERSON')\n", - "('Mnesitheus', 'GPE')\n", - "('Iacchus', 'NORP')\n", - "('first', 'ORDINAL')\n", - "('Demeter', 'PERSON')\n", - "('Eleusis', 'ORG')\n", - "('1.37.5', 'CARDINAL')\n", - "('Athens', 'GPE')\n", - "('the Macedonian Harpalus', 'FAC')\n", - "('Alexander', 'PERSON')\n", "('Asia', 'LOC')\n", - "('Europe', 'LOC')\n", - "('Athens', 'GPE')\n", - "('Alexander', 'PERSON')\n", - "('Pythonice', 'ORG')\n", - "('Athens', 'GPE')\n", - "('Corinth', 'GPE')\n", - "('Greek', 'NORP')\n", - "('1.37.6', 'CARDINAL')\n", - "('Demeter', 'PERSON')\n", - "('Athena', 'ORG')\n", - "('Apollo', 'ORG')\n", - "('first', 'ORDINAL')\n", - "('Apollo', 'ORG')\n", - "('Cephalus', 'ORG')\n", - "('Deion', 'ORG')\n", - "('Amphitryon', 'PERSON')\n", - "('Teleboans', 'NORP')\n", - "('first', 'ORDINAL')\n", - "('Cephallenia', 'PERSON')\n", - "('Thebes', 'PERSON')\n", - "('Athens', 'GPE')\n", - "('Procris', 'PERSON')\n", - "('tenth', 'ORDINAL')\n", - "('Chalcinus', 'LOC')\n", - "('Daetus', 'ORG')\n", - "('Cephalus', 'ORG')\n", - "('Delphi', 'ORG')\n", - "('Athens', 'GPE')\n", - "('1.37.7', 'CARDINAL')\n", - "('first', 'ORDINAL')\n", - "('Apollo', 'ORG')\n", - "('Attica', 'GPE')\n", - "('Apollo', 'ORG')\n", + "('Sicily', 'GPE')\n", + "('Syracuse', 'GPE')\n", + "('Odyssey', 'GPE')\n", + "('Asia', 'LOC')\n", + "('Antigonus', 'LOC')\n", + "('Antigonus', 'LOC')\n", + "('Antigonus', 'LOC')\n", + "('Italy', 'GPE')\n", + "('Antigonus', 'LOC')\n", + "('Macedonia', 'GPE')\n", + "('Antigonus', 'LOC')\n", + "('Asia', 'LOC')\n", + "('Macedonia', 'GPE')\n", + "('Macedonia', 'GPE')\n", + "('Cleonymus', 'GPE')\n", + "('Leuctra', 'GPE')\n", + "('Cleomenes', 'GPE')\n", + "('Areus', 'GPE')\n", + "('Boeotia', 'GPE')\n", + "('Argives', 'GPE')\n", + "('Sparta', 'GPE')\n", + "('Sparta', 'GPE')\n", + "('Antigonus', 'LOC')\n", + "('Macedonia', 'GPE')\n", + "('Laconia', 'GPE')\n", + "('death52', 'GPE')\n", + "('Argives', 'GPE')\n", + "('Lyceas', 'GPE')\n", + "('Pythia', 'GPE')\n", + "('Argives', 'GPE')\n", + "('Dionysius', 'GPE')\n", + "('Syracuse', 'GPE')\n", + "('Antigonus', 'LOC')\n", "('Athens', 'GPE')\n", - "('Athenians', 'NORP')\n", - "('Aphrodite', 'PERSON')\n", - "('ELEUSIS', 'ORG')\n", - "('1.38.1', 'CARDINAL')\n", - "('Rheiti', 'PERSON')\n", - "('Euripus', 'ORG')\n", - "('Chalcidians', 'NORP')\n", - "('Maid', 'PERSON')\n", - "('Demeter', 'PERSON')\n", - "('Eleusinians', 'NORP')\n", - "('Athenians', 'NORP')\n", - "('1.38.2', 'CARDINAL')\n", - "('first', 'ORDINAL')\n", - "('Crocon', 'ORG')\n", - "('Athenians', 'NORP')\n", - "('Saesara', 'GPE')\n", - "('Celeus', 'PERSON')\n", - "('Scambonidae', 'ORG')\n", - "('Crocon', 'ORG')\n", - "('Eleusinians', 'NORP')\n", - "('Athenians', 'NORP')\n", - "('Eumolpus', 'GPE')\n", - "('Eumolpus', 'NORP')\n", - "('Thrace', 'GPE')\n", - "('Poseidon', 'GPE')\n", - "('Chione', 'GPE')\n", - "('Oreithyia', 'PERSON')\n", - "('Homer', 'PERSON')\n", - "('Eumolpus', 'ORG')\n", - "('1.38.3', 'CARDINAL')\n", - "('Eleusinians', 'NORP')\n", - "('Athenians', 'NORP')\n", - "('Erechtheus', 'PERSON')\n", - "('Athenians', 'NORP')\n", - "('Immaradus', 'GPE')\n", - "('Eumolpus', 'GPE')\n", - "('Eleusinians', 'NORP')\n", - "('Athenians', 'NORP')\n", - "('Two', 'CARDINAL')\n", - "('Eumolpus', 'NORP')\n", - "('Celeus', 'PERSON')\n", - "('Pamphos', 'PERSON')\n", - "('Homer', 'ORG')\n", - "('Diogenia', 'GPE')\n", - "('Pammerope', 'GPE')\n", - "('third', 'ORDINAL')\n", - "('Saesara', 'GPE')\n", - "('Ceryx', 'LOC')\n", - "('Ceryces', 'ORG')\n", - "('Cecrops', 'GPE')\n", - "('Hermes', 'ORG')\n", - "('Eumolpus', 'GPE')\n", - "('1.38.4', 'CARDINAL')\n", - "('Hippothoon', 'PERSON')\n", - "('one', 'CARDINAL')\n", - "('Zarex', 'GPE')\n", - "('Apollo', 'ORG')\n", - "('Lacedaemonian', 'PERSON')\n", - "('Zarax', 'PERSON')\n", - "('Laconian', 'NORP')\n", - "('Athenian', 'NORP')\n", - "('Zarex', 'GPE')\n", - "('ELEUSIS', 'ORG')\n", - "('Eleusis', 'ORG')\n", - "('Cephisus', 'ORG')\n", - "('Cephisus', 'ORG')\n", - "('Erineus', 'PERSON')\n", - "('Pluto', 'PERSON')\n", - "('Maid', 'PERSON')\n", - "('Cephisus Theseus', 'PERSON')\n", - "('Polypemon', 'PERSON')\n", - "('surnamed Procrustes', 'PERSON')\n", - "('1.38.6', 'CARDINAL')\n", - "('Eleusinians', 'NORP')\n", - "('Triptolemus', 'ORG')\n", - "('Artemis', 'ORG')\n", - "('Portal', 'ORG')\n", - "('Poseidon Father', 'PERSON')\n", - "('Callichorum', 'WORK_OF_ART')\n", - "('first', 'ORDINAL')\n", - "('Eleusinians', 'NORP')\n", - "('Rharium', 'PERSON')\n", - "('first', 'ORDINAL')\n", - "('first', 'ORDINAL')\n", - "('Triptolemus', 'ORG')\n", - "('1.38.7', 'CARDINAL')\n", - "('Eleusis', 'PERSON')\n", - "('Daeira', 'PERSON')\n", - "('Ocean', 'ORG')\n", - "('Ogygus', 'PERSON')\n", - "('Eleusis', 'ORG')\n", - "('ELEUTHERAE', 'EVENT')\n", - "('1.38.8', 'CARDINAL')\n", - "('Eleusis to Boeotia', 'ORG')\n", - "('Plataean', 'NORP')\n", - "('Attica', 'GPE')\n", + "('Argives', 'GPE')\n", "('Attica', 'GPE')\n", - "('Athenians', 'NORP')\n", - "('Boeotia', 'PERSON')\n", - "('Cithaeron', 'LOC')\n", - "('Eleutherae', 'PERSON')\n", - "('Athenian', 'NORP')\n", - "('Thebans', 'NORP')\n", - "('Dionysus', 'PERSON')\n", - "('Athens', 'GPE')\n", - "('Eleutherae', 'PERSON')\n", - "('1.38.9', 'CARDINAL')\n", - "('Antiope', 'PERSON')\n", - "('the spring', 'DATE')\n", - "('first', 'ORDINAL')\n", - "('Eleutherae', 'PERSON')\n", - "('Cithaeron', 'LOC')\n", - "('ELEUSIS', 'ORG')\n", - "('1.39.1', 'CARDINAL')\n", - "('XXXIX', 'ORG')\n", - "('Eleusis', 'PERSON')\n", - "('Megara', 'PERSON')\n", - "('Anthium', 'EVENT')\n", - "('Demeter', 'PERSON')\n", - "('Celeus', 'GPE')\n", - "('Argive', 'PERSON')\n", - "('Metaneira', 'PERSON')\n", - "('1.39.2', 'CARDINAL')\n", - "('Metaneira', 'PERSON')\n", - "('Thebes', 'PERSON')\n", - "('Creon', 'PRODUCT')\n", - "('Thebes', 'PERSON')\n", - "('Laodamas', 'GPE')\n", - "('Eteocles', 'LOC')\n", - "('Adrastus', 'ORG')\n", - "('Theseus', 'PERSON')\n", - "('Athenians', 'NORP')\n", - "('Boeotians', 'NORP')\n", - "('Theseus', 'PERSON')\n", - "('Eleusinian', 'NORP')\n", - "('Thebans', 'NORP')\n", - "('1.39.3', 'CARDINAL')\n", "('Argives', 'GPE')\n", - "('Alope', 'GPE')\n", - "('Hippothoon', 'PERSON')\n", - "('Poseidon', 'GPE')\n", - "('Cercyon', 'PERSON')\n", - "('the Wrestling Ground of Cercyon', 'ORG')\n", - "('Alope', 'GPE')\n", + "('Musaeus', 'GPE')\n", + "('Oceanus', 'GPE')\n", + "('Earth', 'LOC')\n", + "('Orpheus', 'GPE')\n", + "('Dysaules', 'GPE')\n", + "('Choerilus', 'GPE')\n", "('Cercyon', 'GPE')\n", - "('Theseus', 'PERSON')\n", - "('Theseus', 'PERSON')\n", - "('first', 'ORDINAL')\n", - "('Athenians', 'NORP')\n", - "('MEGARA', 'PERSON')\n", - "('1.39.4', 'CARDINAL')\n", - "('Eleusis', 'PERSON')\n", - "('Megaris', 'PERSON')\n", + "('Poseidon', 'GPE')\n", "('Athens', 'GPE')\n", - "('Pylas', 'PERSON')\n", - "('Pandion', 'LOC')\n", - "('Pandion', 'LOC')\n", - "('Nisus', 'PERSON')\n", - "('Athenians', 'NORP')\n", - "('Aegeus', 'PERSON')\n", - "('Megara', 'PERSON')\n", - "('Corinth', 'GPE')\n", - "('Megarians', 'ORG')\n", - "('Nisaea', 'GPE')\n", - "('Codrus the Peloponnesians', 'PERSON')\n", + "('Epimenides of Cnossus,53', 'GPE')\n", "('Athens', 'GPE')\n", - "('Megara', 'PERSON')\n", - "('Athenians', 'NORP')\n", - "('Corinthians', 'NORP')\n", - "('1.39.5', 'CARDINAL')\n", - "('Megarians', 'PERSON')\n", - "('Dorians', 'NORP')\n", - "('Phoroneus', 'PERSON')\n", - "('Demeter', 'PERSON')\n", - "('first', 'ORDINAL')\n", - "('Megara', 'PERSON')\n", - "('Megarians', 'PERSON')\n", - "('Boeotians', 'NORP')\n", - "('Megareus', 'PERSON')\n", + "('Glory', 'GPE')\n", "('Poseidon', 'GPE')\n", - "('Onchestus', 'ORG')\n", - "('Boeotians', 'NORP')\n", - "('Nisus', 'PERSON')\n", - "('Minos', 'ORG')\n", - "('Megara', 'PERSON')\n", - "('Nisa', 'PERSON')\n", - "('1.39.6', 'CARDINAL')\n", - "('twelfth', 'ORDINAL')\n", - "('Phoroneus the Megarians', 'ORG')\n", - "('Lelex', 'ORG')\n", - "('Egypt', 'GPE')\n", - "('Leleges', 'PERSON')\n", - "('Lelex', 'ORG')\n", - "('Cleson', 'GPE')\n", - "('Cleson Pylas', 'PERSON')\n", - "('Pylas Sciron', 'PERSON')\n", - "('Pandion', 'LOC')\n", - "('Nisus', 'PERSON')\n", - "('Pandion', 'ORG')\n", - "('Aeacus', 'ORG')\n", - "('Nisus', 'PERSON')\n", - "('Sciron', 'ORG')\n", - "('Nisus', 'PERSON')\n", - "('Megareus', 'PERSON')\n", "('Poseidon', 'GPE')\n", - "('Iphinoe', 'PERSON')\n", - "('Nisus', 'PERSON')\n", - "('the Cretan war', 'EVENT')\n", - "('Nisus', 'PERSON')\n", - "('MEGARA', 'PERSON')\n", - "('1.40.1', 'CARDINAL')\n", - "('XL', 'ORG')\n", - "('Cylon the Athenian', 'ORG')\n", - "('Theagenes', 'PERSON')\n", - "('Sithnid', 'ORG')\n", - "('Sithnid', 'ORG')\n", - "('one', 'CARDINAL')\n", - "('Zeus', 'PERSON')\n", - "('Megarus', 'PERSON')\n", - "('Zeus', 'PERSON')\n", - "('Deucalion', 'ORG')\n", - "('Gerania', 'GPE')\n", - "('Gerania', 'PERSON')\n", - "('Megarus', 'PERSON')\n", - "('1.40.2', 'CARDINAL')\n", - "('our day', 'DATE')\n", - "('Roman', 'NORP')\n", - "('Artemis', 'ORG')\n", - "('Mardonius', 'ORG')\n", - "('Mardonius at Thebes', 'ORG')\n", - "('Artemis', 'ORG')\n", - "('1.40.3', 'CARDINAL')\n", - "('the day', 'DATE')\n", - "('Megarians', 'PERSON')\n", - "('Twelve', 'CARDINAL')\n", - "('Praxiteles', 'ORG')\n", - "('Artemis', 'ORG')\n", - "('Strongylion', 'PERSON')\n", - "('1.40.4', 'CARDINAL')\n", - "('Zeus', 'PERSON')\n", - "('Zeus', 'PERSON')\n", - "('Peloponnesians', 'NORP')\n", - "('Athenians', 'NORP')\n", - "('Athenians', 'NORP')\n", - "('Zeus', 'PERSON')\n", - "('Theocosmus', 'LOC')\n", - "('Pheidias', 'PERSON')\n", - "('Zeus', 'PERSON')\n", - "('the seasons', 'DATE')\n", - "('half', 'CARDINAL')\n", - "('Theocosmus', 'LOC')\n", - "('Zeus', 'PERSON')\n", - "('1.40.5', 'CARDINAL')\n", - "('Salamis', 'PRODUCT')\n", - "('Athenians', 'NORP')\n", - "('Athenians', 'NORP')\n", - "('Megarians', 'PERSON')\n", - "('Athenians', 'NORP')\n", - "('Salamis', 'PRODUCT')\n", - "('Megarians', 'PERSON')\n", - "('Dorycleans', 'NORP')\n", - "('Salamis', 'PRODUCT')\n", - "('Athenians', 'NORP')\n", - "('1.40.6', 'CARDINAL')\n", - "('Zeus', 'PERSON')\n", - "('the present day', 'DATE')\n", - "('Caria', 'ORG')\n", - "('Phoroneus', 'PERSON')\n", - "('Dionysus Nyctelius', 'PERSON')\n", - "('Aphrodite Epistrophia', 'PERSON')\n", - "('Night', 'WORK_OF_ART')\n", - "('Zeus Conius', 'PERSON')\n", - "('Dusty', 'ORG')\n", - "('Asclepius', 'ORG')\n", - "('1.41.1', 'CARDINAL')\n", - "('XLI', 'ORG')\n", - "('Alcmena', 'ORG')\n", - "('Argos', 'ORG')\n", - "('Megara', 'PERSON')\n", - "('Heracleidae', 'PERSON')\n", - "('Alcmena', 'ORG')\n", - "('Argos', 'ORG')\n", - "('Thebes', 'PERSON')\n", - "('Thebes', 'PERSON')\n", - "('Amphitryon', 'PERSON')\n", - "('Heracles', 'PERSON')\n", - "('Megara', 'PERSON')\n", - "('Delphi', 'ORG')\n", - "('Alcmena', 'ORG')\n", - "('Megara', 'PERSON')\n", - "('1.41.2', 'CARDINAL')\n", - "('Rhus', 'ORG')\n", - "('Theagenes', 'PERSON')\n", - "('Achelous', 'PERSON')\n", - "('Hyllus', 'PRODUCT')\n", - "('Heracles', 'PERSON')\n", - "('Arcadian', 'NORP')\n", - "('Echemus', 'LOC')\n", - "('Echemus', 'ORG')\n", - "('Hyllus', 'PRODUCT')\n", - "('Hyllus', 'PRODUCT')\n", - "('Megara', 'PERSON')\n", - "('Heracleidae', 'PERSON')\n", - "('Peloponnesus', 'PRODUCT')\n", - "('Orestes', 'ORG')\n", - "('1.41.3', 'CARDINAL')\n", - "('Hyllus', 'PRODUCT')\n", - "('Isis', 'ORG')\n", - "('one', 'CARDINAL')\n", - "('Apollo', 'ORG')\n", - "('Artemis', 'ORG')\n", - "('Alcathous', 'PERSON')\n", - "('Cithaeronian', 'PRODUCT')\n", - "('Euippus', 'ORG')\n", - "('Megareus', 'GPE')\n", - "('Timalcus', 'ORG')\n", - "('Theseus', 'PERSON')\n", - "('Dioscuri', 'ORG')\n", - "('Aphidna', 'ORG')\n", - "('Megareus', 'PERSON')\n", - "('Cithaeronian', 'PERSON')\n", - "('Pelops', 'ORG')\n", - "('Artemis Agrotera', 'WORK_OF_ART')\n", - "('Apollo Agraeus', 'PERSON')\n", - "('Hunter', 'PERSON')\n", - "('Megarians', 'PERSON')\n", - "('Alcathous', 'GPE')\n", - "('Cithaeron', 'GPE')\n", - "('Timalcus', 'ORG')\n", - "('Megareus', 'PERSON')\n", - "('Theseus', 'PERSON')\n", - "('Alcman', 'NORP')\n", - "('Athens', 'GPE')\n", - "('Theseus', 'PERSON')\n", - "('Theseus', 'PERSON')\n", - "('1.41.5', 'CARDINAL')\n", - "('Pindar', 'PERSON')\n", - "('Theseus', 'PERSON')\n", - "('Dioscuri', 'ORG')\n", - "('Helen', 'PERSON')\n", - "('Peirithous', 'ORG')\n", - "('Megarians', 'PERSON')\n", - "('Theseus', 'PERSON')\n", - "('Pelops', 'ORG')\n", - "('Megarians', 'NORP')\n", - "('Nisus', 'PERSON')\n", - "('Megareus', 'PERSON')\n", - "('Nisus', 'PERSON')\n", - "('Alcathous', 'GPE')\n", - "('Megareus', 'GPE')\n", - "('Alcathous', 'PERSON')\n", - "('Elis', 'PERSON')\n", - "('Nisus', 'PERSON')\n", - "('Megarians', 'ORG')\n", - "('one', 'CARDINAL')\n", - "('Cretans', 'ORG')\n", - "('Alcathous', 'PERSON')\n", - "('Cithaeron', 'LOC')\n", - "('Artemis Agrotera', 'ORG')\n", - "('Apollo Agraeus', 'PERSON')\n", - "('Pandion', 'PERSON')\n", - "('Pandion', 'LAW')\n", - "('the Rock of Athena Aethyia', 'ORG')\n", - "('1.41.7', 'CARDINAL')\n", - "('Pandion', 'PERSON')\n", - "('Hippolyte', 'ORG')\n", - "('Megarians', 'PERSON')\n", - "('Amazons', 'ORG')\n", - "('Athenians', 'NORP')\n", - "('Antiope', 'PERSON')\n", - "('Theseus', 'PERSON')\n", - "('Hippolyte', 'ORG')\n", - "('Antiope', 'PERSON')\n", - "('Megara', 'PERSON')\n", - "('Themiscyra', 'PERSON')\n", - "('Megarians', 'PERSON')\n", - "('Amazonian', 'NORP')\n", - "('Tereus', 'GPE')\n", - "('Procne', 'PERSON')\n", - "('Pandion', 'ORG')\n", - "('Tereus', 'PERSON')\n", - "('Pagae', 'GPE')\n", - "('Springs', 'GPE')\n", - "('Megaris', 'PERSON')\n", - "('Daulis', 'GPE')\n", - "('Chaeronea', 'GPE')\n", - "('Greece', 'GPE')\n", - "('Tereus', 'PERSON')\n", - "('Philomela', 'PERSON')\n", - "('Itys', 'PERSON')\n", - "('Tereus', 'PERSON')\n", - "('1.41.9', 'CARDINAL')\n", - "('Megara', 'PERSON')\n", - "('Megarians', 'PERSON')\n", - "('first', 'ORDINAL')\n", + "('Palestine', 'GPE')\n", "('Athens', 'GPE')\n", - "('1.42.1', 'CARDINAL')\n", - "('XLII', 'ORG')\n", - "('Alcathous', 'PERSON')\n", - "('Megareus', 'GPE')\n", - "('Cretan', 'GPE')\n", - "('Onchestus', 'ORG')\n", - "('Alcathous', 'PERSON')\n", - "('first', 'ORDINAL')\n", - "('1.41.2', 'CARDINAL')\n", - "('Apollo', 'ORG')\n", - "('Alcathous', 'GPE')\n", - "('Megarians', 'PERSON')\n", - "('Athenians', 'NORP')\n", - "('Alcathous', 'PERSON')\n", - "('Periboea', 'PERSON')\n", - "('Theseus', 'PERSON')\n", - "('Crete', 'GPE')\n", - "('Megarians', 'PERSON')\n", - "('Apollo', 'ORG')\n", - "('1.41.3', 'CARDINAL')\n", - "('Egypt', 'GPE')\n", - "('Egyptian', 'NORP')\n", - "('Thebes', 'PERSON')\n", - "('Nile', 'LOC')\n", - "('Memnon', 'ORG')\n", - "('Aethiopia', 'ORG')\n", - "('Egypt', 'GPE')\n", - "('Susa', 'PERSON')\n", - "('Thebans', 'NORP')\n", - "('Memnon', 'ORG')\n", - "('Phamenoph', 'PERSON')\n", - "('Sesostris', 'NORP')\n", - "('two', 'CARDINAL')\n", - "('Cambyses', 'PERSON')\n", - "('every day', 'DATE')\n", - "('Timalcus', 'ORG')\n", - "('Theseus', 'PERSON')\n", - "('Athena', 'ORG')\n", - "('Athena Victory', 'ORG')\n", - "('a third', 'CARDINAL')\n", - "('Athena Aeantis', 'NORP')\n", - "('Megarian', 'NORP')\n", - "('Telamon', 'PERSON')\n", - "('Aeacus', 'ORG')\n", - "('Periboea', 'ORG')\n", - "('Alcathous', 'GPE')\n", - "('Ajax', 'ORG')\n", - "('Alcathous', 'GPE')\n", - "('Athena', 'ORG')\n", - "('1.41.5', 'CARDINAL')\n", - "('Apollo', 'ORG')\n", - "('Hadrian', 'NORP')\n", - "('Apollo', 'ORG')\n", - "('Pythian', 'PERSON')\n", - "('one', 'CARDINAL')\n", - "('Decatephorus (Bringer of Tithes', 'ORG')\n", - "('Egyptian', 'NORP')\n", - "('one', 'CARDINAL')\n", - "('Aeginetan', 'ORG')\n", - "('Cyprus', 'GPE')\n", - "('Aethiopians', 'PERSON')\n", - "('Demeter Thesmophorus', 'PERSON')\n", - "('Callipolis', 'NORP')\n", - "('Alcathous', 'GPE')\n", - "('Alcathous', 'PERSON')\n", - "('Ischepolis', 'PERSON')\n", - "('Aetolia', 'GPE')\n", - "('Callipolis', 'NORP')\n", - "('first', 'ORDINAL')\n", - "('Apollo', 'ORG')\n", - "('Alcathous', 'PERSON')\n", - "('Ischepolis', 'NORP')\n", - "('Callipolis', 'NORP')\n", - "('one', 'CARDINAL')\n", - "('1.41.7', 'CARDINAL')\n", - "('Ino', 'PERSON')\n", - "('Greeks', 'NORP')\n", - "('Ino', 'PERSON')\n", - "('Cleso', 'ORG')\n", - "('Tauropolis', 'PERSON')\n", - "('Cleson', 'GPE')\n", - "('Lelex', 'ORG')\n", - "('first', 'ORDINAL')\n", - "('Leucothea', 'PERSON')\n", - "('1.42.1', 'CARDINAL')\n", - "('XLII', 'ORG')\n", - "('Alcathous', 'PERSON')\n", - "('Megareus', 'GPE')\n", - "('Cretan', 'GPE')\n", - "('Onchestus', 'ORG')\n", - "('Alcathous', 'PERSON')\n", - "('first', 'ORDINAL')\n", - "('1.42.2', 'CARDINAL')\n", - "('Apollo', 'ORG')\n", - "('Alcathous', 'GPE')\n", - "('Megarians', 'PERSON')\n", - "('Athenians', 'NORP')\n", - "('Alcathous', 'PERSON')\n", - "('Periboea', 'PERSON')\n", - "('Theseus', 'PERSON')\n", - "('Crete', 'GPE')\n", - "('Megarians', 'PERSON')\n", - "('Apollo', 'ORG')\n", - "('1.42.3', 'CARDINAL')\n", - "('Egypt', 'GPE')\n", - "('Egyptian', 'NORP')\n", - "('Thebes', 'PERSON')\n", - "('Nile', 'LOC')\n", - "('Memnon', 'ORG')\n", - "('Aethiopia', 'ORG')\n", - "('Egypt', 'GPE')\n", - "('Susa', 'PERSON')\n", - "('Thebans', 'NORP')\n", - "('Memnon', 'ORG')\n", - "('Phamenoph', 'PERSON')\n", - "('Sesostris', 'NORP')\n", - "('two', 'CARDINAL')\n", - "('Cambyses', 'PERSON')\n", - "('every day', 'DATE')\n", - "('1.42.4', 'CARDINAL')\n", - "('Timalcus', 'ORG')\n", - "('Theseus', 'PERSON')\n", - "('Athena', 'ORG')\n", - "('Athena Victory', 'ORG')\n", - "('a third', 'CARDINAL')\n", - "('Athena Aeantis', 'NORP')\n", - "('Megarian', 'NORP')\n", - "('Telamon', 'PERSON')\n", - "('Aeacus', 'ORG')\n", - "('Periboea', 'ORG')\n", - "('Alcathous', 'GPE')\n", - "('Ajax', 'ORG')\n", - "('Alcathous', 'GPE')\n", - "('Athena', 'ORG')\n", - "('1.42.5', 'CARDINAL')\n", - "('Apollo', 'ORG')\n", - "('Hadrian', 'NORP')\n", - "('Apollo', 'ORG')\n", - "('Pythian', 'PERSON')\n", - "('one', 'CARDINAL')\n", - "('Decatephorus (Bringer of Tithes', 'ORG')\n", - "('Egyptian', 'NORP')\n", - "('one', 'CARDINAL')\n", - "('Aeginetan', 'ORG')\n", - "('Cyprus', 'GPE')\n", - "('Aethiopians', 'PERSON')\n", - "('1.42.6', 'CARDINAL')\n", - "('Demeter Thesmophorus', 'PERSON')\n", - "('Callipolis', 'NORP')\n", - "('Alcathous', 'GPE')\n", - "('Alcathous', 'PERSON')\n", - "('Ischepolis', 'PERSON')\n", - "('Aetolia', 'GPE')\n", - "('Callipolis', 'NORP')\n", - "('first', 'ORDINAL')\n", - "('Apollo', 'ORG')\n", - "('Alcathous', 'PERSON')\n", - "('Ischepolis', 'NORP')\n", - "('Callipolis', 'NORP')\n", - "('one', 'CARDINAL')\n", - "('1.42.7', 'CARDINAL')\n", - "('Ino', 'PERSON')\n", - "('Greeks', 'NORP')\n", - "('Ino', 'PERSON')\n", - "('Cleso', 'ORG')\n", - "('Tauropolis', 'PERSON')\n", - "('Cleson', 'GPE')\n", - "('Lelex', 'ORG')\n", - "('first', 'ORDINAL')\n", - "('Leucothea', 'PERSON')\n", - "('1.43.1', 'CARDINAL')\n", - "('Iphigenia', 'PERSON')\n", - "('Megara', 'PERSON')\n", - "('Iphigenia', 'GPE')\n", - "('Arcadians', 'NORP')\n", - "('Hesiod', 'PERSON')\n", - "('A Catalogue of Women', 'WORK_OF_ART')\n", - "('Iphigenia', 'ORG')\n", - "('Artemis', 'ORG')\n", - "('Hecate', 'ORG')\n", - "('Herodotus', 'NORP')\n", - "('Tauri', 'GPE')\n", - "('Scythia', 'GPE')\n", - "('Iphigenia', 'GPE')\n", - "('Agamemnon', 'ORG')\n", - "('Adrastus', 'ORG')\n", - "('Megarians', 'PERSON')\n", - "('Thebes', 'PERSON')\n", - "('Aegialeus', 'GPE')\n", - "('Artemis', 'ORG')\n", - "('Agamemnon', 'ORG')\n", - "('Calchas', 'PERSON')\n", - "('Megara', 'PERSON')\n", - "('Troy', 'PERSON')\n", - "('1.43.2', 'CARDINAL')\n", - "('Euippus', 'ORG')\n", - "('Megareus', 'GPE')\n", - "('Ischepolis', 'PERSON')\n", - "('Alcathous', 'GPE')\n", - "('Anaclethris', 'PERSON')\n", - "('Demeter', 'PERSON')\n", - "('our day', 'DATE')\n", - "('Megarian', 'NORP')\n", - "('Megarians', 'PERSON')\n", - "('Persian', 'NORP')\n", - "('the Aesymnium (Shrine of Aesymnus', 'ORG')\n", - "('Agamemnon', 'ORG')\n", - "('Hyperion', 'ORG')\n", - "('Megara', 'PERSON')\n", - "('Sandion', 'ORG')\n", - "('one', 'CARDINAL')\n", - "('Aesymnus', 'GPE')\n", - "('second', 'ORDINAL')\n", - "('Megarians', 'PERSON')\n", - "('Delphi', 'ORG')\n", - "('1.43.4', 'CARDINAL')\n", - "('Alcathous', 'GPE')\n", - "('my day', 'DATE')\n", - "('Megarians', 'PERSON')\n", - "('Pyrgo', 'ORG')\n", - "('Alcathous', 'GPE')\n", - "('Euaechme', 'PERSON')\n", - "('Megareus', 'PERSON')\n", - "('Iphinoe', 'GPE')\n", - "('Alcathous', 'GPE')\n", - "('Iphiaoe', 'GPE')\n", - "('Delians', 'NORP')\n", - "('Hecaerge', 'PERSON')\n", - "('Opis', 'PERSON')\n", - "('Dionysus', 'PERSON')\n", - "('Astycratea', 'ORG')\n", - "('Manto', 'PERSON')\n", - "('Polyidus', 'GPE')\n", - "('Coeranus', 'GPE')\n", - "('Abas', 'ORG')\n", - "('Melampus', 'ORG')\n", - "('Megara', 'PERSON')\n", - "('Alcathous', 'PERSON')\n", - "('Callipolis', 'NORP')\n", - "('Polyidus', 'PERSON')\n", - "('Dionysus', 'PERSON')\n", - "('our day', 'DATE')\n", - "('Parian', 'NORP')\n", - "('Praxiteles', 'ORG')\n", - "('Dionysus', 'PERSON')\n", - "('Dasyllius', 'PERSON')\n", - "('Euchenor', 'PRODUCT')\n", - "('Coeranus', 'GPE')\n", - "('Polyidus', 'GPE')\n", - "('1.43.6', 'CARDINAL')\n", - "('Dionysus', 'PERSON')\n", - "('Aphrodite', 'PERSON')\n", - "('Aphrodite surnamed Praxis (Action', 'ORG')\n", - "('Consoler', 'PERSON')\n", - "('Praxiteles', 'ORG')\n", - "('Scopas', 'PERSON')\n", - "('Love and Desire', 'WORK_OF_ART')\n", - "('Aphrodite', 'PERSON')\n", - "('Fortune', 'WORK_OF_ART')\n", - "('Praxiteles', 'ORG')\n", - "('Zeus', 'PERSON')\n", - "('Lysippus', 'PERSON')\n", - "('1.43.7', 'CARDINAL')\n", - "('Coroebus', 'ORG')\n", - "('Argos', 'ORG')\n", - "('Crotopus', 'PRODUCT')\n", - "('Argos', 'ORG')\n", - "('Crotopus', 'ORG')\n", - "('Apollo', 'ORG')\n", - "('Crotopus', 'ORG')\n", - "('Apollo', 'ORG')\n", - "('Vengeance', 'PERSON')\n", - "('Argives', 'GPE')\n", - "('Coroebus', 'ORG')\n", - "('Argives', 'GPE')\n", - "('second', 'ORDINAL')\n", - "('Coroebus', 'ORG')\n", - "('Delphi', 'ORG')\n", - "('Vengeance', 'PERSON')\n", - "('1.43.8', 'CARDINAL')\n", - "('Pythia', 'GPE')\n", - "('Coroebus', 'ORG')\n", - "('Argos', 'ORG')\n", - "('Apollo', 'ORG')\n", - "('Mount Gerania', 'LOC')\n", - "('Coroebus', 'ORG')\n", - "('Coroebus', 'ORG')\n", - "('Coroebus', 'ORG')\n", - "('Greeks', 'NORP')\n", - "('1.44.1', 'CARDINAL')\n", - "('XLIV', 'ORG')\n", - "('Coroebus', 'ORG')\n", - "('Orsippus', 'PERSON')\n", - "('Olympia', 'PRODUCT')\n", - "('Orsippus', 'PERSON')\n", - "('Olympia', 'PERSON')\n", - "('more easily than one', 'CARDINAL')\n", - "('1.44.2', 'CARDINAL')\n", - "('Apollo Prostaterius (Protecting', 'ORG')\n", - "('Apollo', 'ORG')\n", - "('Artemis', 'ORG')\n", - "('Leto', 'PERSON')\n", - "('Praxiteles', 'ORG')\n", - "('the Gate of the Nymphs', 'FAC')\n", - "('Apollo Carinus', 'ORG')\n", - "('Eileithyiae', 'NORP')\n", - "('NISAEA', 'ORG')\n", - "('1.44.3', 'CARDINAL')\n", - "('the present day', 'DATE')\n", - "('Nisaea', 'GPE')\n", - "('Demeter Malophorus', 'PERSON')\n", - "('Apple', 'ORG')\n", - "('One', 'CARDINAL')\n", - "('first', 'ORDINAL')\n", - "('Demeter Malophorus', 'PERSON')\n", - "('Nisaea', 'GPE')\n", - "('Lelex', 'GPE')\n", - "('Egypt', 'GPE')\n", - "('Poseidon', 'GPE')\n", - "('Libya', 'GPE')\n", - "('Epphus', 'NORP')\n", - "('Nisaea', 'GPE')\n", - "('Minoa', 'GPE')\n", - "('Nisus', 'PERSON')\n", - "('Cretans', 'ORG')\n", - "('1.44.4', 'CARDINAL')\n", - "('Megaris', 'PERSON')\n", - "('Boeotia', 'PERSON')\n", - "('Megarians', 'PERSON')\n", - "('Pagae', 'NORP')\n", - "('Aegosthena', 'ORG')\n", - "('Pagae', 'GPE')\n", - "('Persians', 'NORP')\n", - "('Pagae', 'GPE')\n", - "('Artemis', 'ORG')\n", - "('Megara', 'PERSON')\n", - "('Aegialeus', 'PERSON')\n", - "('Adrastus', 'ORG')\n", - "('Argives', 'PERSON')\n", - "('second', 'ORDINAL')\n", - "('Thebes', 'PERSON')\n", - "('Glisas', 'GPE')\n", - "('first', 'ORDINAL')\n", - "('Pagae', 'NORP')\n", - "('Megaris', 'GPE')\n", - "('Aegialeum', 'ORG')\n", - "('1.44.5', 'CARDINAL')\n", - "('Aegosthena', 'ORG')\n", - "('Melampus', 'PRODUCT')\n", - "('Amythaon', 'GPE')\n", - "('Melampus', 'PRODUCT')\n", - "('Erenea', 'GPE')\n", - "('Autonoe', 'PERSON')\n", - "('Cadmus', 'ORG')\n", - "('Thebes', 'PERSON')\n", - "('Autonoe', 'PERSON')\n", - "('1.44.6', 'CARDINAL')\n", - "('Megara', 'PERSON')\n", - "('Corinth', 'GPE')\n", - "('Samian', 'NORP')\n", - "('Cleopatra', 'PERSON')\n", - "('Philip', 'PERSON')\n", - "('Amyntas', 'ORG')\n", - "('Car', 'PRODUCT')\n", - "('Phoroneus', 'PERSON')\n", - "('Greeks', 'NORP')\n", - "('Scironian', 'NORP')\n", - "('Sciron', 'PERSON')\n", - "('Megarians', 'PERSON')\n", - "('Hadrian', 'NORP')\n", - "('Molurian', 'NORP')\n", - "('Ino', 'PERSON')\n", - "('Melicertes', 'PERSON')\n", - "('Learchus', 'NORP')\n", - "('One', 'CARDINAL')\n", - "('Athamas', 'ORG')\n", - "('Ino', 'PERSON')\n", - "('Orchomenians', 'PERSON')\n", - "('Phrixus', 'NORP')\n", - "('Ino', 'PERSON')\n", - "('the Molurian Rock', 'LOC')\n", - "('the Corinthian Isthmus', 'ORG')\n", - "('Melicertes', 'PERSON')\n", - "('Palaemon', 'PERSON')\n", - "('Isthmian', 'NORP')\n", - "('Molurian', 'ORG')\n", - "('Leucothea', 'PERSON')\n", - "('Palaemon', 'PERSON')\n", - "('Sciron', 'ORG')\n", - "('Sciron', 'ORG')\n", - "('Theseus', 'PERSON')\n", - "('1.44.9', 'CARDINAL')\n", - "('Releaser', 'PERSON')\n", - "('the Greeks Aeacus', 'ORG')\n", - "('Aegina', 'GPE')\n", - "('Zeus', 'PERSON')\n", - "('Greeks', 'NORP')\n", - "('Zeus', 'PERSON')\n", - "('Aphesius', 'PERSON')\n", - "('Aphrodite,', 'ORG')\n", - "('Apollo', 'ORG')\n", - "('Eurystheus', 'GPE')\n", - "('Attica', 'GPE')\n", - "('Heracleidae', 'PERSON')\n", - "('Iolaus', 'PERSON')\n", - "('Apollo Latous', 'PERSON')\n", - "('Megara', 'PERSON')\n", - "('Corinth', 'GPE')\n", - "('Hyllus', 'PRODUCT')\n", - "('Heracles', 'PERSON')\n", - "('the Arcadian Echemus', 'ORG')\n" + "('Seleucus', 'GPE')\n", + "('Macedonia', 'GPE')\n", + "('Pella', 'GPE')\n" ] } ], "source": [ - "# We're running these lines in a separate cell so that we don't\n", - "# need to run the full analysis each time we inspect the results.\n", - "\n", - "ents = [(e.text, e.label_) for e in doc.ents]\n", + "ents = [(e.text, e.label_) for e in doc.ents \n", + " if e.label_ in (\"LOC\",\"GPE\")]\n", "\n", "for ent in ents:\n", " print(ent)" @@ -4463,63 +1028,121 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 51, "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "0" + "Counter({('Egypt', 'GPE'): 19,\n", + " ('Antigonus', 'LOC'): 17,\n", + " ('Seleucus', 'GPE'): 12,\n", + " ('Ptolemy', 'GPE'): 11,\n", + " ('Macedonia', 'GPE'): 10,\n", + " ('Asia', 'LOC'): 7,\n", + " ('Athens', 'GPE'): 7,\n", + " ('Argives', 'GPE'): 6,\n", + " ('Cyprus', 'GPE'): 5,\n", + " ('Magas', 'GPE'): 5,\n", + " ('Philip', 'GPE'): 4,\n", + " ('Neoptolemus', 'GPE'): 4,\n", + " ('Italy', 'GPE'): 4,\n", + " ('Perdiccas', 'GPE'): 3,\n", + " ('Berenice', 'GPE'): 3,\n", + " ('Agathocles', 'GPE'): 3,\n", + " ('Poseidon', 'GPE'): 3,\n", + " ('Memphis', 'GPE'): 2,\n", + " ('Thrace', 'GPE'): 2,\n", + " ('Philetaerus', 'GPE'): 2,\n", + " ('Calauria', 'GPE'): 2,\n", + " ('Thessaly', 'GPE'): 2,\n", + " ('Cestrinus', 'LOC'): 2,\n", + " ('Greece', 'GPE'): 2,\n", + " ('Syracuse', 'GPE'): 2,\n", + " ('Sparta', 'GPE'): 2,\n", + " ('Phoenicia', 'GPE'): 1,\n", + " ('Libya', 'GPE'): 1,\n", + " ('Hellespont', 'GPE'): 1,\n", + " ('Antigonus Ptolemy', 'GPE'): 1,\n", + " ('Antigonus, Ptolemy', 'GPE'): 1,\n", + " ('Docimus', 'GPE'): 1,\n", + " ('Lycurgus,29', 'GPE'): 1,\n", + " ('Locrus', 'GPE'): 1,\n", + " ('Heracles', 'GPE'): 1,\n", + " ('Aristogiton', 'GPE'): 1,\n", + " ('EGYPT', 'GPE'): 1,\n", + " ('Getae', 'GPE'): 1,\n", + " ('Ephesus', 'GPE'): 1,\n", + " ('Lebedos', 'GPE'): 1,\n", + " ('Phoenix', 'GPE'): 1,\n", + " ('Macedon', 'GPE'): 1,\n", + " ('Babylon', 'GPE'): 1,\n", + " ('Asia,40', 'GPE'): 1,\n", + " ('Cardia', 'GPE'): 1,\n", + " ('Helenus', 'GPE'): 1,\n", + " ('Pielus', 'GPE'): 1,\n", + " ('Teuthrania', 'GPE'): 1,\n", + " ('Oeneadae', 'GPE'): 1,\n", + " ('the Ionian Sea', 'LOC'): 1,\n", + " ('Sicily', 'GPE'): 1,\n", + " ('Odyssey', 'GPE'): 1,\n", + " ('Cleonymus', 'GPE'): 1,\n", + " ('Leuctra', 'GPE'): 1,\n", + " ('Cleomenes', 'GPE'): 1,\n", + " ('Areus', 'GPE'): 1,\n", + " ('Boeotia', 'GPE'): 1,\n", + " ('Laconia', 'GPE'): 1,\n", + " ('death52', 'GPE'): 1,\n", + " ('Lyceas', 'GPE'): 1,\n", + " ('Pythia', 'GPE'): 1,\n", + " ('Dionysius', 'GPE'): 1,\n", + " ('Attica', 'GPE'): 1,\n", + " ('Musaeus', 'GPE'): 1,\n", + " ('Oceanus', 'GPE'): 1,\n", + " ('Earth', 'LOC'): 1,\n", + " ('Orpheus', 'GPE'): 1,\n", + " ('Dysaules', 'GPE'): 1,\n", + " ('Choerilus', 'GPE'): 1,\n", + " ('Cercyon', 'GPE'): 1,\n", + " ('Epimenides of Cnossus,53', 'GPE'): 1,\n", + " ('Glory', 'GPE'): 1,\n", + " ('Palestine', 'GPE'): 1,\n", + " ('Pella', 'GPE'): 1})" ] }, - "execution_count": 7, + "execution_count": 51, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "doc.ents[0].start\n", - "# can also do for key words in context (word token, -4, +5)\n", - "# also read documentation/website" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - ":::{note}\n", - "What is the type of the results in `ents`?\n", - ":::{answer}\n", - "e.text, e.label = string\n", - "otherwise \"span objects\"\n", - "touples of strings" + "from collections import Counter\n", + "\n", + "ents = [(e.text, e.label_) for e in doc.ents\n", + " if e.label_ in (\"LOC\",\"GPE\")]\n", + "\n", + "Counter(ents)\n" ] }, { - "cell_type": "markdown", + "cell_type": "code", + "execution_count": 53, "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "189" + ] + }, + "execution_count": 53, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "## Looking up coordinates\n", - "\n", - "While these results are far from perfect — \"Hyllus,\" at least in my practice runs, was classified as a \"PRODUCT\" rather than a \"PERSON\" — they're fairly useful in broad strokes for our purposes.\n", - "\n", - "But we still need to add coordinates, and we have over 4000 entities to link. How can we go about doing this scalably?\n", - "\n", - "## Build a search tool\n", - "\n", - "All of the data we need is available through [Pleiades](https://pleiades.stoa.org) and [ToposText](https://topostext.org), but the strings that are labeled by our NER model might not match the titles of places available from these sources. We could build a search index that lets us match titles mor flexibly, but that is beyond the scope of our work for today.\n", - "\n", - "## Annotate by hand\n", - "\n", - "Instead, working in groups, choose about **20** places from the NER list that you would like to map. You could even pull them out randomly, if you'd like.\n", - "\n", - "Then, using Pleiades's own search tool, find the coordinates for each location. Store this data, along with any contextual information or descriptions that you deem relevant, in a CSV or spreadsheet that you can upload to ArcGIS.\n", - "\n", - ":::{note}\n", - "Can you also include a `count` parameter for how often each place is mentioned in Book 1?\n", - ":::\n", - "\n", - "If you find that your group is working particularly quickly, grab another 10 placenames, or experiment with mapping specific sections of Pausanias' text." + "len([(e.text, e.label_) for e in doc.ents\n", + " if e.label_ in (\"LOC\",\"GPE\")])" ] }, { From 9e8f2b8fd8a7eee698275b4a8f0827a32f6316c5 Mon Sep 17 00:00:00 2001 From: jthorne2000 Date: Fri, 9 May 2025 05:49:02 +0000 Subject: [PATCH 7/8] finished --- 11_nlp.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/11_nlp.ipynb b/11_nlp.ipynb index 4222a84..2e2baa8 100644 --- a/11_nlp.ipynb +++ b/11_nlp.ipynb @@ -819,7 +819,7 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 54, "metadata": {}, "outputs": [ { From 3bacec5fbaa86f634e7e68649c8c45128bb8d998 Mon Sep 17 00:00:00 2001 From: jthorne2000 Date: Fri, 9 May 2025 05:49:32 +0000 Subject: [PATCH 8/8] finished --- .vscode/settings.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 972944b..c8b39f6 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,3 +1,6 @@ { - "search.useIgnoreFiles": true + "search.useIgnoreFiles": true, + "githubPullRequests.ignoredPullRequestBranches": [ + "main" + ] } \ No newline at end of file