diff --git a/.ipynb_checkpoints/Continuity-Margins-checkpoint.ipynb b/.ipynb_checkpoints/Continuity-Margins-checkpoint.ipynb new file mode 100644 index 0000000..922f153 --- /dev/null +++ b/.ipynb_checkpoints/Continuity-Margins-checkpoint.ipynb @@ -0,0 +1,364 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "from digital_manuscript import BnF\n", + "manuscript = BnF()" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "df = pd.DataFrame(columns=['entry_id', 'version', 'position', 'render', 'length'])\n", + "i = 0\n", + "for identity, entry in manuscript.entries.items():\n", + " if len(entry.margins) > 0:\n", + " for version, margin_list in entry.margins.items():\n", + " for margin in margin_list:\n", + " df.loc[i] = [identity, version, margin.position, margin.render, margin.length]\n", + " i += 1\n", + "df.to_csv('margins.csv', index=False)\n", + " \n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "import re\n", + "\n", + "def find_percent_marginal(entry, version):\n", + " if len(entry.margins) == 0:\n", + " return 0\n", + "\n", + " margin_sum = 0\n", + " for margin in entry.margins[version]:\n", + " margin_sum += margin.length\n", + " \n", + " return 100 * margin_sum/entry.length[version]\n", + "\n", + "def find_percent_continued(entry, version):\n", + " continued_sum = 0\n", + " parts = re.findall(r'((.*?))', re.sub(r'\\s+', ' ', entry.text(version, True)))\n", + " for part in parts:\n", + " _, attributes, text = part\n", + " if 'continues=\"yes\"' in attributes:\n", + " text = re.sub(r'<.*?>', '', text)\n", + " continued_sum += len(text)\n", + " return 100 * continued_sum / entry.length[version]\n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": 53, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
entry_idlength_tclength_tcnlength_tlpercent_marginal_tcpercent_marginal_tcnpercent_marginal_tlpercent_continued_tcpercent_continued_tcnpercent_continued_tl
0001r_129230229995.20547995.03311394.9832780.00.00.0
1001r_213314013196.24060295.00000096.1832060.00.00.0
2001r_315021513151197.93608597.95109198.1469230.00.00.0
3001r_494989681.91489482.65306184.3750000.00.00.0
4001v_13924063720.0000000.0000000.0000000.00.00.0
.................................
924170r_663164758035.34072935.70324636.7241380.00.00.0
925170v_14985075230.0000000.0000000.0000000.00.00.0
926170v_226927828216.72862515.82733815.9574470.00.00.0
927170v_349751053612.27364211.76470611.5671640.00.00.0
928170v_42862962920.0000000.0000000.0000000.00.00.0
\n", + "

929 rows × 10 columns

\n", + "
" + ], + "text/plain": [ + " entry_id length_tc length_tcn length_tl percent_marginal_tc \\\n", + "0 001r_1 292 302 299 95.205479 \n", + "1 001r_2 133 140 131 96.240602 \n", + "2 001r_3 1502 1513 1511 97.936085 \n", + "3 001r_4 94 98 96 81.914894 \n", + "4 001v_1 392 406 372 0.000000 \n", + ".. ... ... ... ... ... \n", + "924 170r_6 631 647 580 35.340729 \n", + "925 170v_1 498 507 523 0.000000 \n", + "926 170v_2 269 278 282 16.728625 \n", + "927 170v_3 497 510 536 12.273642 \n", + "928 170v_4 286 296 292 0.000000 \n", + "\n", + " percent_marginal_tcn percent_marginal_tl percent_continued_tc \\\n", + "0 95.033113 94.983278 0.0 \n", + "1 95.000000 96.183206 0.0 \n", + "2 97.951091 98.146923 0.0 \n", + "3 82.653061 84.375000 0.0 \n", + "4 0.000000 0.000000 0.0 \n", + ".. ... ... ... \n", + "924 35.703246 36.724138 0.0 \n", + "925 0.000000 0.000000 0.0 \n", + "926 15.827338 15.957447 0.0 \n", + "927 11.764706 11.567164 0.0 \n", + "928 0.000000 0.000000 0.0 \n", + "\n", + " percent_continued_tcn percent_continued_tl \n", + "0 0.0 0.0 \n", + "1 0.0 0.0 \n", + "2 0.0 0.0 \n", + "3 0.0 0.0 \n", + "4 0.0 0.0 \n", + ".. ... ... \n", + "924 0.0 0.0 \n", + "925 0.0 0.0 \n", + "926 0.0 0.0 \n", + "927 0.0 0.0 \n", + "928 0.0 0.0 \n", + "\n", + "[929 rows x 10 columns]" + ] + }, + "execution_count": 53, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df = pd.DataFrame(columns=['entry_id', 'length_tc', 'length_tcn', 'length_tl',\n", + " 'percent_marginal_tc', 'percent_marginal_tcn', 'percent_marginal_tl',\n", + " 'percent_continued_tc', 'percent_continued_tcn', 'percent_continued_tl'])\n", + "versions = ['tc', 'tcn', 'tl']\n", + "i=0\n", + "\n", + "for identity, entry in manuscript.entries.items():\n", + " if len(entry.margins) > 0 or 'continues=\"yes\"' in entry.text('tl', xml=True):\n", + " percent_marginal, percent_continued = {}, {}\n", + " for version in versions:\n", + " percent_marginal[version] = find_percent_marginal(entry, version)\n", + " percent_continued[version] = find_percent_continued(entry, version)\n", + "\n", + " df.loc[i] = [entry.identity, entry.length['tc'], entry.length['tcn'], entry.length['tl'],\n", + " percent_marginal['tc'], percent_marginal['tcn'], percent_marginal['tl'],\n", + " percent_continued['tc'], percent_continued['tcn'], percent_continued['tl']]\n", + " i += 1\n", + "df\n", + " \n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "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.7.4" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/.ipynb_checkpoints/Jan30-checkpoint.ipynb b/.ipynb_checkpoints/Jan30-checkpoint.ipynb deleted file mode 100644 index c0fa523..0000000 --- a/.ipynb_checkpoints/Jan30-checkpoint.ipynb +++ /dev/null @@ -1,2062 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Introduction" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "sup boi!!" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Right now, this notebook is not connected to the code defining the manuscript object. We access it with the following import statement. " - ] - }, - { - "cell_type": "code", - "execution_count": 1, - "metadata": {}, - "outputs": [], - "source": [ - "from digital_manuscript import BnF" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "BnF is the name of a class, or plans for creating a specific collection of data, called an instance or object. " - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": {}, - "outputs": [], - "source": [ - "manuscript = BnF() # create an instance of the BnF() class named 'manuscript'" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The Manuscipt Object is a container, meaning it stores and catalogues other Python objects. In this case, the objects within the container represent individual entries separated by div tags. The entries are indentified, or indexed, by their div id. We can use the div id to retrieve the entry object from the manuscript." - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": {}, - "outputs": [], - "source": [ - "sword_varnish = manuscript.entry('004v_1')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The entry objects have encoded features, or attributes of their own. Given any entry object, we can, for example, recover its div id. " - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "'004v_1'" - ] - }, - "execution_count": 4, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "sword_varnish.identity" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Entry Attributes" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "'Black varnish for sword guard, bands for trunks, &c'" - ] - }, - "execution_count": 5, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "sword_varnish.get_title('tl')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The entry class has a built in `.text()` function to retrieve the text. There are two parameters for this retreival, the version of the manuscript (tc, tcn, or tl), and whether or not to include the XML tags. The manuscript version must be specified, but if the XML parameter is left blank, it defaults to removing the XML. " - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "' Black varnish for sword guard, bands for trunks, &c Take linseed oil or more cheaply, walnut oil, and rid it of grease with garlic & onions +hog’s fennel, some also add bread crusts, which you will boil in it for a good quarter of an hour. Next, put in one lb of the oil thus boiled the size of a walnut of black pitch & a double handful of grains of wheat, without removing the garlic & onions, and let it boil together for a good quarter of an hour. And when the pitch is well melted & when the oil has body, you can remove it from the fire. Then, to varnish, place your iron over a low charcoal fire & apply your varnish with a feather or a brush. And when you see that it no longer smokes, it is done and your varnish is dry. For excellent black varnish, add two or three paternoster beads of jet among the rest. Some consider walnut oil better. If there is a lot of varnish, it needs to boil for at least half a day, for it is better the more it boils. It is dangerous if it catches fire, if it goes over the top, and is hard to extinguish. Make this therefore in a courtyard or an open space. In five or six lb of oil, one must put one lb of galipot, which costs 4 sous, & some peeled garlic cloves. This varnish in and of itself is not black, but it blackens over the fire. See below, around the 3rd part of this book, after sands, in the chapter on furbishers. '" - ] - }, - "execution_count": 6, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "sword_varnish.text('tl')" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "'
Vernis noir pour garde despee bandes de bahus & Prens huile de lin ou pour meilleur marche de lhuile de noix Et la fais desgraisser avecq des aulx & oignons +queues de pourrceaulx aulcuns adjoustent des crostes de pain que tu feras bouillir dedans un bon quart dheure Apres mects dans une lb dhuile ainsy bouilly la grosseur dune noix de poix noire & une joinctee de bled de froment sans oster les aulx & oignons Et laisser bouillir ensemble un bon quart dheure Et quand la poix est bien fondue & que lhuile a corps Tu le peulx tirer du foeu Puys pour vernir mects ton fer sur le foeu legier de charbons & aplique avecques une plume ou broisse ton vernis Et quand tu verras quil ne fumera plus cest faict et ton vernis est sec Pour excellent vernis noir mects deulx ou trois patenostres de geyct parmy le reste Aulcuns estiment lhuile de noix meilleur Sil y a quantite de vernis il fault bien quil bouille un demy jourCar il est meilleur tant plus il boult Il est dangereux que le feu sy mecte sil sen va par dessus et est malaise destaindre Fais le doncq dans une basse court ou lieu descouvert En cinq ou six lb dhuile on mect une lb de Galipot qui coste 4 sols & des gousses dail pelees Ce vernis de soymesme nest pas noir Mays il se noircist au foeu Voy cy apres vers la 3 partye de ce livre apres les sables au chapitre du fourbisseur
'" - ] - }, - "execution_count": 7, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "sword_varnish.text('tc', xml=True)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Properties are XML tagged data manually added to the manuscript. The `.prop()` function retrieves this data and takes two parameters, the property type and the version of the manuscript. The full list of properties and the syntax for retrieving the properities are shown below." - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "['jet',\n", - " 'galipot',\n", - " 'black varnish',\n", - " 'pitch',\n", - " 'smokes',\n", - " 'black pitch',\n", - " 'garlic',\n", - " 'oil',\n", - " 'sands',\n", - " 'bread crusts',\n", - " 'hog’s fennel',\n", - " 'walnut oil',\n", - " 'peeled garlic cloves',\n", - " 'iron',\n", - " 'grains of wheat',\n", - " 'onions',\n", - " 'varnish',\n", - " 'charcoal',\n", - " 'linseed oil']" - ] - }, - "execution_count": 8, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "sword_varnish_materials = sword_varnish.get_prop('material', 'tl')\n", - "sword_varnish_materials" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "['oignons',\n", - " 'queues de pourrceaulx',\n", - " 'noix',\n", - " 'ail',\n", - " 'aulx',\n", - " 'lin',\n", - " 'bled de froment']" - ] - }, - "execution_count": 9, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "sword_varnish_plants = sword_varnish.get_prop('plant', 'tcn')\n", - "sword_varnish_plants" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Manuscript Attributes" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The property attribute of the entries can be used to group entries with similar properties. The `.search` function for the BnF() class can be used for this purpose with varying degrees of specification. First, we can simply specify whether or not a property appears in a manuscript. We can apply as many properties as we care to specify to the search, and if none are specified the entire manuscript will be returned." - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "['001r_1',\n", - " '001v_1',\n", - " '002r_2',\n", - " '002v_2',\n", - " '002v_3',\n", - " '003r_1',\n", - " '003r_2',\n", - " '003r_3',\n", - " '003v_1',\n", - " '004r_1',\n", - " '004r_2',\n", - " '004v_1',\n", - " '004v_2',\n", - " '004v_3',\n", - " '005r_1',\n", - " '005r_2',\n", - " '005v_1',\n", - " '006r_1',\n", - " '006v_1',\n", - " '006v_2',\n", - " '007r_1',\n", - " '007r_2',\n", - " '007r_3',\n", - " '007r_4',\n", - " '007v_1',\n", - " '007v_2',\n", - " '007v_3',\n", - " '007v_4',\n", - " '008r_1',\n", - " '008r_2',\n", - " '008r_3',\n", - " '008r_4',\n", - " '008v_1',\n", - " '008v_2',\n", - " '008v_3',\n", - " '008v_4',\n", - " '008v_5',\n", - " '009r_1',\n", - " '009v_1',\n", - " '009v_3',\n", - " '010r_1',\n", - " '010r_2',\n", - " '010r_3',\n", - " '010r_4',\n", - " '010r_5',\n", - " '010v_1',\n", - " '010v_2',\n", - " '010v_3',\n", - " '010v_4',\n", - " '011r_1',\n", - " '011v_1',\n", - " '011v_2',\n", - " '011v_3',\n", - " '011v_4',\n", - " '011v_5',\n", - " '012r_1',\n", - " '012r_2',\n", - " '012r_3',\n", - " '012r_4',\n", - " '012v_1',\n", - " '012v_2',\n", - " '012v_3',\n", - " '013r_1',\n", - " '013r_2',\n", - " '013r_3',\n", - " '013r_4',\n", - " '013v_1',\n", - " '013v_2',\n", - " '013v_3',\n", - " '013v_5',\n", - " '014r_1',\n", - " '015r_1',\n", - " '015r_2',\n", - " '015r_3',\n", - " '015v_1',\n", - " '015v_2',\n", - " '015v_3',\n", - " '015v_4',\n", - " '015v_5',\n", - " '015v_6',\n", - " '016r_1',\n", - " '016v_1',\n", - " '016v_2',\n", - " '016v_3',\n", - " '016v_4',\n", - " '016v_5',\n", - " '017r_1',\n", - " '019v_1',\n", - " '019v_2',\n", - " '019v_3',\n", - " '020r_1',\n", - " '020r_2',\n", - " '020v_1',\n", - " '020v_2',\n", - " '020v_4',\n", - " '020v_6',\n", - " '021r_1',\n", - " '021r_2',\n", - " '021v_1',\n", - " '021v_2',\n", - " '022v_1',\n", - " '023r_1',\n", - " '023v_1',\n", - " '024r_1',\n", - " '024v_1',\n", - " '024v_2',\n", - " '024v_3',\n", - " '025v_1',\n", - " '026r_2',\n", - " '028v_1',\n", - " '029r_1',\n", - " '029v_1',\n", - " '029v_2',\n", - " '029v_3',\n", - " '029v_4',\n", - " '029v_5',\n", - " '029v_6',\n", - " '030r_1',\n", - " '030r_2',\n", - " '031r_1',\n", - " '031r_2',\n", - " '031r_3',\n", - " '031r_4',\n", - " '031v_1',\n", - " '031v_2',\n", - " '031v_4',\n", - " '032r_2',\n", - " '032r_3',\n", - " '032v_1',\n", - " '032v_2',\n", - " '032v_3',\n", - " '033r_1',\n", - " '033r_2',\n", - " '033v_1',\n", - " '033v_2',\n", - " '034r_4',\n", - " '034r_5',\n", - " '034v_1',\n", - " '035r_2',\n", - " '035r_3',\n", - " '035r_4',\n", - " '035v_1',\n", - " '035v_2',\n", - " '036r_1',\n", - " '036v_1',\n", - " '036v_3',\n", - " '037r_1',\n", - " '037r_2',\n", - " '037r_3',\n", - " '037r_4',\n", - " '037v_1',\n", - " '037v_2',\n", - " '037v_3',\n", - " '038r_1',\n", - " '038r_2',\n", - " '038r_3',\n", - " '038r_4',\n", - " '038v_1',\n", - " '038v_2',\n", - " '038v_5',\n", - " '038v_6',\n", - " '039r_1',\n", - " '039r_2',\n", - " '039v_1',\n", - " '039v_2',\n", - " '039v_3',\n", - " '040r_1',\n", - " '040r_2',\n", - " '040r_3',\n", - " '040r_4',\n", - " '040r_5',\n", - " '040v_1',\n", - " '040v_2',\n", - " '040v_3',\n", - " '040v_4',\n", - " '041r_03',\n", - " '041r_04',\n", - " '041r_1',\n", - " '041v_1',\n", - " '041v_2',\n", - " '041v_3',\n", - " '042r_1',\n", - " '042r_2',\n", - " '042r_3',\n", - " '042v_1',\n", - " '042v_2',\n", - " '042v_3',\n", - " '042v_4',\n", - " '042v_5',\n", - " '042v_6',\n", - " '043r_2',\n", - " '043r_3',\n", - " '043r_4',\n", - " '043v_1',\n", - " '043v_2',\n", - " '043v_3',\n", - " '043v_4',\n", - " '044r_1',\n", - " '044r_2',\n", - " '044r_3',\n", - " '044r_4',\n", - " '044r_5',\n", - " '044v_1',\n", - " '044v_2',\n", - " '044v_3',\n", - " '044v_4',\n", - " '045r_1',\n", - " '045v_1',\n", - " '045v_2',\n", - " '046r_1',\n", - " '046r_2',\n", - " '046r_3',\n", - " '046r_4',\n", - " '046v_1',\n", - " '046v_2',\n", - " '046v_3',\n", - " '046v_4',\n", - " '046v_5',\n", - " '046v_6',\n", - " '046v_7',\n", - " '047r_1',\n", - " '047r_2',\n", - " '047r_3',\n", - " '047r_4',\n", - " '047r_5',\n", - " '047v_1',\n", - " '047v_2',\n", - " '047v_3',\n", - " '047v_4',\n", - " '048r_1',\n", - " '048r_2',\n", - " '048r_3',\n", - " '048r_4',\n", - " '048v_1',\n", - " '048v_2',\n", - " '049r_1',\n", - " '049r_2',\n", - " '049r_3',\n", - " '049r_4',\n", - " '049v_1',\n", - " '049v_2',\n", - " '050r_1',\n", - " '050r_2',\n", - " '050v_1',\n", - " '050v_2',\n", - " '051r_1',\n", - " '051r_2',\n", - " '052r_1',\n", - " '052v_2',\n", - " '053r_1',\n", - " '053r_2',\n", - " '053r_3',\n", - " '053r_4',\n", - " '053r_6',\n", - " '053v_1',\n", - " '054v_2',\n", - " '054v_3',\n", - " '054v_4',\n", - " '054v_5',\n", - " '055r_1',\n", - " '055r_2',\n", - " '055r_3',\n", - " '055r_4',\n", - " '055v_1',\n", - " '055v_2',\n", - " '055v_3',\n", - " '055v_4',\n", - " '056r_1',\n", - " '056r_2',\n", - " '056v_1',\n", - " '057v_1',\n", - " '057v_2',\n", - " '058v_1',\n", - " '058v_3',\n", - " '058v_4',\n", - " '058v_5',\n", - " '059r_1',\n", - " '059r_2',\n", - " '059v_1',\n", - " '059v_2',\n", - " '059v_3',\n", - " '059v_4',\n", - " '059v_5',\n", - " '059v_6',\n", - " '060r_1',\n", - " '060r_3',\n", - " '060v_1',\n", - " '060v_2',\n", - " '060v_3',\n", - " '060v_4',\n", - " '060v_5',\n", - " '061r_1',\n", - " '061r_3',\n", - " '061v_1',\n", - " '061v_2',\n", - " '061v_3',\n", - " '061v_4',\n", - " '062r_1',\n", - " '062r_2',\n", - " '062r_3',\n", - " '062r_4',\n", - " '062v_1',\n", - " '062v_2',\n", - " '062v_3',\n", - " '063r_1',\n", - " '063r_2',\n", - " '063r_3',\n", - " '063r_4',\n", - " '063r_5',\n", - " '063r_6',\n", - " '063v_1',\n", - " '063v_2',\n", - " '063v_3',\n", - " '063v_4',\n", - " '063v_5',\n", - " '063v_6',\n", - " '063v_7',\n", - " '064r_2',\n", - " '064r_3',\n", - " '064r_4',\n", - " '064r_5',\n", - " '064r_6',\n", - " '064r_7',\n", - " '064v_1',\n", - " '064v_3',\n", - " '064v_5',\n", - " '065r_1',\n", - " '065r_3',\n", - " '065r_4',\n", - " '065v_1',\n", - " '065v_2',\n", - " '065v_3',\n", - " '065v_5',\n", - " '065v_6',\n", - " '065v_7',\n", - " '066r_2',\n", - " '066r_3',\n", - " '066r_4',\n", - " '066r_5',\n", - " '066r_6',\n", - " '066v_1',\n", - " '066v_2',\n", - " '066v_3',\n", - " '066v_4',\n", - " '067r_1',\n", - " '067r_2',\n", - " '067r_3',\n", - " '067r_4',\n", - " '067v_1',\n", - " '067v_2',\n", - " '067v_3',\n", - " '068r_1',\n", - " '068r_2',\n", - " '068r_3',\n", - " '069r_2',\n", - " '071r_1',\n", - " '071r_2',\n", - " '071r_3',\n", - " '071r_4',\n", - " '071r_5',\n", - " '071v_1',\n", - " '071v_3',\n", - " '071v_4',\n", - " '072r_1',\n", - " '072r_2',\n", - " '072v_1',\n", - " '073r_1',\n", - " '073r_2',\n", - " '073r_3',\n", - " '073r_4',\n", - " '073r_5',\n", - " '073v_1',\n", - " '073v_2',\n", - " '073v_3',\n", - " '073v_4',\n", - " '074r_1',\n", - " '074r_2',\n", - " '074r_3',\n", - " '074v_1',\n", - " '074v_2',\n", - " '074v_3',\n", - " '074v_4',\n", - " '075r_1',\n", - " '075r_2',\n", - " '075r_3',\n", - " '075r_4',\n", - " '075r_5',\n", - " '075v_1',\n", - " '075v_2',\n", - " '075v_3',\n", - " '075v_4',\n", - " '076r_1',\n", - " '076r_2',\n", - " '076r_3',\n", - " '076r_4',\n", - " '076r_5',\n", - " '076v_1',\n", - " '076v_2',\n", - " '076v_3',\n", - " '076v_4',\n", - " '077r_1',\n", - " '077r_2',\n", - " '077r_3',\n", - " '077r_4',\n", - " '077v_1',\n", - " '077v_2',\n", - " '077v_3',\n", - " '078r_1',\n", - " '078r_2',\n", - " '078r_3',\n", - " '078v_1',\n", - " '078v_2',\n", - " '078v_3',\n", - " '078v_4',\n", - " '079r_1',\n", - " '079r_2',\n", - " '079r_3',\n", - " '079v_1',\n", - " '079v_2',\n", - " '079v_3',\n", - " '079v_4',\n", - " '080r_1',\n", - " '080r_2',\n", - " '080r_3',\n", - " '080v_1',\n", - " '081r_1',\n", - " '081r_2',\n", - " '081r_3',\n", - " '081r_4',\n", - " '081v_1',\n", - " '081v_2',\n", - " '081v_3',\n", - " '081v_4',\n", - " '082r_1',\n", - " '082r_2',\n", - " '082r_3',\n", - " '082r_4',\n", - " '082v_1',\n", - " '082v_2',\n", - " '082v_3',\n", - " '082v_4',\n", - " '083r_1',\n", - " '083r_2',\n", - " '083r_3',\n", - " '083r_4',\n", - " '083r_5',\n", - " '083r_6',\n", - " '083v_1',\n", - " '083v_2',\n", - " '083v_3',\n", - " '084r_1',\n", - " '084r_3',\n", - " '084r_4',\n", - " '084r_5',\n", - " '084v_1',\n", - " '084v_2',\n", - " '084v_3',\n", - " '084v_4',\n", - " '085r_1',\n", - " '085r_2',\n", - " '085v_1',\n", - " '085v_2',\n", - " '085v_3',\n", - " '085v_4',\n", - " '086v_1',\n", - " '087r_1',\n", - " '087v_1',\n", - " '087v_2',\n", - " '087v_3',\n", - " '088r_2',\n", - " '088r_3',\n", - " '088r_5',\n", - " '088r_6',\n", - " '088v_1',\n", - " '088v_2',\n", - " '089r_1',\n", - " '089r_3',\n", - " '089v_1',\n", - " '089v_2',\n", - " '090r_1',\n", - " '090r_2',\n", - " '090r_3',\n", - " '090v_1',\n", - " '090v_2',\n", - " '091r_2',\n", - " '092r_1',\n", - " '092r_2',\n", - " '092r_3',\n", - " '092r_4',\n", - " '092v_1',\n", - " '092v_2',\n", - " '092v_3',\n", - " '093r_1',\n", - " '093r_4',\n", - " '093r_5',\n", - " '093v_1',\n", - " '093v_2',\n", - " '093v_3',\n", - " '094r_1',\n", - " '096v_1',\n", - " '096v_2',\n", - " '096v_3',\n", - " '097r_1',\n", - " '097r_2',\n", - " '097r_3',\n", - " '097v_1',\n", - " '098r_1',\n", - " '098r_2',\n", - " '098r_3',\n", - " '098v_2',\n", - " '098v_4',\n", - " '098v_5',\n", - " '099r_3',\n", - " '099v_2',\n", - " '099v_4',\n", - " '099v_5',\n", - " '099v_6',\n", - " '100r_1',\n", - " '100r_3',\n", - " '100r_4',\n", - " '100r_5',\n", - " '100v_1',\n", - " '100v_2',\n", - " '101r_1',\n", - " '101r_2',\n", - " '101v_1',\n", - " '101v_2',\n", - " '101v_3',\n", - " '101v_4',\n", - " '102r_1',\n", - " '102r_2',\n", - " '102r_3',\n", - " '102r_4',\n", - " '102v_1',\n", - " '102v_2',\n", - " '102v_3',\n", - " '103r_1',\n", - " '103r_2',\n", - " '103v_1',\n", - " '103v_2',\n", - " '103v_3',\n", - " '103v_4',\n", - " '103v_5',\n", - " '104r_1',\n", - " '104r_2',\n", - " '104r_3',\n", - " '104r_4',\n", - " '104r_5',\n", - " '104v_1',\n", - " '104v_2',\n", - " '104v_3',\n", - " '104v_4',\n", - " '105r_2',\n", - " '105r_3',\n", - " '105r_4',\n", - " '105v_2',\n", - " '105v_4',\n", - " '105v_5',\n", - " '106r_1',\n", - " '106r_2',\n", - " '106v_1',\n", - " '106v_2',\n", - " '106v_3',\n", - " '107r_1',\n", - " '108r_2',\n", - " '109r_1',\n", - " '109r_2',\n", - " '109r_3',\n", - " '109r_5',\n", - " '109v_1',\n", - " '109v_2',\n", - " '110r_2',\n", - " '110r_3',\n", - " '110v_1',\n", - " '110v_2',\n", - " '110v_3',\n", - " '111r_2',\n", - " '111r_3',\n", - " '111r_4',\n", - " '111r_5',\n", - " '111v_1',\n", - " '111v_2',\n", - " '111v_4',\n", - " '111v_5',\n", - " '112r_1',\n", - " '112r_2',\n", - " '112r_3',\n", - " '112r_4',\n", - " '112v_1',\n", - " '113r_1',\n", - " '114r_1',\n", - " '115r_1',\n", - " '115r_2',\n", - " '115v_1',\n", - " '115v_2',\n", - " '115v_3',\n", - " '116r_1',\n", - " '116r_2',\n", - " '116r_3',\n", - " '116r_4',\n", - " '116v_1',\n", - " '116v_2',\n", - " '116v_3',\n", - " '117r_1',\n", - " '117v_1',\n", - " '117v_2',\n", - " '117v_3',\n", - " '117v_4',\n", - " '117v_5',\n", - " '118r_1',\n", - " '118r_2',\n", - " '118r_3',\n", - " '118r_4',\n", - " '118r_5',\n", - " '118v_1',\n", - " '119r_1',\n", - " '119v_1',\n", - " '119v_2',\n", - " '120r_1',\n", - " '120r_2',\n", - " '120r_3',\n", - " '',\n", - " '120v_1',\n", - " '120v_2',\n", - " '120v_3',\n", - " '120v_6',\n", - " '121r_1',\n", - " '121v_1',\n", - " '121v_2',\n", - " '122r_1',\n", - " '122r_2',\n", - " '122v_1',\n", - " '122v_2',\n", - " '122v_3',\n", - " '123r_1',\n", - " '124r_1',\n", - " '124r_2',\n", - " '124r_3',\n", - " '124r_4',\n", - " '124v_1',\n", - " '124v_2',\n", - " '124v_3',\n", - " '125r_1',\n", - " '125r_2',\n", - " '125v_2',\n", - " '125v_3',\n", - " '126r_1',\n", - " '126v_1',\n", - " '126v_2',\n", - " '126v_3',\n", - " '127r_1',\n", - " '127v_1',\n", - " '128r_1',\n", - " '128v_1',\n", - " '129r_1',\n", - " '129r_2',\n", - " '129r_3',\n", - " '129r_4',\n", - " '129v_1',\n", - " '129v_2',\n", - " '129v_3',\n", - " '129v_4',\n", - " '130r_1',\n", - " '130r_2',\n", - " '130r_3',\n", - " '130r_4',\n", - " '130v_1',\n", - " '130v_3',\n", - " '131r_1',\n", - " '131r_2',\n", - " '131r_3',\n", - " '131r_4',\n", - " '131r_5',\n", - " '131v_1',\n", - " '132r_1',\n", - " '132r_2',\n", - " '132v_1',\n", - " '132v_2',\n", - " '132v_3',\n", - " '133r_1',\n", - " '133r_2',\n", - " '133r_3',\n", - " '133r_4',\n", - " '133v_1',\n", - " '133v_2',\n", - " '133v_3',\n", - " '134r_1',\n", - " '134r_2',\n", - " '134v_1',\n", - " '134v_2',\n", - " '134v_3',\n", - " '135r_1',\n", - " '135r_2',\n", - " '135r_3',\n", - " '135v_1',\n", - " '136r_1',\n", - " '136v_1',\n", - " '137r_1',\n", - " '137r_2',\n", - " '137r_3',\n", - " '137v_1',\n", - " '138v_1',\n", - " '138v_2',\n", - " '138v_3',\n", - " '139r_1',\n", - " '139v_1',\n", - " '140v_1',\n", - " '140v_2',\n", - " '140v_3',\n", - " '141r_1',\n", - " '142v_1',\n", - " '142v_3',\n", - " '143r_1',\n", - " '143r_2',\n", - " '143r_3',\n", - " '143v_1',\n", - " '143v_2',\n", - " '143v_3',\n", - " '144r_1',\n", - " '145r_1',\n", - " '145r_2',\n", - " '145v_1',\n", - " '145v_2',\n", - " '146v_1',\n", - " '147v_1',\n", - " '147v_2',\n", - " '147v_4',\n", - " '148r_1',\n", - " '148r_2',\n", - " '148r_4',\n", - " '148v_1',\n", - " '149r_1',\n", - " '149r_2',\n", - " '149r_3',\n", - " '149r_4',\n", - " '149v_1',\n", - " '149v_2',\n", - " '149v_3',\n", - " '149v_4',\n", - " '150r_1',\n", - " '150r_2',\n", - " '150r_3',\n", - " '150v_1',\n", - " '151v_1',\n", - " '152r_1',\n", - " '152v_1',\n", - " '153r_1',\n", - " '153r_2',\n", - " '153v_1',\n", - " '153v_2',\n", - " '154r_1',\n", - " '154r_2',\n", - " '154r_3',\n", - " '154r_4',\n", - " '154r_5',\n", - " '154v_1',\n", - " '154v_3',\n", - " '154v_4',\n", - " '154v_5',\n", - " '155r_1',\n", - " '155v_1',\n", - " '156r_1',\n", - " '156r_2',\n", - " '156r_3',\n", - " '156v_1',\n", - " '157r_1',\n", - " '157r_2',\n", - " '157r_3',\n", - " '157r_4',\n", - " '157r_5',\n", - " '157v_1',\n", - " '157v_2',\n", - " '157v_3',\n", - " '158r_1',\n", - " '158v_1',\n", - " '158v_2',\n", - " '158v_3',\n", - " '158v_4',\n", - " '159r_1',\n", - " '159r_3',\n", - " '159r_4',\n", - " '159v_1',\n", - " '159v_2',\n", - " '159v_4',\n", - " '160r_1',\n", - " '160r_2',\n", - " '160v_1',\n", - " '160v_2',\n", - " '160v_3',\n", - " '160v_4',\n", - " '160v_5',\n", - " '161r_1',\n", - " '161v_1',\n", - " '162r_2',\n", - " '162r_3',\n", - " '162v_2',\n", - " '162v_4',\n", - " '163r_1',\n", - " '163r_2',\n", - " '163v_1',\n", - " '163v_2',\n", - " '163v_3',\n", - " '164r_2',\n", - " '164r_3',\n", - " '164r_4',\n", - " '164v_1',\n", - " '164v_2',\n", - " '164v_3',\n", - " '165r_1',\n", - " '165r_2',\n", - " '165r_3',\n", - " '165r_4',\n", - " '165r_5',\n", - " '165r_6',\n", - " '165v_1',\n", - " '165v_2',\n", - " '165v_4',\n", - " '165v_5',\n", - " '165v_6',\n", - " '165v_7',\n", - " '166v_3',\n", - " '166v_4',\n", - " '166v_5',\n", - " '167r_1',\n", - " '169r_1',\n", - " '169v_1',\n", - " '169v_2',\n", - " '170r_1',\n", - " '170r_2',\n", - " '170r_4',\n", - " '170r_5',\n", - " '170r_6',\n", - " '170v_2',\n", - " '170v_3']" - ] - }, - "execution_count": 10, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "has_materials = manuscript.search(material=True)\n", - "has_materials" - ] - }, - { - "cell_type": "code", - "execution_count": 11, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "['001r_1',\n", - " '001v_1',\n", - " '002r_2',\n", - " '003r_1',\n", - " '004v_1',\n", - " '004v_2',\n", - " '004v_3',\n", - " '006r_1',\n", - " '006v_1',\n", - " '007r_2',\n", - " '007r_3',\n", - " '007v_2',\n", - " '008r_1',\n", - " '009r_1',\n", - " '010r_1',\n", - " '010r_3',\n", - " '012r_3',\n", - " '014r_1',\n", - " '015r_1',\n", - " '015v_6',\n", - " '016v_1',\n", - " '016v_2',\n", - " '016v_4',\n", - " '016v_5',\n", - " '020r_1',\n", - " '020r_2',\n", - " '020v_1',\n", - " '020v_2',\n", - " '020v_4',\n", - " '029r_1',\n", - " '029v_1',\n", - " '029v_6',\n", - " '031r_1',\n", - " '032v_1',\n", - " '033r_1',\n", - " '033v_2',\n", - " '035v_1',\n", - " '035v_2',\n", - " '036r_1',\n", - " '036v_3',\n", - " '037r_2',\n", - " '037v_1',\n", - " '038r_2',\n", - " '038r_4',\n", - " '038v_2',\n", - " '038v_5',\n", - " '038v_6',\n", - " '039r_2',\n", - " '039v_3',\n", - " '040r_1',\n", - " '041r_04',\n", - " '041v_3',\n", - " '042v_1',\n", - " '042v_5',\n", - " '042v_6',\n", - " '043v_1',\n", - " '044r_5',\n", - " '044v_2',\n", - " '044v_3',\n", - " '046r_1',\n", - " '046r_2',\n", - " '046r_3',\n", - " '046r_4',\n", - " '047r_1',\n", - " '047r_3',\n", - " '047r_5',\n", - " '048r_3',\n", - " '049r_2',\n", - " '049r_3',\n", - " '050r_1',\n", - " '050v_1',\n", - " '051r_1',\n", - " '051r_2',\n", - " '052r_1',\n", - " '053v_1',\n", - " '055r_3',\n", - " '055v_2',\n", - " '056r_1',\n", - " '056r_2',\n", - " '056v_1',\n", - " '057v_1',\n", - " '057v_2',\n", - " '058v_1',\n", - " '058v_4',\n", - " '058v_5',\n", - " '059r_2',\n", - " '060r_3',\n", - " '060v_3',\n", - " '063r_1',\n", - " '063r_2',\n", - " '063v_1',\n", - " '063v_3',\n", - " '063v_4',\n", - " '064r_2',\n", - " '065r_1',\n", - " '066r_3',\n", - " '066v_1',\n", - " '066v_2',\n", - " '067r_1',\n", - " '067r_4',\n", - " '067v_3',\n", - " '069r_2',\n", - " '071r_2',\n", - " '071r_3',\n", - " '071v_1',\n", - " '072r_2',\n", - " '073r_3',\n", - " '073r_4',\n", - " '073v_1',\n", - " '073v_2',\n", - " '073v_3',\n", - " '074r_3',\n", - " '075v_2',\n", - " '075v_4',\n", - " '076r_3',\n", - " '076r_5',\n", - " '076v_1',\n", - " '077r_2',\n", - " '077v_1',\n", - " '077v_2',\n", - " '077v_3',\n", - " '078r_1',\n", - " '079v_1',\n", - " '081v_3',\n", - " '081v_4',\n", - " '083r_3',\n", - " '083v_2',\n", - " '084v_1',\n", - " '084v_2',\n", - " '084v_4',\n", - " '085v_4',\n", - " '087v_2',\n", - " '088r_5',\n", - " '088v_2',\n", - " '089v_1',\n", - " '089v_2',\n", - " '090v_2',\n", - " '091r_2',\n", - " '093r_1',\n", - " '094r_1',\n", - " '096v_3',\n", - " '097v_1',\n", - " '098r_1',\n", - " '098r_2',\n", - " '098r_3',\n", - " '098v_2',\n", - " '100r_1',\n", - " '100v_2',\n", - " '101v_3',\n", - " '102r_2',\n", - " '102v_2',\n", - " '103r_1',\n", - " '104r_2',\n", - " '104r_4',\n", - " '104r_5',\n", - " '105r_4',\n", - " '107r_1',\n", - " '108r_2',\n", - " '109r_1',\n", - " '109v_1',\n", - " '110v_1',\n", - " '110v_2',\n", - " '111v_1',\n", - " '112v_1',\n", - " '116r_2',\n", - " '116r_4',\n", - " '116v_2',\n", - " '117v_1',\n", - " '117v_2',\n", - " '118r_3',\n", - " '118v_1',\n", - " '119r_1',\n", - " '120r_2',\n", - " '120v_6',\n", - " '121r_1',\n", - " '121v_1',\n", - " '122r_2',\n", - " '123r_1',\n", - " '124r_1',\n", - " '126r_1',\n", - " '126v_3',\n", - " '128r_1',\n", - " '129r_1',\n", - " '129r_2',\n", - " '129r_4',\n", - " '129v_4',\n", - " '130r_3',\n", - " '130r_4',\n", - " '134v_3',\n", - " '135r_1',\n", - " '135r_3',\n", - " '135v_1',\n", - " '138v_2',\n", - " '138v_3',\n", - " '139r_1',\n", - " '139v_1',\n", - " '141r_1',\n", - " '142v_1',\n", - " '143r_1',\n", - " '143v_3',\n", - " '144r_1',\n", - " '145v_1',\n", - " '147v_4',\n", - " '148r_1',\n", - " '149v_3',\n", - " '151v_1',\n", - " '152r_1',\n", - " '153r_2',\n", - " '154v_4',\n", - " '154v_5',\n", - " '155r_1',\n", - " '155v_1',\n", - " '156v_1',\n", - " '158r_1',\n", - " '158v_1',\n", - " '159v_2',\n", - " '162v_2',\n", - " '163r_1',\n", - " '164r_2',\n", - " '169r_1',\n", - " '170v_2',\n", - " '170v_3']" - ] - }, - "execution_count": 11, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "has_materials_plants = manuscript.search(material=True, plant=True)\n", - "has_materials_plants" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "We can also search based on specific properties. The terms to be searched for, even if there is only one, must be written in a list." - ] - }, - { - "cell_type": "code", - "execution_count": 12, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "['116r_4', '154v_4', '155r_1', '155v_1', '159v_2', '169r_1']" - ] - }, - "execution_count": 12, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "rose_entries = manuscript.search(plant=['rose'])\n", - "rose_entries" - ] - }, - { - "cell_type": "code", - "execution_count": 13, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "['001v_1',\n", - " '003r_1',\n", - " '003v_1',\n", - " '004r_2',\n", - " '004v_1',\n", - " '004v_3',\n", - " '005r_1',\n", - " '006r_1',\n", - " '006v_2',\n", - " '007r_1',\n", - " '007v_3',\n", - " '008v_5',\n", - " '010r_5',\n", - " '010v_1',\n", - " '010v_3',\n", - " '011r_1',\n", - " '011v_1',\n", - " '012r_1',\n", - " '012r_4',\n", - " '012v_3',\n", - " '016r_1',\n", - " '017r_1',\n", - " '021r_2',\n", - " '022v_1',\n", - " '023r_1',\n", - " '023v_1',\n", - " '024v_1',\n", - " '028v_1',\n", - " '029r_1',\n", - " '029v_2',\n", - " '029v_6',\n", - " '030r_2',\n", - " '031r_3',\n", - " '032r_3',\n", - " '032v_3',\n", - " '035r_2',\n", - " '035r_3',\n", - " '036v_3',\n", - " '037r_3',\n", - " '037r_4',\n", - " '038r_4',\n", - " '039r_2',\n", - " '040r_2',\n", - " '040r_3',\n", - " '042r_2',\n", - " '042v_1',\n", - " '042v_2',\n", - " '044v_2',\n", - " '047r_1',\n", - " '047v_1',\n", - " '048v_1',\n", - " '048v_2',\n", - " '049r_1',\n", - " '049v_2',\n", - " '050r_1',\n", - " '050v_2',\n", - " '053r_2',\n", - " '055v_3',\n", - " '055v_4',\n", - " '056r_1',\n", - " '056v_1',\n", - " '057v_1',\n", - " '057v_2',\n", - " '058v_4',\n", - " '058v_5',\n", - " '059r_2',\n", - " '061v_1',\n", - " '061v_3',\n", - " '062v_1',\n", - " '063r_3',\n", - " '063r_6',\n", - " '063v_3',\n", - " '064r_3',\n", - " '064r_4',\n", - " '065r_4',\n", - " '065v_6',\n", - " '066r_3',\n", - " '066r_6',\n", - " '066v_4',\n", - " '068r_3',\n", - " '072r_2',\n", - " '073r_1',\n", - " '073r_2',\n", - " '073r_3',\n", - " '073r_5',\n", - " '074v_2',\n", - " '075r_2',\n", - " '076v_4',\n", - " '077r_4',\n", - " '078r_2',\n", - " '078v_1',\n", - " '078v_4',\n", - " '080r_3',\n", - " '081r_3',\n", - " '081r_4',\n", - " '081v_2',\n", - " '081v_4',\n", - " '082r_2',\n", - " '082v_4',\n", - " '083v_1',\n", - " '084v_4',\n", - " '085v_4',\n", - " '087v_3',\n", - " '088r_2',\n", - " '088v_2',\n", - " '090r_3',\n", - " '090v_1',\n", - " '092r_2',\n", - " '092v_2',\n", - " '094r_1',\n", - " '097r_2',\n", - " '097v_1',\n", - " '098r_2',\n", - " '098r_3',\n", - " '098v_5',\n", - " '100v_1',\n", - " '101r_1',\n", - " '102v_2',\n", - " '103r_1',\n", - " '103r_2',\n", - " '103v_5',\n", - " '104r_2',\n", - " '105v_2',\n", - " '105v_4',\n", - " '106r_2',\n", - " '106v_1',\n", - " '106v_2',\n", - " '107r_1',\n", - " '108r_2',\n", - " '110r_2',\n", - " '110v_1',\n", - " '110v_2',\n", - " '111r_4',\n", - " '111v_1',\n", - " '111v_5',\n", - " '112r_1',\n", - " '112v_1',\n", - " '114r_1',\n", - " '115r_1',\n", - " '116r_2',\n", - " '116v_2',\n", - " '117r_1',\n", - " '117v_4',\n", - " '118v_1',\n", - " '119v_1',\n", - " '',\n", - " '121r_1',\n", - " '121v_1',\n", - " '124r_3',\n", - " '124v_2',\n", - " '125r_1',\n", - " '125r_2',\n", - " '126r_1',\n", - " '126v_3',\n", - " '128v_1',\n", - " '129v_1',\n", - " '131v_1',\n", - " '133r_3',\n", - " '134r_1',\n", - " '135v_1',\n", - " '136v_1',\n", - " '137r_1',\n", - " '137r_2',\n", - " '137v_1',\n", - " '139r_1',\n", - " '139v_1',\n", - " '141r_1',\n", - " '143r_2',\n", - " '143v_2',\n", - " '144r_1',\n", - " '145v_1',\n", - " '146v_1',\n", - " '148r_1',\n", - " '148r_2',\n", - " '148r_4',\n", - " '149r_1',\n", - " '149r_3',\n", - " '150v_1',\n", - " '151v_1',\n", - " '152r_1',\n", - " '152v_1',\n", - " '154v_3',\n", - " '155r_1',\n", - " '155v_1',\n", - " '156v_1',\n", - " '157v_3',\n", - " '159v_4',\n", - " '160r_1',\n", - " '160r_2',\n", - " '161r_1',\n", - " '161v_1',\n", - " '163r_2',\n", - " '164v_2',\n", - " '165r_2',\n", - " '165v_1',\n", - " '167r_1',\n", - " '169r_1']" - ] - }, - "execution_count": 13, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "iron_water_entries = manuscript.search(material=['iron', 'water'])\n", - "iron_water_entries" - ] - }, - { - "cell_type": "code", - "execution_count": 14, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "['155r_1', '155v_1', '169r_1']" - ] - }, - "execution_count": 14, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "iron_water_rose = manuscript.search(material=['iron', 'water'], plant=['rose'], tool=True)\n", - "iron_water_rose" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "This list of identities can be converted into a manuscript object containing only the entries found in the list by passing the list as a parameter into a new object." - ] - }, - { - "cell_type": "code", - "execution_count": 15, - "metadata": {}, - "outputs": [], - "source": [ - "rose_manuscript = BnF(rose_entries)" - ] - }, - { - "cell_type": "code", - "execution_count": 16, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "116r_4 A way to grind enamel gold very delicate gold rose leaves and others\n", - "154v_4 Reinforcing flowers and delicate things\n", - "155r_1 Molding a rose\n", - "155v_1 Rose\n", - "159v_2 Carnation\n", - "169r_1 [List of processes]\n" - ] - } - ], - "source": [ - "for identity, entry in rose_manuscript.entries.items():\n", - " print(identity, entry.title['tl'])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Custom Data" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Let's take this reduced manuscript, and generate a data table representing its contents. One advantage of using Jupyter Notebook is that it allows us to import open source packages on a browser without downloading them to a machine. Pandas allows us to easily generate, manipulate, and save spreadsheets, or DataFrames." - ] - }, - { - "cell_type": "code", - "execution_count": 17, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
entryfoliofolio_displaydiv_idcategoriesheading_tcheading_tcnheading_tlmarginsdel_tags...measurementmusicplantplacepersonal_nameprofessionsensorytooltimeweapon
0<recipe.Recipe object at 0x119e23cd0>116r116r116r_4metal processMoyen desmouailler desmailler des foeilles dor...Moyen desmouailler d’esmailler des foeilles do...A way to grind enamel gold very delicate gold ...3grind; gold; <fr>uy</fr>; <fr>d</fr>...rose; roses
1<recipe.Recipe object at 0x11a108f50>154v154v154v_4castingRenforcer les fleurs et choses delicatesRenforcer les fleurs et choses delicatesReinforcing flowers and delicate things3&amp;; delicate things...pensee; roses; fromentpetit pinceau
2<recipe.Recipe object at 0x11a108cd0>155r155r155r_1castingMouler une roseMouler une roseMolding a rose3<fr>aupart</fr>; <fr>en</fr>; of; <fr>be</fr>;......rosiers; rosier; fraisiers; rosemoule; filets; moules; cercle dardillelong temps
3<recipe.Recipe object at 0x11a113fd0>155v155v155v_1castingRoseRoseRose3<fr>ou for</fr>; <fr>b</fr>; it; <fr>esb</fr>;......rosemoules; tige de fil de letton; petites poincte...
4<recipe.Recipe object at 0x11a168f50>159v159v159v_2castingOeilletOeilletCarnation3...oeillet; rose; soulcymoule
5<recipe.Recipe object at 0x11a231fd0>169r169r169r_1lists[Liste de procédés][Liste de procédés][List of processes]3<fr>P</fr>; p...froment; mousses; vigne; capilli veneris; rose...filets; chassis
\n", - "

6 rows × 28 columns

\n", - "
" - ], - "text/plain": [ - " entry folio folio_display div_id \\\n", - "0 116r 116r 116r_4 \n", - "1 154v 154v 154v_4 \n", - "2 155r 155r 155r_1 \n", - "3 155v 155v 155v_1 \n", - "4 159v 159v 159v_2 \n", - "5 169r 169r 169r_1 \n", - "\n", - " categories heading_tc \\\n", - "0 metal process Moyen desmouailler desmailler des foeilles dor... \n", - "1 casting Renforcer les fleurs et choses delicates \n", - "2 casting Mouler une rose \n", - "3 casting Rose \n", - "4 casting Oeillet \n", - "5 lists [Liste de procédés] \n", - "\n", - " heading_tcn \\\n", - "0 Moyen desmouailler d’esmailler des foeilles do... \n", - "1 Renforcer les fleurs et choses delicates \n", - "2 Mouler une rose \n", - "3 Rose \n", - "4 Oeillet \n", - "5 [Liste de procédés] \n", - "\n", - " heading_tl margins \\\n", - "0 A way to grind enamel gold very delicate gold ... 3 \n", - "1 Reinforcing flowers and delicate things 3 \n", - "2 Molding a rose 3 \n", - "3 Rose 3 \n", - "4 Carnation 3 \n", - "5 [List of processes] 3 \n", - "\n", - " del_tags ... measurement music \\\n", - "0 grind; gold; uy; d ... \n", - "1 &; delicate things ... \n", - "2 aupart; en; of; be;... ... \n", - "3 ou for; b; it; esb;... ... \n", - "4 ... \n", - "5 P; p ... \n", - "\n", - " plant place personal_name \\\n", - "0 rose; roses \n", - "1 pensee; roses; froment \n", - "2 rosiers; rosier; fraisiers; rose \n", - "3 rose \n", - "4 oeillet; rose; soulcy \n", - "5 froment; mousses; vigne; capilli veneris; rose... \n", - "\n", - " profession sensory tool \\\n", - "0 \n", - "1 petit pinceau \n", - "2 moule; filets; moules; cercle dardille \n", - "3 moules; tige de fil de letton; petites poincte... \n", - "4 moule \n", - "5 filets; chassis \n", - "\n", - " time weapon \n", - "0 \n", - "1 \n", - "2 long temps \n", - "3 \n", - "4 \n", - "5 \n", - "\n", - "[6 rows x 28 columns]" - ] - }, - "execution_count": 17, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "df = rose_manuscript.tablefy()\n", - "df" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "New, custom columns can be added by creating a function that defines this property given an entry object as an input." - ] - }, - { - "cell_type": "code", - "execution_count": 18, - "metadata": {}, - "outputs": [], - "source": [ - "def foo(entry):\n", - " return 'foo ' + entry.identity" - ] - }, - { - "cell_type": "code", - "execution_count": 19, - "metadata": {}, - "outputs": [ - { - "ename": "NameError", - "evalue": "name 'Recipe' is not defined", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)", - "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0;32mdef\u001b[0m \u001b[0mfirst_word_tl\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mentry\u001b[0m\u001b[0;34m:\u001b[0m \u001b[0mRecipe\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 2\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mentry\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtext\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m'tl'\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mxml\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;32mFalse\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mstrip\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0msplit\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m' '\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m0\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;31mNameError\u001b[0m: name 'Recipe' is not defined" - ] - } - ], - "source": [ - "def first_word_tl(entry):\n", - " return entry.text('tl', xml=False).strip().split(' ')[0]" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "df['foo'] = df.entry.apply(lambda x: foo(x))\n", - "df['first_word'] = df.entry.apply(lambda x: first_word_tl(x))\n", - "df" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Pandas can handle much of the difficult file processing required to save this data. With the two lines below, we can drop the column that represents the memory address of the recipe object, and convert the DataFrame to .csv format. If `df.to_csv()` were run in an executable function fromn the command line, the file will be saved in the current working directory." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "df = df.drop(columns=['entry'])\n", - "df.to_csv(index=False)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "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.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/.ipynb_checkpoints/digital_manuscript-checkpoint.ipynb b/.ipynb_checkpoints/digital_manuscript-checkpoint.ipynb new file mode 100644 index 0000000..702cf5f --- /dev/null +++ b/.ipynb_checkpoints/digital_manuscript-checkpoint.ipynb @@ -0,0 +1,5652 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "These two lines import the manuscript class to this notebook, and initialize a variable, 'manuscript', as an object of this class" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "from digital_manuscript import BnF\n", + "manuscript = BnF()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Select an entry object out of the manuscript with its ID. This entry contains the text in all three formats: tc, tcn, and tl." + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'Black varnish for sword guard, bands for trunks, &c'" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sword_varnish = manuscript.entry('004v_1')\n", + "sword_varnish.title['tl']" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'004v_1'" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sword_varnish.identity" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The prop 'length' describes the length of the entry in characters. Length varies by format, and so you must be sure to choose one. It must be written in quotes, inside square brackets." + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "2332" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sword_varnish.length['tc']" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + ".text() returns the text based on the version entered" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "' Black varnish for sword guard, bands for trunks, &c Take linseed oil or more cheaply, walnut oil, and rid it of grease with garlic & onions +hog’s fennel, some also add bread crusts, which you will boil in it for a good quarter of an hour. Next, put in one lb of the oil thus boiled the size of a walnut of black pitch & a double handful of grains of wheat, without removing the garlic & onions, and let it boil together for a good quarter of an hour. And when the pitch is well melted & when the oil has body, you can remove it from the fire. Then, to varnish, place your iron over a low charcoal fire & apply your varnish with a feather or a brush. And when you see that it no longer smokes, it is done and your varnish is dry. For excellent black varnish, add two or three paternoster beads of jet among the rest. Some consider walnut oil better. If there is a lot of varnish, it needs to boil for at least half a day, for it is better the more it boils. It is dangerous if it catches fire, if it goes over the top, and is hard to extinguish. Make this therefore in a courtyard or an open space. In five or six lb of oil, one must put one lb of galipot, which costs 4 sous, & some peeled garlic cloves. This varnish in and of itself is not black, but it blackens over the fire. See below, around the 3rd part of this book, after sands, in the chapter on furbishers. '" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sword_varnish.text('tl')" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "' Vernis noir pour garde despee bandes de bahus & Prens huile de lin ou pour meilleur marche de lhuile de noix Et la fais desgraisser avecq des aulx & oignons +queues de pourrceaulx aulcuns adjoustent des crostes de pain que tu feras bouillir dedans un bon quart dheure Apres mects dans une lb dhuile ainsy bouilly la grosseur dune noix de poix noire & une joinctee de bled de froment sans oster les aulx & oignons Et laisser bouillir ensemble un bon quart dheure Et quand la poix est bien fondue & que lhuile a corps Tu le peulx tirer du foeu Puys pour vernir mects ton fer sur le foeu legier de charbons & aplique avecques une plume ou broisse ton vernis Et quand tu verras quil ne fumera plus cest faict et ton vernis est sec Pour excellent vernis noir mects deulx ou trois patenostres de geyct parmy le reste Aulcuns estiment lhuile de noix meilleur Sil y a quantite de vernis il fault bien quil bouille un demy jourCar il est meilleur tant plus il boult Il est dangereux que le feu sy mecte sil sen va par dessus et est malaise destaindre Fais le doncq dans une basse court ou lieu descouvert En cinq ou six lb dhuile on mect une lb de Galipot qui coste 4 sols & des gousses dail pelees Ce vernis de soymesme nest pas noir Mays il se noircist au foeu Voy cy apres vers la 3 partye de ce livre apres les sables au chapitre du fourbisseur '" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sword_varnish.text('tc')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "To see the xml version of an entry, set the optional parameter 'xml' to True. Its default value is False" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "' Black varnish for sword guard, bands for trunks, &c Take linseed oil or more cheaply, walnut oil, and rid it of grease with garlic & onions +hog’s fennel, some also add bread crusts, which you will boil in it for a good quarter of an hour. Next, put in one lb of the oil thus boiled the size of a walnut of black pitch & a double handful of grains of wheat, without removing the garlic & onions, and let it boil together for a good quarter of an hour. And when the pitch is well melted & when the oil has body, you can remove it from the fire. Then, to varnish, place your iron over a low charcoal fire & apply your varnish with a feather or a brush. And when you see that it no longer smokes, it is done and your varnish is dry. For excellent black varnish, add two or three paternoster beads of jet among the rest. Some consider walnut oil better. If there is a lot of varnish, it needs to boil for at least half a day, for it is better the more it boils. It is dangerous if it catches fire, if it goes over the top, and is hard to extinguish. Make this therefore in a courtyard or an open space. In five or six lb of oil, one must put one lb of galipot, which costs 4 sous, & some peeled garlic cloves. This varnish in and of itself is not black, but it blackens over the fire. See below, around the 3rd part of this book, after sands, in the chapter on furbishers. '" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sword_varnish.text('tl', xml=True)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "properties refer to pieces of information captured between tags in the xml annotated manuscript. The full list of properties can be seen below. When querying an entry for an prop, make sure to specify the version as well as the type of prop." + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "properties = ['animal', 'body_part', 'currency', 'definition', 'environment', 'material',\n", + " 'medical', 'measurement', 'music', 'plant', 'place', 'personal_name',\n", + " 'profession', 'sensory', 'tool', 'time']" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['sands',\n", + " 'peeled garlic cloves',\n", + " 'smokes',\n", + " 'bread crusts',\n", + " 'jet',\n", + " 'grains of wheat',\n", + " 'varnish',\n", + " 'black pitch',\n", + " 'galipot',\n", + " 'oil',\n", + " 'onions',\n", + " 'charcoal',\n", + " 'black varnish',\n", + " 'linseed oil',\n", + " 'walnut oil',\n", + " 'iron',\n", + " 'garlic',\n", + " 'pitch',\n", + " 'hog’s fennel']" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sword_varnish_materials = sword_varnish.get_prop('material', 'tl')\n", + "sword_varnish_materials" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "text/plain": [ + "['lin',\n", + " 'oignons',\n", + " 'ail',\n", + " 'queues de pourrceaulx',\n", + " 'aulx',\n", + " 'noix',\n", + " 'bled de froment']" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sword_varnish_plants = sword_varnish.get_prop('plant', 'tcn')\n", + "sword_varnish_plants" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['001r_1',\n", + " '001v_1',\n", + " '002r_2',\n", + " '002v_2',\n", + " '002v_3',\n", + " '003r_1',\n", + " '003r_2',\n", + " '003r_3',\n", + " '003v_1',\n", + " '004r_1',\n", + " '004r_2',\n", + " '004v_1',\n", + " '004v_2',\n", + " '004v_3',\n", + " '005r_1',\n", + " '005r_2',\n", + " '005v_1',\n", + " '006r_1',\n", + " '006v_1',\n", + " '006v_2',\n", + " '007r_1',\n", + " '007r_2',\n", + " '007r_3',\n", + " '007r_4',\n", + " '007v_1',\n", + " '007v_2',\n", + " '007v_3',\n", + " '007v_4',\n", + " '008r_1',\n", + " '008r_2',\n", + " '008r_3',\n", + " '008r_4',\n", + " '008v_1',\n", + " '008v_2',\n", + " '008v_3',\n", + " '008v_4',\n", + " '008v_5',\n", + " '009r_1',\n", + " '009v_1',\n", + " '009v_3',\n", + " '010r_1',\n", + " '010r_2',\n", + " '010r_3',\n", + " '010r_4',\n", + " '010r_5',\n", + " '010v_1',\n", + " '010v_2',\n", + " '010v_3',\n", + " '010v_4',\n", + " '011r_1',\n", + " '011v_1',\n", + " '011v_2',\n", + " '011v_3',\n", + " '011v_4',\n", + " '011v_5',\n", + " '012r_1',\n", + " '012r_2',\n", + " '012r_3',\n", + " '012r_4',\n", + " '012v_1',\n", + " '012v_2',\n", + " '012v_3',\n", + " '013r_1',\n", + " '013r_2',\n", + " '013r_3',\n", + " '013r_4',\n", + " '013v_1',\n", + " '013v_2',\n", + " '013v_3',\n", + " '013v_5',\n", + " '014r_1',\n", + " '015r_1',\n", + " '015r_2',\n", + " '015r_3',\n", + " '015v_1',\n", + " '015v_2',\n", + " '015v_3',\n", + " '015v_4',\n", + " '015v_5',\n", + " '015v_6',\n", + " '016r_1',\n", + " '016v_1',\n", + " '016v_2',\n", + " '016v_3',\n", + " '016v_4',\n", + " '016v_5',\n", + " '017r_1',\n", + " '019v_1',\n", + " '019v_2',\n", + " '019v_3',\n", + " '020r_1',\n", + " '020r_2',\n", + " '020v_1',\n", + " '020v_2',\n", + " '020v_4',\n", + " '020v_6',\n", + " '021r_1',\n", + " '021r_2',\n", + " '021v_1',\n", + " '021v_2',\n", + " '022v_1',\n", + " '023r_1',\n", + " '023v_1',\n", + " '024r_1',\n", + " '024v_1',\n", + " '024v_2',\n", + " '024v_3',\n", + " '025v_1',\n", + " '026r_2',\n", + " '028v_1',\n", + " '029r_1',\n", + " '029v_1',\n", + " '029v_2',\n", + " '029v_3',\n", + " '029v_4',\n", + " '029v_5',\n", + " '029v_6',\n", + " '030r_1',\n", + " '030r_2',\n", + " '031r_1',\n", + " '031r_2',\n", + " '031r_3',\n", + " '031r_4',\n", + " '031v_1',\n", + " '031v_2',\n", + " '031v_4',\n", + " '032r_2',\n", + " '032r_3',\n", + " '032v_1',\n", + " '032v_2',\n", + " '032v_3',\n", + " '033r_1',\n", + " '033r_2',\n", + " '033v_1',\n", + " '033v_2',\n", + " '034r_4',\n", + " '034r_5',\n", + " '034v_1',\n", + " '035r_2',\n", + " '035r_3',\n", + " '035r_4',\n", + " '035v_1',\n", + " '035v_2',\n", + " '036r_1',\n", + " '036v_1',\n", + " '036v_3',\n", + " '037r_1',\n", + " '037r_2',\n", + " '037r_3',\n", + " '037r_4',\n", + " '037v_1',\n", + " '037v_2',\n", + " '037v_3',\n", + " '038r_1',\n", + " '038r_2',\n", + " '038r_3',\n", + " '038r_4',\n", + " '038v_1',\n", + " '038v_2',\n", + " '038v_5',\n", + " '038v_6',\n", + " '039r_1',\n", + " '039r_2',\n", + " '039v_1',\n", + " '039v_2',\n", + " '039v_3',\n", + " '040r_1',\n", + " '040r_2',\n", + " '040r_3',\n", + " '040r_4',\n", + " '040r_5',\n", + " '040v_1',\n", + " '040v_2',\n", + " '040v_3',\n", + " '040v_4',\n", + " '041r_03',\n", + " '041r_04',\n", + " '041r_1',\n", + " '041v_1',\n", + " '041v_2',\n", + " '041v_3',\n", + " '042r_1',\n", + " '042r_2',\n", + " '042r_3',\n", + " '042v_1',\n", + " '042v_2',\n", + " '042v_3',\n", + " '042v_4',\n", + " '042v_5',\n", + " '042v_6',\n", + " '043r_2',\n", + " '043r_3',\n", + " '043r_4',\n", + " '043v_1',\n", + " '043v_2',\n", + " '043v_3',\n", + " '043v_4',\n", + " '044r_1',\n", + " '044r_2',\n", + " '044r_3',\n", + " '044r_4',\n", + " '044r_5',\n", + " '044v_1',\n", + " '044v_2',\n", + " '044v_3',\n", + " '044v_4',\n", + " '045r_1',\n", + " '045v_1',\n", + " '045v_2',\n", + " '046r_1',\n", + " '046r_2',\n", + " '046r_3',\n", + " '046r_4',\n", + " '046v_1',\n", + " '046v_2',\n", + " '046v_3',\n", + " '046v_4',\n", + " '046v_5',\n", + " '046v_6',\n", + " '046v_7',\n", + " '047r_1',\n", + " '047r_2',\n", + " '047r_3',\n", + " '047r_4',\n", + " '047r_5',\n", + " '047v_1',\n", + " '047v_2',\n", + " '047v_3',\n", + " '047v_4',\n", + " '048r_1',\n", + " '048r_2',\n", + " '048r_3',\n", + " '048r_4',\n", + " '048v_1',\n", + " '048v_2',\n", + " '049r_1',\n", + " '049r_2',\n", + " '049r_3',\n", + " '049r_4',\n", + " '049v_1',\n", + " '049v_2',\n", + " '050r_1',\n", + " '050r_2',\n", + " '050v_1',\n", + " '050v_2',\n", + " '051r_1',\n", + " '051r_2',\n", + " '052r_1',\n", + " '052v_2',\n", + " '053r_1',\n", + " '053r_2',\n", + " '053r_3',\n", + " '053r_4',\n", + " '053r_6',\n", + " '053v_1',\n", + " '054v_2',\n", + " '054v_3',\n", + " '054v_4',\n", + " '054v_5',\n", + " '055r_1',\n", + " '055r_2',\n", + " '055r_3',\n", + " '055r_4',\n", + " '055v_1',\n", + " '055v_2',\n", + " '055v_3',\n", + " '055v_4',\n", + " '056r_1',\n", + " '056r_2',\n", + " '056v_1',\n", + " '057v_1',\n", + " '057v_2',\n", + " '058v_1',\n", + " '058v_3',\n", + " '058v_4',\n", + " '058v_5',\n", + " '059r_1',\n", + " '059r_2',\n", + " '059v_1',\n", + " '059v_2',\n", + " '059v_3',\n", + " '059v_4',\n", + " '059v_5',\n", + " '059v_6',\n", + " '060r_1',\n", + " '060r_3',\n", + " '060v_1',\n", + " '060v_2',\n", + " '060v_3',\n", + " '060v_4',\n", + " '060v_5',\n", + " '061r_1',\n", + " '061r_3',\n", + " '061v_1',\n", + " '061v_2',\n", + " '061v_3',\n", + " '061v_4',\n", + " '062r_1',\n", + " '062r_2',\n", + " '062r_3',\n", + " '062r_4',\n", + " '062v_1',\n", + " '062v_2',\n", + " '062v_3',\n", + " '063r_1',\n", + " '063r_2',\n", + " '063r_3',\n", + " '063r_4',\n", + " '063r_5',\n", + " '063r_6',\n", + " '063v_1',\n", + " '063v_2',\n", + " '063v_3',\n", + " '063v_4',\n", + " '063v_5',\n", + " '063v_6',\n", + " '063v_7',\n", + " '064r_2',\n", + " '064r_3',\n", + " '064r_4',\n", + " '064r_5',\n", + " '064r_6',\n", + " '064r_7',\n", + " '064v_1',\n", + " '064v_3',\n", + " '064v_5',\n", + " '065r_1',\n", + " '065r_3',\n", + " '065r_4',\n", + " '065v_1',\n", + " '065v_2',\n", + " '065v_3',\n", + " '065v_5',\n", + " '065v_6',\n", + " '065v_7',\n", + " '066r_2',\n", + " '066r_3',\n", + " '066r_4',\n", + " '066r_5',\n", + " '066r_6',\n", + " '066v_1',\n", + " '066v_2',\n", + " '066v_3',\n", + " '066v_4',\n", + " '067r_1',\n", + " '067r_2',\n", + " '067r_3',\n", + " '067r_4',\n", + " '067v_1',\n", + " '067v_2',\n", + " '067v_3',\n", + " '068r_1',\n", + " '068r_2',\n", + " '068r_3',\n", + " '069r_2',\n", + " '071r_1',\n", + " '071r_2',\n", + " '071r_3',\n", + " '071r_4',\n", + " '071r_5',\n", + " '071v_1',\n", + " '071v_3',\n", + " '071v_4',\n", + " '072r_1',\n", + " '072r_2',\n", + " '072v_1',\n", + " '073r_1',\n", + " '073r_2',\n", + " '073r_3',\n", + " '073r_4',\n", + " '073r_5',\n", + " '073v_1',\n", + " '073v_2',\n", + " '073v_3',\n", + " '073v_4',\n", + " '074r_1',\n", + " '074r_2',\n", + " '074r_3',\n", + " '074v_1',\n", + " '074v_2',\n", + " '074v_3',\n", + " '074v_4',\n", + " '075r_1',\n", + " '075r_2',\n", + " '075r_3',\n", + " '075r_4',\n", + " '075r_5',\n", + " '075v_1',\n", + " '075v_2',\n", + " '075v_3',\n", + " '075v_4',\n", + " '076r_1',\n", + " '076r_2',\n", + " '076r_3',\n", + " '076r_4',\n", + " '076r_5',\n", + " '076v_1',\n", + " '076v_2',\n", + " '076v_3',\n", + " '076v_4',\n", + " '077r_1',\n", + " '077r_2',\n", + " '077r_3',\n", + " '077r_4',\n", + " '077v_1',\n", + " '077v_2',\n", + " '077v_3',\n", + " '078r_1',\n", + " '078r_2',\n", + " '078r_3',\n", + " '078v_1',\n", + " '078v_2',\n", + " '078v_3',\n", + " '078v_4',\n", + " '079r_1',\n", + " '079r_2',\n", + " '079r_3',\n", + " '079v_1',\n", + " '079v_2',\n", + " '079v_3',\n", + " '079v_4',\n", + " '080r_1',\n", + " '080r_2',\n", + " '080r_3',\n", + " '080v_1',\n", + " '081r_1',\n", + " '081r_2',\n", + " '081r_3',\n", + " '081r_4',\n", + " '081v_1',\n", + " '081v_2',\n", + " '081v_3',\n", + " '081v_4',\n", + " '082r_1',\n", + " '082r_2',\n", + " '082r_3',\n", + " '082r_4',\n", + " '082v_1',\n", + " '082v_2',\n", + " '082v_3',\n", + " '082v_4',\n", + " '083r_1',\n", + " '083r_2',\n", + " '083r_3',\n", + " '083r_4',\n", + " '083r_5',\n", + " '083r_6',\n", + " '083v_1',\n", + " '083v_2',\n", + " '083v_3',\n", + " '084r_1',\n", + " '084r_3',\n", + " '084r_4',\n", + " '084r_5',\n", + " '084v_1',\n", + " '084v_2',\n", + " '084v_3',\n", + " '084v_4',\n", + " '085r_1',\n", + " '085r_2',\n", + " '085v_1',\n", + " '085v_2',\n", + " '085v_3',\n", + " '085v_4',\n", + " '086v_1',\n", + " '087r_1',\n", + " '087v_1',\n", + " '087v_2',\n", + " '087v_3',\n", + " '088r_2',\n", + " '088r_3',\n", + " '088r_5',\n", + " '088r_6',\n", + " '088v_1',\n", + " '088v_2',\n", + " '089r_1',\n", + " '089r_3',\n", + " '089v_1',\n", + " '089v_2',\n", + " '090r_1',\n", + " '090r_2',\n", + " '090r_3',\n", + " '090v_1',\n", + " '090v_2',\n", + " '091r_2',\n", + " '092r_1',\n", + " '092r_2',\n", + " '092r_3',\n", + " '092r_4',\n", + " '092v_1',\n", + " '092v_2',\n", + " '092v_3',\n", + " '093r_1',\n", + " '093r_4',\n", + " '093r_5',\n", + " '093v_1',\n", + " '093v_2',\n", + " '093v_3',\n", + " '094r_1',\n", + " '096v_1',\n", + " '096v_2',\n", + " '096v_3',\n", + " '097r_1',\n", + " '097r_2',\n", + " '097r_3',\n", + " '097v_1',\n", + " '098r_1',\n", + " '098r_2',\n", + " '098r_3',\n", + " '098v_2',\n", + " '098v_4',\n", + " '098v_5',\n", + " '099r_3',\n", + " '099v_2',\n", + " '099v_4',\n", + " '099v_5',\n", + " '099v_6',\n", + " '100r_1',\n", + " '100r_3',\n", + " '100r_4',\n", + " '100r_5',\n", + " '100v_1',\n", + " '100v_2',\n", + " '101r_1',\n", + " '101r_2',\n", + " '101v_1',\n", + " '101v_2',\n", + " '101v_3',\n", + " '101v_4',\n", + " '102r_1',\n", + " '102r_2',\n", + " '102r_3',\n", + " '102r_4',\n", + " '102v_1',\n", + " '102v_2',\n", + " '102v_3',\n", + " '103r_1',\n", + " '103r_2',\n", + " '103v_1',\n", + " '103v_2',\n", + " '103v_3',\n", + " '103v_4',\n", + " '103v_5',\n", + " '104r_1',\n", + " '104r_2',\n", + " '104r_3',\n", + " '104r_4',\n", + " '104r_5',\n", + " '104v_1',\n", + " '104v_2',\n", + " '104v_3',\n", + " '104v_4',\n", + " '105r_2',\n", + " '105r_3',\n", + " '105r_4',\n", + " '105v_2',\n", + " '105v_4',\n", + " '105v_5',\n", + " '106r_1',\n", + " '106r_2',\n", + " '106v_1',\n", + " '106v_2',\n", + " '106v_3',\n", + " '107r_1',\n", + " '108r_2',\n", + " '109r_1',\n", + " '109r_2',\n", + " '109r_3',\n", + " '109r_5',\n", + " '109v_1',\n", + " '109v_2',\n", + " '110r_2',\n", + " '110r_3',\n", + " '110v_1',\n", + " '110v_2',\n", + " '110v_3',\n", + " '111r_2',\n", + " '111r_3',\n", + " '111r_4',\n", + " '111r_5',\n", + " '111v_1',\n", + " '111v_2',\n", + " '111v_4',\n", + " '111v_5',\n", + " '112r_1',\n", + " '112r_2',\n", + " '112r_3',\n", + " '112r_4',\n", + " '112v_1',\n", + " '113r_1',\n", + " '114r_1',\n", + " '115r_1',\n", + " '115r_2',\n", + " '115v_1',\n", + " '115v_2',\n", + " '115v_3',\n", + " '116r_1',\n", + " '116r_2',\n", + " '116r_3',\n", + " '116r_4',\n", + " '116v_1',\n", + " '116v_2',\n", + " '116v_3',\n", + " '117r_1',\n", + " '117v_1',\n", + " '117v_2',\n", + " '117v_3',\n", + " '117v_4',\n", + " '117v_5',\n", + " '118r_1',\n", + " '118r_2',\n", + " '118r_3',\n", + " '118r_4',\n", + " '118r_5',\n", + " '118v_1',\n", + " '119r_1',\n", + " '119v_1',\n", + " '119v_2',\n", + " '120r_1',\n", + " '120r_2',\n", + " '120r_3',\n", + " '',\n", + " '120v_1',\n", + " '120v_2',\n", + " '120v_3',\n", + " '120v_6',\n", + " '121r_1',\n", + " '121v_1',\n", + " '121v_2',\n", + " '122r_1',\n", + " '122r_2',\n", + " '122v_1',\n", + " '122v_2',\n", + " '122v_3',\n", + " '123r_1',\n", + " '124r_1',\n", + " '124r_2',\n", + " '124r_3',\n", + " '124r_4',\n", + " '124v_1',\n", + " '124v_2',\n", + " '124v_3',\n", + " '125r_1',\n", + " '125r_2',\n", + " '125v_2',\n", + " '125v_3',\n", + " '126r_1',\n", + " '126v_1',\n", + " '126v_2',\n", + " '126v_3',\n", + " '127r_1',\n", + " '127v_1',\n", + " '128r_1',\n", + " '128v_1',\n", + " '129r_1',\n", + " '129r_2',\n", + " '129r_3',\n", + " '129r_4',\n", + " '129v_1',\n", + " '129v_2',\n", + " '129v_3',\n", + " '129v_4',\n", + " '130r_1',\n", + " '130r_2',\n", + " '130r_3',\n", + " '130r_4',\n", + " '130v_1',\n", + " '130v_3',\n", + " '131r_1',\n", + " '131r_2',\n", + " '131r_3',\n", + " '131r_4',\n", + " '131r_5',\n", + " '131v_1',\n", + " '132r_1',\n", + " '132r_2',\n", + " '132v_1',\n", + " '132v_2',\n", + " '132v_3',\n", + " '133r_1',\n", + " '133r_2',\n", + " '133r_3',\n", + " '133r_4',\n", + " '133v_1',\n", + " '133v_2',\n", + " '133v_3',\n", + " '134r_1',\n", + " '134r_2',\n", + " '134v_1',\n", + " '134v_2',\n", + " '134v_3',\n", + " '135r_1',\n", + " '135r_2',\n", + " '135r_3',\n", + " '135v_1',\n", + " '136r_1',\n", + " '136v_1',\n", + " '137r_1',\n", + " '137r_2',\n", + " '137r_3',\n", + " '137v_1',\n", + " '138v_1',\n", + " '138v_2',\n", + " '138v_3',\n", + " '139r_1',\n", + " '139v_1',\n", + " '140v_1',\n", + " '140v_2',\n", + " '140v_3',\n", + " '141r_1',\n", + " '142v_1',\n", + " '142v_3',\n", + " '143r_1',\n", + " '143r_2',\n", + " '143r_3',\n", + " '143v_1',\n", + " '143v_2',\n", + " '143v_3',\n", + " '144r_1',\n", + " '145r_1',\n", + " '145r_2',\n", + " '145v_1',\n", + " '145v_2',\n", + " '146v_1',\n", + " '147v_1',\n", + " '147v_2',\n", + " '147v_4',\n", + " '148r_1',\n", + " '148r_2',\n", + " '148r_4',\n", + " '148v_1',\n", + " '149r_1',\n", + " '149r_2',\n", + " '149r_3',\n", + " '149r_4',\n", + " '149v_1',\n", + " '149v_2',\n", + " '149v_3',\n", + " '149v_4',\n", + " '150r_1',\n", + " '150r_2',\n", + " '150r_3',\n", + " '150v_1',\n", + " '151v_1',\n", + " '152r_1',\n", + " '152v_1',\n", + " '153r_1',\n", + " '153r_2',\n", + " '153v_1',\n", + " '153v_2',\n", + " '154r_1',\n", + " '154r_2',\n", + " '154r_3',\n", + " '154r_4',\n", + " '154r_5',\n", + " '154v_1',\n", + " '154v_3',\n", + " '154v_4',\n", + " '154v_5',\n", + " '155r_1',\n", + " '155v_1',\n", + " '156r_1',\n", + " '156r_2',\n", + " '156r_3',\n", + " '156v_1',\n", + " '157r_1',\n", + " '157r_2',\n", + " '157r_3',\n", + " '157r_4',\n", + " '157r_5',\n", + " '157v_1',\n", + " '157v_2',\n", + " '157v_3',\n", + " '158r_1',\n", + " '158v_1',\n", + " '158v_2',\n", + " '158v_3',\n", + " '158v_4',\n", + " '159r_1',\n", + " '159r_3',\n", + " '159r_4',\n", + " '159v_1',\n", + " '159v_2',\n", + " '159v_4',\n", + " '160r_1',\n", + " '160r_2',\n", + " '160v_1',\n", + " '160v_2',\n", + " '160v_3',\n", + " '160v_4',\n", + " '160v_5',\n", + " '161r_1',\n", + " '161v_1',\n", + " '162r_2',\n", + " '162r_3',\n", + " '162v_2',\n", + " '162v_4',\n", + " '163r_1',\n", + " '163r_2',\n", + " '163v_1',\n", + " '163v_2',\n", + " '163v_3',\n", + " '164r_2',\n", + " '164r_3',\n", + " '164r_4',\n", + " '164v_1',\n", + " '164v_2',\n", + " '164v_3',\n", + " '165r_1',\n", + " '165r_2',\n", + " '165r_3',\n", + " '165r_4',\n", + " '165r_5',\n", + " '165r_6',\n", + " '165v_1',\n", + " '165v_2',\n", + " '165v_4',\n", + " '165v_5',\n", + " '165v_6',\n", + " '165v_7',\n", + " '166v_3',\n", + " '166v_4',\n", + " '166v_5',\n", + " '167r_1',\n", + " '169r_1',\n", + " '169v_1',\n", + " '169v_2',\n", + " '170r_1',\n", + " '170r_2',\n", + " '170r_4',\n", + " '170r_5',\n", + " '170r_6',\n", + " '170v_2',\n", + " '170v_3']" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "has_materials = manuscript.search(material=True)\n", + "has_materials" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['001r_1',\n", + " '001v_1',\n", + " '002r_2',\n", + " '003r_1',\n", + " '004v_1',\n", + " '004v_2',\n", + " '004v_3',\n", + " '006r_1',\n", + " '006v_1',\n", + " '007r_2',\n", + " '007r_3',\n", + " '007v_2',\n", + " '008r_1',\n", + " '009r_1',\n", + " '010r_1',\n", + " '010r_3',\n", + " '012r_3',\n", + " '014r_1',\n", + " '015r_1',\n", + " '015v_6',\n", + " '016v_1',\n", + " '016v_2',\n", + " '016v_4',\n", + " '016v_5',\n", + " '020r_1',\n", + " '020r_2',\n", + " '020v_1',\n", + " '020v_2',\n", + " '020v_4',\n", + " '029r_1',\n", + " '029v_1',\n", + " '029v_6',\n", + " '031r_1',\n", + " '032v_1',\n", + " '033r_1',\n", + " '033v_2',\n", + " '035v_1',\n", + " '035v_2',\n", + " '036r_1',\n", + " '036v_3',\n", + " '037r_2',\n", + " '037v_1',\n", + " '038r_2',\n", + " '038r_4',\n", + " '038v_2',\n", + " '038v_5',\n", + " '038v_6',\n", + " '039r_2',\n", + " '039v_3',\n", + " '040r_1',\n", + " '041r_04',\n", + " '041v_3',\n", + " '042v_1',\n", + " '042v_5',\n", + " '042v_6',\n", + " '043v_1',\n", + " '044r_5',\n", + " '044v_2',\n", + " '044v_3',\n", + " '046r_1',\n", + " '046r_2',\n", + " '046r_3',\n", + " '046r_4',\n", + " '047r_1',\n", + " '047r_3',\n", + " '047r_5',\n", + " '048r_3',\n", + " '049r_2',\n", + " '049r_3',\n", + " '050r_1',\n", + " '050v_1',\n", + " '051r_1',\n", + " '051r_2',\n", + " '052r_1',\n", + " '053v_1',\n", + " '055r_3',\n", + " '055v_2',\n", + " '056r_1',\n", + " '056r_2',\n", + " '056v_1',\n", + " '057v_1',\n", + " '057v_2',\n", + " '058v_1',\n", + " '058v_4',\n", + " '058v_5',\n", + " '059r_2',\n", + " '060r_3',\n", + " '060v_3',\n", + " '063r_1',\n", + " '063r_2',\n", + " '063v_1',\n", + " '063v_3',\n", + " '063v_4',\n", + " '064r_2',\n", + " '065r_1',\n", + " '066r_3',\n", + " '066v_1',\n", + " '066v_2',\n", + " '067r_1',\n", + " '067r_4',\n", + " '067v_3',\n", + " '069r_2',\n", + " '071r_2',\n", + " '071r_3',\n", + " '071v_1',\n", + " '072r_2',\n", + " '073r_3',\n", + " '073r_4',\n", + " '073v_1',\n", + " '073v_2',\n", + " '073v_3',\n", + " '074r_3',\n", + " '075v_2',\n", + " '075v_4',\n", + " '076r_3',\n", + " '076r_5',\n", + " '076v_1',\n", + " '077r_2',\n", + " '077v_1',\n", + " '077v_2',\n", + " '077v_3',\n", + " '078r_1',\n", + " '079v_1',\n", + " '081v_3',\n", + " '081v_4',\n", + " '083r_3',\n", + " '083v_2',\n", + " '084v_1',\n", + " '084v_2',\n", + " '084v_4',\n", + " '085v_4',\n", + " '087v_2',\n", + " '088r_5',\n", + " '088v_2',\n", + " '089v_1',\n", + " '089v_2',\n", + " '090v_2',\n", + " '091r_2',\n", + " '093r_1',\n", + " '094r_1',\n", + " '096v_3',\n", + " '097v_1',\n", + " '098r_1',\n", + " '098r_2',\n", + " '098r_3',\n", + " '098v_2',\n", + " '100r_1',\n", + " '100v_2',\n", + " '101v_3',\n", + " '102r_2',\n", + " '102v_2',\n", + " '103r_1',\n", + " '104r_2',\n", + " '104r_4',\n", + " '104r_5',\n", + " '105r_4',\n", + " '107r_1',\n", + " '108r_2',\n", + " '109r_1',\n", + " '109v_1',\n", + " '110v_1',\n", + " '110v_2',\n", + " '111v_1',\n", + " '112v_1',\n", + " '116r_2',\n", + " '116r_4',\n", + " '116v_2',\n", + " '117v_1',\n", + " '117v_2',\n", + " '118r_3',\n", + " '118v_1',\n", + " '119r_1',\n", + " '120r_2',\n", + " '120v_6',\n", + " '121r_1',\n", + " '121v_1',\n", + " '122r_2',\n", + " '123r_1',\n", + " '124r_1',\n", + " '126r_1',\n", + " '126v_3',\n", + " '128r_1',\n", + " '129r_1',\n", + " '129r_2',\n", + " '129r_4',\n", + " '129v_4',\n", + " '130r_3',\n", + " '130r_4',\n", + " '134v_3',\n", + " '135r_1',\n", + " '135r_3',\n", + " '135v_1',\n", + " '138v_2',\n", + " '138v_3',\n", + " '139r_1',\n", + " '139v_1',\n", + " '141r_1',\n", + " '142v_1',\n", + " '143r_1',\n", + " '143v_3',\n", + " '144r_1',\n", + " '145v_1',\n", + " '147v_4',\n", + " '148r_1',\n", + " '149v_3',\n", + " '151v_1',\n", + " '152r_1',\n", + " '153r_2',\n", + " '154v_4',\n", + " '154v_5',\n", + " '155r_1',\n", + " '155v_1',\n", + " '156v_1',\n", + " '158r_1',\n", + " '158v_1',\n", + " '159v_2',\n", + " '162v_2',\n", + " '163r_1',\n", + " '164r_2',\n", + " '169r_1',\n", + " '170v_2',\n", + " '170v_3']" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "has_materials_plants = manuscript.search(material=True, plant=True)\n", + "has_materials_plants" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['001r_1',\n", + " '001r_2',\n", + " '001r_3',\n", + " '001r_4',\n", + " '001v_1',\n", + " '002r_1',\n", + " '002r_2',\n", + " '002v_1',\n", + " '002v_2',\n", + " '002v_3',\n", + " '003r_1',\n", + " '003r_2',\n", + " '003r_3',\n", + " '003v_1',\n", + " '004r_1',\n", + " '004r_2',\n", + " '004v_1',\n", + " '004v_2',\n", + " '004v_3',\n", + " '005r_1',\n", + " '005r_2',\n", + " '005v_1',\n", + " '006r_1',\n", + " '006v_1',\n", + " '006v_2',\n", + " '007r_1',\n", + " '007r_2',\n", + " '007r_3',\n", + " '007r_4',\n", + " '007v_1',\n", + " '007v_2',\n", + " '007v_3',\n", + " '007v_4',\n", + " '008r_1',\n", + " '008r_2',\n", + " '008r_3',\n", + " '008r_4',\n", + " '008v_1',\n", + " '008v_2',\n", + " '008v_3',\n", + " '008v_4',\n", + " '008v_5',\n", + " '009r_1',\n", + " '009r_2',\n", + " '009r_3',\n", + " '009v_1',\n", + " '009v_2',\n", + " '009v_3',\n", + " '010r_1',\n", + " '010r_2',\n", + " '010r_3',\n", + " '010r_4',\n", + " '010r_5',\n", + " '010v_1',\n", + " '010v_2',\n", + " '010v_3',\n", + " '010v_4',\n", + " '011r_1',\n", + " '011v_1',\n", + " '011v_2',\n", + " '011v_3',\n", + " '011v_4',\n", + " '011v_5',\n", + " '012r_1',\n", + " '012r_2',\n", + " '012r_3',\n", + " '012r_4',\n", + " '012v_1',\n", + " '012v_2',\n", + " '012v_3',\n", + " '013r_1',\n", + " '013r_2',\n", + " '013r_3',\n", + " '013r_4',\n", + " '013v_1',\n", + " '013v_2',\n", + " '013v_3',\n", + " '013v_4',\n", + " '013v_5',\n", + " '014r_1',\n", + " '015r_1',\n", + " '015r_2',\n", + " '015r_3',\n", + " '015v_1',\n", + " '015v_2',\n", + " '015v_3',\n", + " '015v_4',\n", + " '015v_5',\n", + " '015v_6',\n", + " '016r_1',\n", + " '016v_1',\n", + " '016v_2',\n", + " '016v_3',\n", + " '016v_4',\n", + " '016v_5',\n", + " '017r_1',\n", + " '019v_1',\n", + " '019v_2',\n", + " '019v_3',\n", + " '020r_1',\n", + " '020r_2',\n", + " '020v_1',\n", + " '020v_2',\n", + " '020v_3',\n", + " '020v_4',\n", + " '020v_5',\n", + " '020v_6',\n", + " '021r_1',\n", + " '021r_2',\n", + " '021v_1',\n", + " '021v_2',\n", + " '022r_1',\n", + " '022v_1',\n", + " '023r_1',\n", + " '023v_1',\n", + " '024r_1',\n", + " '024v_1',\n", + " '024v_2',\n", + " '024v_3',\n", + " '024v_4',\n", + " '025v_1',\n", + " '026r_1',\n", + " '026r_2',\n", + " '026v_1',\n", + " '027r_1',\n", + " '027r_2',\n", + " '027r_3',\n", + " '027v_1',\n", + " '027v_2',\n", + " '027v_3',\n", + " '027v_4',\n", + " '027v_5',\n", + " '027v_6',\n", + " '027v_7',\n", + " '027v_8',\n", + " '028r_1',\n", + " '028v_1',\n", + " '029r_1',\n", + " '029v_1',\n", + " '029v_2',\n", + " '029v_3',\n", + " '029v_4',\n", + " '029v_5',\n", + " '029v_6',\n", + " '030r_1',\n", + " '030r_2',\n", + " '031r_1',\n", + " '031r_2',\n", + " '031r_3',\n", + " '031r_4',\n", + " '031v_1',\n", + " '031v_2',\n", + " '031v_3',\n", + " '031v_4',\n", + " '032r_1',\n", + " '032r_2',\n", + " '032r_3',\n", + " '032v_1',\n", + " '032v_2',\n", + " '032v_3',\n", + " '033r_1',\n", + " '033r_2',\n", + " '033v_1',\n", + " '033v_2',\n", + " '034r_1',\n", + " '034r_2',\n", + " '034r_3',\n", + " '034r_4',\n", + " '034r_5',\n", + " '034v_1',\n", + " '035r_1',\n", + " '035r_2',\n", + " '035r_3',\n", + " '035r_4',\n", + " '035v_1',\n", + " '035v_2',\n", + " '036r_1',\n", + " '036v_1',\n", + " '036v_2',\n", + " '036v_3',\n", + " '037r_1',\n", + " '037r_2',\n", + " '037r_3',\n", + " '037r_4',\n", + " '037v_1',\n", + " '037v_2',\n", + " '037v_3',\n", + " '038r_1',\n", + " '038r_2',\n", + " '038r_3',\n", + " '038r_4',\n", + " '038v_1',\n", + " '038v_2',\n", + " '038v_3',\n", + " '038v_4',\n", + " '038v_5',\n", + " '038v_6',\n", + " '039r_1',\n", + " '039r_2',\n", + " '039v_1',\n", + " '039v_2',\n", + " '039v_3',\n", + " '040r_1',\n", + " '040r_2',\n", + " '040r_3',\n", + " '040r_4',\n", + " '040r_5',\n", + " '040v_1',\n", + " '040v_2',\n", + " '040v_3',\n", + " '040v_4',\n", + " '041r_02',\n", + " '041r_03',\n", + " '041r_04',\n", + " '041r_1',\n", + " '041v_1',\n", + " '041v_2',\n", + " '041v_3',\n", + " '042r_1',\n", + " '042r_2',\n", + " '042r_3',\n", + " '042v_1',\n", + " '042v_2',\n", + " '042v_3',\n", + " '042v_4',\n", + " '042v_5',\n", + " '042v_6',\n", + " '043r_1',\n", + " '043r_2',\n", + " '043r_3',\n", + " '043r_4',\n", + " '043v_1',\n", + " '043v_2',\n", + " '043v_3',\n", + " '043v_4',\n", + " '044r_1',\n", + " '044r_2',\n", + " '044r_3',\n", + " '044r_4',\n", + " '044r_5',\n", + " '044v_1',\n", + " '044v_2',\n", + " '044v_3',\n", + " '044v_4',\n", + " '045r_1',\n", + " '045v_1',\n", + " '045v_2',\n", + " '046r_1',\n", + " '046r_2',\n", + " '046r_3',\n", + " '046r_4',\n", + " '046r_5',\n", + " '046v_1',\n", + " '046v_2',\n", + " '046v_3',\n", + " '046v_4',\n", + " '046v_5',\n", + " '046v_6',\n", + " '046v_7',\n", + " '047r_1',\n", + " '047r_2',\n", + " '047r_3',\n", + " '047r_4',\n", + " '047r_5',\n", + " '047v_1',\n", + " '047v_2',\n", + " '047v_3',\n", + " '047v_4',\n", + " '048r_1',\n", + " '048r_2',\n", + " '048r_3',\n", + " '048r_4',\n", + " '048v_1',\n", + " '048v_2',\n", + " '049r_1',\n", + " '049r_2',\n", + " '049r_3',\n", + " '049r_4',\n", + " '049v_1',\n", + " '049v_2',\n", + " '049v_3',\n", + " '050r_1',\n", + " '050r_2',\n", + " '050v_1',\n", + " '050v_2',\n", + " '051r_1',\n", + " '051r_2',\n", + " '052r_1',\n", + " '052v_1',\n", + " '052v_2',\n", + " '053r_1',\n", + " '053r_2',\n", + " '053r_3',\n", + " '053r_4',\n", + " '053r_5',\n", + " '053r_6',\n", + " '053v_1',\n", + " '054v_1',\n", + " '054v_2',\n", + " '054v_3',\n", + " '054v_4',\n", + " '054v_5',\n", + " '055r_1',\n", + " '055r_2',\n", + " '055r_3',\n", + " '055r_4',\n", + " '055v_1',\n", + " '055v_2',\n", + " '055v_3',\n", + " '055v_4',\n", + " '056r_1',\n", + " '056r_2',\n", + " '056v_1',\n", + " '057v_1',\n", + " '057v_2',\n", + " '058v_1',\n", + " '058v_2',\n", + " '058v_3',\n", + " '058v_4',\n", + " '058v_5',\n", + " '059r_1',\n", + " '059r_2',\n", + " '059v_1',\n", + " '059v_2',\n", + " '059v_3',\n", + " '059v_4',\n", + " '059v_5',\n", + " '059v_6',\n", + " '060r_1',\n", + " '060r_2',\n", + " '060r_3',\n", + " '060v_1',\n", + " '060v_2',\n", + " '060v_3',\n", + " '060v_4',\n", + " '060v_5',\n", + " '061r_1',\n", + " '061r_2',\n", + " '061r_3',\n", + " '061r_4',\n", + " '061v_1',\n", + " '061v_2',\n", + " '061v_3',\n", + " '061v_4',\n", + " '062r_1',\n", + " '062r_2',\n", + " '062r_3',\n", + " '062r_4',\n", + " '062v_1',\n", + " '062v_2',\n", + " '062v_3',\n", + " '063r_1',\n", + " '063r_2',\n", + " '063r_3',\n", + " '063r_4',\n", + " '063r_5',\n", + " '063r_6',\n", + " '063v_1',\n", + " '063v_2',\n", + " '063v_3',\n", + " '063v_4',\n", + " '063v_5',\n", + " '063v_6',\n", + " '063v_7',\n", + " '064r_1',\n", + " '064r_2',\n", + " '064r_3',\n", + " '064r_4',\n", + " '064r_5',\n", + " '064r_6',\n", + " '064r_7',\n", + " '064r_8',\n", + " '064v_1',\n", + " '064v_3',\n", + " '064v_4',\n", + " '064v_5',\n", + " '065r_1',\n", + " '065r_2',\n", + " '065r_3',\n", + " '065r_4',\n", + " '065v_1',\n", + " '065v_2',\n", + " '065v_3',\n", + " '065v_4',\n", + " '065v_5',\n", + " '065v_6',\n", + " '065v_7',\n", + " '066r_1',\n", + " '066r_2',\n", + " '066r_3',\n", + " '066r_4',\n", + " '066r_5',\n", + " '066r_6',\n", + " '066v_1',\n", + " '066v_2',\n", + " '066v_3',\n", + " '066v_4',\n", + " '067r_1',\n", + " '067r_2',\n", + " '067r_3',\n", + " '067r_4',\n", + " '067v_1',\n", + " '067v_2',\n", + " '067v_3',\n", + " '068r_1',\n", + " '068r_2',\n", + " '068r_3',\n", + " '069r_1',\n", + " '069r_2',\n", + " '071r_1',\n", + " '071r_2',\n", + " '071r_3',\n", + " '071r_4',\n", + " '071r_5',\n", + " '071v_1',\n", + " '071v_2',\n", + " '071v_3',\n", + " '071v_4',\n", + " '072r_1',\n", + " '072r_2',\n", + " '072v_1',\n", + " '073r_1',\n", + " '073r_2',\n", + " '073r_3',\n", + " '073r_4',\n", + " '073r_5',\n", + " '073v_1',\n", + " '073v_2',\n", + " '073v_3',\n", + " '073v_4',\n", + " '074r_1',\n", + " '074r_2',\n", + " '074r_3',\n", + " '074v_1',\n", + " '074v_2',\n", + " '074v_3',\n", + " '074v_4',\n", + " '075r_1',\n", + " '075r_2',\n", + " '075r_3',\n", + " '075r_4',\n", + " '075r_5',\n", + " '075v_1',\n", + " '075v_2',\n", + " '075v_3',\n", + " '075v_4',\n", + " '076r_1',\n", + " '076r_2',\n", + " '076r_3',\n", + " '076r_4',\n", + " '076r_5',\n", + " '076v_1',\n", + " '076v_2',\n", + " '076v_3',\n", + " '076v_4',\n", + " '077r_1',\n", + " '077r_2',\n", + " '077r_3',\n", + " '077r_4',\n", + " '077v_1',\n", + " '077v_2',\n", + " '077v_3',\n", + " '078r_1',\n", + " '078r_2',\n", + " '078r_3',\n", + " '078v_1',\n", + " '078v_2',\n", + " '078v_3',\n", + " '078v_4',\n", + " '079r_1',\n", + " '079r_2',\n", + " '079r_3',\n", + " '079v_1',\n", + " '079v_2',\n", + " '079v_3',\n", + " '079v_4',\n", + " '080r_1',\n", + " '080r_2',\n", + " '080r_3',\n", + " '080v_1',\n", + " '081r_1',\n", + " '081r_2',\n", + " '081r_3',\n", + " '081r_4',\n", + " '081v_1',\n", + " '081v_2',\n", + " '081v_3',\n", + " '081v_4',\n", + " '082r_1',\n", + " '082r_2',\n", + " '082r_3',\n", + " '082r_4',\n", + " '082v_1',\n", + " '082v_2',\n", + " '082v_3',\n", + " '082v_4',\n", + " '083r_1',\n", + " '083r_2',\n", + " '083r_3',\n", + " '083r_4',\n", + " '083r_5',\n", + " '083r_6',\n", + " '083v_1',\n", + " '083v_2',\n", + " '083v_3',\n", + " '084r_1',\n", + " '084r_3',\n", + " '084r_4',\n", + " '084r_5',\n", + " '084v_1',\n", + " '084v_2',\n", + " '084v_3',\n", + " '084v_4',\n", + " '085r_1',\n", + " '085r_2',\n", + " '085v_1',\n", + " '085v_2',\n", + " '085v_3',\n", + " '085v_4',\n", + " '086v_1',\n", + " '087r_1',\n", + " '087v_1',\n", + " '087v_2',\n", + " '087v_3',\n", + " '088r_1',\n", + " '088r_2',\n", + " '088r_3',\n", + " '088r_4',\n", + " '088r_5',\n", + " '088r_6',\n", + " '088v_1',\n", + " '088v_2',\n", + " '089r_1',\n", + " '089r_2',\n", + " '089r_3',\n", + " '089v_1',\n", + " '089v_2',\n", + " '090r_1',\n", + " '090r_2',\n", + " '090r_3',\n", + " '090v_1',\n", + " '090v_2',\n", + " '091r_1',\n", + " '091r_2',\n", + " '092r_1',\n", + " '092r_2',\n", + " '092r_3',\n", + " '092r_4',\n", + " '092v_1',\n", + " '092v_2',\n", + " '092v_3',\n", + " '093r_1',\n", + " '093r_2',\n", + " '093r_3',\n", + " '093r_4',\n", + " '093r_5',\n", + " '093v_1',\n", + " '093v_2',\n", + " '093v_3',\n", + " '094r_1',\n", + " '096v_1',\n", + " '096v_2',\n", + " '096v_3',\n", + " '097r_1',\n", + " '097r_2',\n", + " '097r_3',\n", + " '097v_1',\n", + " '097v_2',\n", + " '098r_1',\n", + " '098r_2',\n", + " '098r_3',\n", + " '098v_1',\n", + " '098v_2',\n", + " '098v_3',\n", + " '098v_4',\n", + " '098v_5',\n", + " '099r_3',\n", + " '099v_1',\n", + " '099v_2',\n", + " '099v_3',\n", + " '099v_4',\n", + " '099v_5',\n", + " '099v_6',\n", + " '100r_1',\n", + " '100r_2',\n", + " '100r_3',\n", + " '100r_4',\n", + " '100r_5',\n", + " '100v_1',\n", + " '100v_2',\n", + " '101r_1',\n", + " '101r_2',\n", + " '101v_1',\n", + " '101v_2',\n", + " '101v_3',\n", + " '101v_4',\n", + " '102r_1',\n", + " '102r_2',\n", + " '102r_3',\n", + " '102r_4',\n", + " '102v_1',\n", + " '102v_2',\n", + " '102v_3',\n", + " '103r_1',\n", + " '103r_2',\n", + " '103v_1',\n", + " '103v_2',\n", + " '103v_3',\n", + " '103v_4',\n", + " '103v_5',\n", + " '104r_1',\n", + " '104r_2',\n", + " '104r_3',\n", + " '104r_4',\n", + " '104r_5',\n", + " '104v_1',\n", + " '104v_2',\n", + " '104v_3',\n", + " '104v_4',\n", + " '105r_1',\n", + " '105r_2',\n", + " '105r_3',\n", + " '105r_4',\n", + " '105v_1',\n", + " '105v_2',\n", + " '105v_3',\n", + " '105v_4',\n", + " '105v_5',\n", + " '106r_1',\n", + " '106r_2',\n", + " '106v_1',\n", + " '106v_2',\n", + " '106v_3',\n", + " '107r_1',\n", + " '108r_2',\n", + " '109r_1',\n", + " '109r_2',\n", + " '109r_3',\n", + " '109r_4',\n", + " '109r_5',\n", + " '109v_1',\n", + " '109v_2',\n", + " '110r_1',\n", + " '110r_2',\n", + " '110r_3',\n", + " '110v_1',\n", + " '110v_2',\n", + " '110v_3',\n", + " '111r_1',\n", + " '111r_2',\n", + " '111r_3',\n", + " '111r_4',\n", + " '111r_5',\n", + " '111v_1',\n", + " '111v_2',\n", + " '111v_3',\n", + " '111v_4',\n", + " '111v_5',\n", + " '112r_1',\n", + " '112r_2',\n", + " '112r_3',\n", + " '112r_4',\n", + " '112v_1',\n", + " '113r_1',\n", + " '113v_1',\n", + " '114r_1',\n", + " '115r_1',\n", + " '115r_2',\n", + " '115r_3',\n", + " '115v_1',\n", + " '115v_2',\n", + " '115v_3',\n", + " '116r_1',\n", + " '116r_2',\n", + " '116r_3',\n", + " '116r_4',\n", + " '116v_1',\n", + " '116v_2',\n", + " '116v_3',\n", + " '117r_1',\n", + " '117v_1',\n", + " '117v_2',\n", + " '117v_3',\n", + " '117v_4',\n", + " '117v_5',\n", + " '118r_1',\n", + " '118r_2',\n", + " '118r_3',\n", + " '118r_4',\n", + " '118r_5',\n", + " '118v_1',\n", + " '119r_1',\n", + " '119v_1',\n", + " '119v_2',\n", + " '120r_1',\n", + " '120r_2',\n", + " '120r_3',\n", + " '',\n", + " '120v_1',\n", + " '120v_2',\n", + " '120v_3',\n", + " '120v_6',\n", + " '121r_1',\n", + " '121v_1',\n", + " '121v_2',\n", + " '122r_1',\n", + " '122r_2',\n", + " '122v_1',\n", + " '122v_2',\n", + " '122v_3',\n", + " '123r_1',\n", + " '124r_1',\n", + " '124r_2',\n", + " '124r_3',\n", + " '124r_4',\n", + " '124v_1',\n", + " '124v_2',\n", + " '124v_3',\n", + " '125r_1',\n", + " '125r_2',\n", + " '125r_3',\n", + " '125v_1',\n", + " '125v_2',\n", + " '125v_3',\n", + " '126r_1',\n", + " '126v_1',\n", + " '126v_2',\n", + " '126v_3',\n", + " '127r_1',\n", + " '127v_1',\n", + " '128r_1',\n", + " '128v_1',\n", + " '129r_1',\n", + " '129r_2',\n", + " '129r_3',\n", + " '129r_4',\n", + " '129v_1',\n", + " '129v_2',\n", + " '129v_3',\n", + " '129v_4',\n", + " '130r_1',\n", + " '130r_2',\n", + " '130r_3',\n", + " '130r_4',\n", + " '130v_1',\n", + " '130v_2',\n", + " '130v_3',\n", + " '131r_1',\n", + " '131r_2',\n", + " '131r_3',\n", + " '131r_4',\n", + " '131r_5',\n", + " '131v_1',\n", + " '132r_1',\n", + " '132r_2',\n", + " '132v_1',\n", + " '132v_2',\n", + " '132v_3',\n", + " '133r_1',\n", + " '133r_2',\n", + " '133r_3',\n", + " '133r_4',\n", + " '133v_1',\n", + " '133v_2',\n", + " '133v_3',\n", + " '134r_1',\n", + " '134r_2',\n", + " '134v_1',\n", + " '134v_2',\n", + " '134v_3',\n", + " '135r_1',\n", + " '135r_2',\n", + " '135r_3',\n", + " '135v_1',\n", + " '136r_1',\n", + " '136v_1',\n", + " '137r_1',\n", + " '137r_2',\n", + " '137r_3',\n", + " '137v_1',\n", + " '138v_1',\n", + " '138v_2',\n", + " '138v_3',\n", + " '139r_1',\n", + " '139v_1',\n", + " '140v_1',\n", + " '140v_2',\n", + " '140v_3',\n", + " '141r_1',\n", + " '142v_1',\n", + " '142v_2',\n", + " '142v_3',\n", + " '143r_1',\n", + " '143r_2',\n", + " '143r_3',\n", + " '143v_1',\n", + " '143v_2',\n", + " '143v_3',\n", + " '144r_1',\n", + " '145r_1',\n", + " '145r_2',\n", + " '145v_1',\n", + " '145v_2',\n", + " '146v_1',\n", + " '147v_1',\n", + " '147v_2',\n", + " '147v_3',\n", + " '147v_4',\n", + " '148r_1',\n", + " '148r_2',\n", + " '148r_3',\n", + " '148r_4',\n", + " '148v_1',\n", + " '149r_1',\n", + " '149r_2',\n", + " '149r_3',\n", + " '149r_4',\n", + " '149v_1',\n", + " '149v_2',\n", + " '149v_3',\n", + " '149v_4',\n", + " '150r_1',\n", + " '150r_2',\n", + " '150r_3',\n", + " '150v_1',\n", + " '151v_1',\n", + " '152r_1',\n", + " '152v_1',\n", + " '153r_1',\n", + " '153r_2',\n", + " '153v_1',\n", + " '153v_2',\n", + " '154r_1',\n", + " '154r_2',\n", + " '154r_3',\n", + " '154r_4',\n", + " '154r_5',\n", + " '154v_1',\n", + " '154v_2',\n", + " '154v_3',\n", + " '154v_4',\n", + " '154v_5',\n", + " '155r_1',\n", + " '155v_1',\n", + " '156r_1',\n", + " '156r_2',\n", + " '156r_3',\n", + " '156v_1',\n", + " '157r_1',\n", + " '157r_2',\n", + " '157r_3',\n", + " '157r_4',\n", + " '157r_5',\n", + " '157v_1',\n", + " '157v_2',\n", + " '157v_3',\n", + " '158r_1',\n", + " '158v_1',\n", + " '158v_2',\n", + " '158v_3',\n", + " '158v_4',\n", + " '159r_1',\n", + " '159r_2',\n", + " '159r_3',\n", + " '159r_4',\n", + " '159v_1',\n", + " '159v_2',\n", + " '159v_3',\n", + " '159v_4',\n", + " '160r_1',\n", + " '160r_2',\n", + " '160v_1',\n", + " '160v_2',\n", + " '160v_3',\n", + " '160v_4',\n", + " '160v_5',\n", + " '161r_1',\n", + " '161v_1',\n", + " '162r_1',\n", + " '162r_2',\n", + " '162r_3',\n", + " '162v_1',\n", + " '162v_2',\n", + " '162v_3',\n", + " '162v_4',\n", + " '163r_1',\n", + " '163r_2',\n", + " '163v_1',\n", + " '163v_2',\n", + " '163v_3',\n", + " '164r_1',\n", + " '164r_2',\n", + " '164r_3',\n", + " '164r_4',\n", + " '164v_1',\n", + " '164v_2',\n", + " '164v_3',\n", + " '165r_1',\n", + " '165r_2',\n", + " '165r_3',\n", + " '165r_4',\n", + " '165r_5',\n", + " '165r_6',\n", + " '165v_1',\n", + " '165v_2',\n", + " '165v_3',\n", + " '165v_4',\n", + " '165v_5',\n", + " '165v_6',\n", + " '165v_7',\n", + " '166r_1',\n", + " '166v_2',\n", + " '166v_3',\n", + " '166v_4',\n", + " '166v_5',\n", + " '167r_1',\n", + " '169r_1',\n", + " '169v_1',\n", + " '169v_2',\n", + " '170r_1',\n", + " '170r_2',\n", + " '170r_3',\n", + " '170r_4',\n", + " '170r_5',\n", + " '170r_6',\n", + " '170v_1',\n", + " '170v_2',\n", + " '170v_3',\n", + " '170v_4']" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "rose_entries = manuscript.search(plant=['rose'])\n", + "rose_entries" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['001r_1',\n", + " '001r_2',\n", + " '001r_3',\n", + " '001r_4',\n", + " '001v_1',\n", + " '002r_1',\n", + " '002r_2',\n", + " '002v_1',\n", + " '002v_2',\n", + " '002v_3',\n", + " '003r_1',\n", + " '003r_2',\n", + " '003r_3',\n", + " '003v_1',\n", + " '004r_1',\n", + " '004r_2',\n", + " '004v_1',\n", + " '004v_2',\n", + " '004v_3',\n", + " '005r_1',\n", + " '005r_2',\n", + " '005v_1',\n", + " '006r_1',\n", + " '006v_1',\n", + " '006v_2',\n", + " '007r_1',\n", + " '007r_2',\n", + " '007r_3',\n", + " '007r_4',\n", + " '007v_1',\n", + " '007v_2',\n", + " '007v_3',\n", + " '007v_4',\n", + " '008r_1',\n", + " '008r_2',\n", + " '008r_3',\n", + " '008r_4',\n", + " '008v_1',\n", + " '008v_2',\n", + " '008v_3',\n", + " '008v_4',\n", + " '008v_5',\n", + " '009r_1',\n", + " '009r_2',\n", + " '009r_3',\n", + " '009v_1',\n", + " '009v_2',\n", + " '009v_3',\n", + " '010r_1',\n", + " '010r_2',\n", + " '010r_3',\n", + " '010r_4',\n", + " '010r_5',\n", + " '010v_1',\n", + " '010v_2',\n", + " '010v_3',\n", + " '010v_4',\n", + " '011r_1',\n", + " '011v_1',\n", + " '011v_2',\n", + " '011v_3',\n", + " '011v_4',\n", + " '011v_5',\n", + " '012r_1',\n", + " '012r_2',\n", + " '012r_3',\n", + " '012r_4',\n", + " '012v_1',\n", + " '012v_2',\n", + " '012v_3',\n", + " '013r_1',\n", + " '013r_2',\n", + " '013r_3',\n", + " '013r_4',\n", + " '013v_1',\n", + " '013v_2',\n", + " '013v_3',\n", + " '013v_4',\n", + " '013v_5',\n", + " '014r_1',\n", + " '015r_1',\n", + " '015r_2',\n", + " '015r_3',\n", + " '015v_1',\n", + " '015v_2',\n", + " '015v_3',\n", + " '015v_4',\n", + " '015v_5',\n", + " '015v_6',\n", + " '016r_1',\n", + " '016v_1',\n", + " '016v_2',\n", + " '016v_3',\n", + " '016v_4',\n", + " '016v_5',\n", + " '017r_1',\n", + " '019v_1',\n", + " '019v_2',\n", + " '019v_3',\n", + " '020r_1',\n", + " '020r_2',\n", + " '020v_1',\n", + " '020v_2',\n", + " '020v_3',\n", + " '020v_4',\n", + " '020v_5',\n", + " '020v_6',\n", + " '021r_1',\n", + " '021r_2',\n", + " '021v_1',\n", + " '021v_2',\n", + " '022r_1',\n", + " '022v_1',\n", + " '023r_1',\n", + " '023v_1',\n", + " '024r_1',\n", + " '024v_1',\n", + " '024v_2',\n", + " '024v_3',\n", + " '024v_4',\n", + " '025v_1',\n", + " '026r_1',\n", + " '026r_2',\n", + " '026v_1',\n", + " '027r_1',\n", + " '027r_2',\n", + " '027r_3',\n", + " '027v_1',\n", + " '027v_2',\n", + " '027v_3',\n", + " '027v_4',\n", + " '027v_5',\n", + " '027v_6',\n", + " '027v_7',\n", + " '027v_8',\n", + " '028r_1',\n", + " '028v_1',\n", + " '029r_1',\n", + " '029v_1',\n", + " '029v_2',\n", + " '029v_3',\n", + " '029v_4',\n", + " '029v_5',\n", + " '029v_6',\n", + " '030r_1',\n", + " '030r_2',\n", + " '031r_1',\n", + " '031r_2',\n", + " '031r_3',\n", + " '031r_4',\n", + " '031v_1',\n", + " '031v_2',\n", + " '031v_3',\n", + " '031v_4',\n", + " '032r_1',\n", + " '032r_2',\n", + " '032r_3',\n", + " '032v_1',\n", + " '032v_2',\n", + " '032v_3',\n", + " '033r_1',\n", + " '033r_2',\n", + " '033v_1',\n", + " '033v_2',\n", + " '034r_1',\n", + " '034r_2',\n", + " '034r_3',\n", + " '034r_4',\n", + " '034r_5',\n", + " '034v_1',\n", + " '035r_1',\n", + " '035r_2',\n", + " '035r_3',\n", + " '035r_4',\n", + " '035v_1',\n", + " '035v_2',\n", + " '036r_1',\n", + " '036v_1',\n", + " '036v_2',\n", + " '036v_3',\n", + " '037r_1',\n", + " '037r_2',\n", + " '037r_3',\n", + " '037r_4',\n", + " '037v_1',\n", + " '037v_2',\n", + " '037v_3',\n", + " '038r_1',\n", + " '038r_2',\n", + " '038r_3',\n", + " '038r_4',\n", + " '038v_1',\n", + " '038v_2',\n", + " '038v_3',\n", + " '038v_4',\n", + " '038v_5',\n", + " '038v_6',\n", + " '039r_1',\n", + " '039r_2',\n", + " '039v_1',\n", + " '039v_2',\n", + " '039v_3',\n", + " '040r_1',\n", + " '040r_2',\n", + " '040r_3',\n", + " '040r_4',\n", + " '040r_5',\n", + " '040v_1',\n", + " '040v_2',\n", + " '040v_3',\n", + " '040v_4',\n", + " '041r_02',\n", + " '041r_03',\n", + " '041r_04',\n", + " '041r_1',\n", + " '041v_1',\n", + " '041v_2',\n", + " '041v_3',\n", + " '042r_1',\n", + " '042r_2',\n", + " '042r_3',\n", + " '042v_1',\n", + " '042v_2',\n", + " '042v_3',\n", + " '042v_4',\n", + " '042v_5',\n", + " '042v_6',\n", + " '043r_1',\n", + " '043r_2',\n", + " '043r_3',\n", + " '043r_4',\n", + " '043v_1',\n", + " '043v_2',\n", + " '043v_3',\n", + " '043v_4',\n", + " '044r_1',\n", + " '044r_2',\n", + " '044r_3',\n", + " '044r_4',\n", + " '044r_5',\n", + " '044v_1',\n", + " '044v_2',\n", + " '044v_3',\n", + " '044v_4',\n", + " '045r_1',\n", + " '045v_1',\n", + " '045v_2',\n", + " '046r_1',\n", + " '046r_2',\n", + " '046r_3',\n", + " '046r_4',\n", + " '046r_5',\n", + " '046v_1',\n", + " '046v_2',\n", + " '046v_3',\n", + " '046v_4',\n", + " '046v_5',\n", + " '046v_6',\n", + " '046v_7',\n", + " '047r_1',\n", + " '047r_2',\n", + " '047r_3',\n", + " '047r_4',\n", + " '047r_5',\n", + " '047v_1',\n", + " '047v_2',\n", + " '047v_3',\n", + " '047v_4',\n", + " '048r_1',\n", + " '048r_2',\n", + " '048r_3',\n", + " '048r_4',\n", + " '048v_1',\n", + " '048v_2',\n", + " '049r_1',\n", + " '049r_2',\n", + " '049r_3',\n", + " '049r_4',\n", + " '049v_1',\n", + " '049v_2',\n", + " '049v_3',\n", + " '050r_1',\n", + " '050r_2',\n", + " '050v_1',\n", + " '050v_2',\n", + " '051r_1',\n", + " '051r_2',\n", + " '052r_1',\n", + " '052v_1',\n", + " '052v_2',\n", + " '053r_1',\n", + " '053r_2',\n", + " '053r_3',\n", + " '053r_4',\n", + " '053r_5',\n", + " '053r_6',\n", + " '053v_1',\n", + " '054v_1',\n", + " '054v_2',\n", + " '054v_3',\n", + " '054v_4',\n", + " '054v_5',\n", + " '055r_1',\n", + " '055r_2',\n", + " '055r_3',\n", + " '055r_4',\n", + " '055v_1',\n", + " '055v_2',\n", + " '055v_3',\n", + " '055v_4',\n", + " '056r_1',\n", + " '056r_2',\n", + " '056v_1',\n", + " '057v_1',\n", + " '057v_2',\n", + " '058v_1',\n", + " '058v_2',\n", + " '058v_3',\n", + " '058v_4',\n", + " '058v_5',\n", + " '059r_1',\n", + " '059r_2',\n", + " '059v_1',\n", + " '059v_2',\n", + " '059v_3',\n", + " '059v_4',\n", + " '059v_5',\n", + " '059v_6',\n", + " '060r_1',\n", + " '060r_2',\n", + " '060r_3',\n", + " '060v_1',\n", + " '060v_2',\n", + " '060v_3',\n", + " '060v_4',\n", + " '060v_5',\n", + " '061r_1',\n", + " '061r_2',\n", + " '061r_3',\n", + " '061r_4',\n", + " '061v_1',\n", + " '061v_2',\n", + " '061v_3',\n", + " '061v_4',\n", + " '062r_1',\n", + " '062r_2',\n", + " '062r_3',\n", + " '062r_4',\n", + " '062v_1',\n", + " '062v_2',\n", + " '062v_3',\n", + " '063r_1',\n", + " '063r_2',\n", + " '063r_3',\n", + " '063r_4',\n", + " '063r_5',\n", + " '063r_6',\n", + " '063v_1',\n", + " '063v_2',\n", + " '063v_3',\n", + " '063v_4',\n", + " '063v_5',\n", + " '063v_6',\n", + " '063v_7',\n", + " '064r_1',\n", + " '064r_2',\n", + " '064r_3',\n", + " '064r_4',\n", + " '064r_5',\n", + " '064r_6',\n", + " '064r_7',\n", + " '064r_8',\n", + " '064v_1',\n", + " '064v_3',\n", + " '064v_4',\n", + " '064v_5',\n", + " '065r_1',\n", + " '065r_2',\n", + " '065r_3',\n", + " '065r_4',\n", + " '065v_1',\n", + " '065v_2',\n", + " '065v_3',\n", + " '065v_4',\n", + " '065v_5',\n", + " '065v_6',\n", + " '065v_7',\n", + " '066r_1',\n", + " '066r_2',\n", + " '066r_3',\n", + " '066r_4',\n", + " '066r_5',\n", + " '066r_6',\n", + " '066v_1',\n", + " '066v_2',\n", + " '066v_3',\n", + " '066v_4',\n", + " '067r_1',\n", + " '067r_2',\n", + " '067r_3',\n", + " '067r_4',\n", + " '067v_1',\n", + " '067v_2',\n", + " '067v_3',\n", + " '068r_1',\n", + " '068r_2',\n", + " '068r_3',\n", + " '069r_1',\n", + " '069r_2',\n", + " '071r_1',\n", + " '071r_2',\n", + " '071r_3',\n", + " '071r_4',\n", + " '071r_5',\n", + " '071v_1',\n", + " '071v_2',\n", + " '071v_3',\n", + " '071v_4',\n", + " '072r_1',\n", + " '072r_2',\n", + " '072v_1',\n", + " '073r_1',\n", + " '073r_2',\n", + " '073r_3',\n", + " '073r_4',\n", + " '073r_5',\n", + " '073v_1',\n", + " '073v_2',\n", + " '073v_3',\n", + " '073v_4',\n", + " '074r_1',\n", + " '074r_2',\n", + " '074r_3',\n", + " '074v_1',\n", + " '074v_2',\n", + " '074v_3',\n", + " '074v_4',\n", + " '075r_1',\n", + " '075r_2',\n", + " '075r_3',\n", + " '075r_4',\n", + " '075r_5',\n", + " '075v_1',\n", + " '075v_2',\n", + " '075v_3',\n", + " '075v_4',\n", + " '076r_1',\n", + " '076r_2',\n", + " '076r_3',\n", + " '076r_4',\n", + " '076r_5',\n", + " '076v_1',\n", + " '076v_2',\n", + " '076v_3',\n", + " '076v_4',\n", + " '077r_1',\n", + " '077r_2',\n", + " '077r_3',\n", + " '077r_4',\n", + " '077v_1',\n", + " '077v_2',\n", + " '077v_3',\n", + " '078r_1',\n", + " '078r_2',\n", + " '078r_3',\n", + " '078v_1',\n", + " '078v_2',\n", + " '078v_3',\n", + " '078v_4',\n", + " '079r_1',\n", + " '079r_2',\n", + " '079r_3',\n", + " '079v_1',\n", + " '079v_2',\n", + " '079v_3',\n", + " '079v_4',\n", + " '080r_1',\n", + " '080r_2',\n", + " '080r_3',\n", + " '080v_1',\n", + " '081r_1',\n", + " '081r_2',\n", + " '081r_3',\n", + " '081r_4',\n", + " '081v_1',\n", + " '081v_2',\n", + " '081v_3',\n", + " '081v_4',\n", + " '082r_1',\n", + " '082r_2',\n", + " '082r_3',\n", + " '082r_4',\n", + " '082v_1',\n", + " '082v_2',\n", + " '082v_3',\n", + " '082v_4',\n", + " '083r_1',\n", + " '083r_2',\n", + " '083r_3',\n", + " '083r_4',\n", + " '083r_5',\n", + " '083r_6',\n", + " '083v_1',\n", + " '083v_2',\n", + " '083v_3',\n", + " '084r_1',\n", + " '084r_3',\n", + " '084r_4',\n", + " '084r_5',\n", + " '084v_1',\n", + " '084v_2',\n", + " '084v_3',\n", + " '084v_4',\n", + " '085r_1',\n", + " '085r_2',\n", + " '085v_1',\n", + " '085v_2',\n", + " '085v_3',\n", + " '085v_4',\n", + " '086v_1',\n", + " '087r_1',\n", + " '087v_1',\n", + " '087v_2',\n", + " '087v_3',\n", + " '088r_1',\n", + " '088r_2',\n", + " '088r_3',\n", + " '088r_4',\n", + " '088r_5',\n", + " '088r_6',\n", + " '088v_1',\n", + " '088v_2',\n", + " '089r_1',\n", + " '089r_2',\n", + " '089r_3',\n", + " '089v_1',\n", + " '089v_2',\n", + " '090r_1',\n", + " '090r_2',\n", + " '090r_3',\n", + " '090v_1',\n", + " '090v_2',\n", + " '091r_1',\n", + " '091r_2',\n", + " '092r_1',\n", + " '092r_2',\n", + " '092r_3',\n", + " '092r_4',\n", + " '092v_1',\n", + " '092v_2',\n", + " '092v_3',\n", + " '093r_1',\n", + " '093r_2',\n", + " '093r_3',\n", + " '093r_4',\n", + " '093r_5',\n", + " '093v_1',\n", + " '093v_2',\n", + " '093v_3',\n", + " '094r_1',\n", + " '096v_1',\n", + " '096v_2',\n", + " '096v_3',\n", + " '097r_1',\n", + " '097r_2',\n", + " '097r_3',\n", + " '097v_1',\n", + " '097v_2',\n", + " '098r_1',\n", + " '098r_2',\n", + " '098r_3',\n", + " '098v_1',\n", + " '098v_2',\n", + " '098v_3',\n", + " '098v_4',\n", + " '098v_5',\n", + " '099r_3',\n", + " '099v_1',\n", + " '099v_2',\n", + " '099v_3',\n", + " '099v_4',\n", + " '099v_5',\n", + " '099v_6',\n", + " '100r_1',\n", + " '100r_2',\n", + " '100r_3',\n", + " '100r_4',\n", + " '100r_5',\n", + " '100v_1',\n", + " '100v_2',\n", + " '101r_1',\n", + " '101r_2',\n", + " '101v_1',\n", + " '101v_2',\n", + " '101v_3',\n", + " '101v_4',\n", + " '102r_1',\n", + " '102r_2',\n", + " '102r_3',\n", + " '102r_4',\n", + " '102v_1',\n", + " '102v_2',\n", + " '102v_3',\n", + " '103r_1',\n", + " '103r_2',\n", + " '103v_1',\n", + " '103v_2',\n", + " '103v_3',\n", + " '103v_4',\n", + " '103v_5',\n", + " '104r_1',\n", + " '104r_2',\n", + " '104r_3',\n", + " '104r_4',\n", + " '104r_5',\n", + " '104v_1',\n", + " '104v_2',\n", + " '104v_3',\n", + " '104v_4',\n", + " '105r_1',\n", + " '105r_2',\n", + " '105r_3',\n", + " '105r_4',\n", + " '105v_1',\n", + " '105v_2',\n", + " '105v_3',\n", + " '105v_4',\n", + " '105v_5',\n", + " '106r_1',\n", + " '106r_2',\n", + " '106v_1',\n", + " '106v_2',\n", + " '106v_3',\n", + " '107r_1',\n", + " '108r_2',\n", + " '109r_1',\n", + " '109r_2',\n", + " '109r_3',\n", + " '109r_4',\n", + " '109r_5',\n", + " '109v_1',\n", + " '109v_2',\n", + " '110r_1',\n", + " '110r_2',\n", + " '110r_3',\n", + " '110v_1',\n", + " '110v_2',\n", + " '110v_3',\n", + " '111r_1',\n", + " '111r_2',\n", + " '111r_3',\n", + " '111r_4',\n", + " '111r_5',\n", + " '111v_1',\n", + " '111v_2',\n", + " '111v_3',\n", + " '111v_4',\n", + " '111v_5',\n", + " '112r_1',\n", + " '112r_2',\n", + " '112r_3',\n", + " '112r_4',\n", + " '112v_1',\n", + " '113r_1',\n", + " '113v_1',\n", + " '114r_1',\n", + " '115r_1',\n", + " '115r_2',\n", + " '115r_3',\n", + " '115v_1',\n", + " '115v_2',\n", + " '115v_3',\n", + " '116r_1',\n", + " '116r_2',\n", + " '116r_3',\n", + " '116r_4',\n", + " '116v_1',\n", + " '116v_2',\n", + " '116v_3',\n", + " '117r_1',\n", + " '117v_1',\n", + " '117v_2',\n", + " '117v_3',\n", + " '117v_4',\n", + " '117v_5',\n", + " '118r_1',\n", + " '118r_2',\n", + " '118r_3',\n", + " '118r_4',\n", + " '118r_5',\n", + " '118v_1',\n", + " '119r_1',\n", + " '119v_1',\n", + " '119v_2',\n", + " '120r_1',\n", + " '120r_2',\n", + " '120r_3',\n", + " '',\n", + " '120v_1',\n", + " '120v_2',\n", + " '120v_3',\n", + " '120v_6',\n", + " '121r_1',\n", + " '121v_1',\n", + " '121v_2',\n", + " '122r_1',\n", + " '122r_2',\n", + " '122v_1',\n", + " '122v_2',\n", + " '122v_3',\n", + " '123r_1',\n", + " '124r_1',\n", + " '124r_2',\n", + " '124r_3',\n", + " '124r_4',\n", + " '124v_1',\n", + " '124v_2',\n", + " '124v_3',\n", + " '125r_1',\n", + " '125r_2',\n", + " '125r_3',\n", + " '125v_1',\n", + " '125v_2',\n", + " '125v_3',\n", + " '126r_1',\n", + " '126v_1',\n", + " '126v_2',\n", + " '126v_3',\n", + " '127r_1',\n", + " '127v_1',\n", + " '128r_1',\n", + " '128v_1',\n", + " '129r_1',\n", + " '129r_2',\n", + " '129r_3',\n", + " '129r_4',\n", + " '129v_1',\n", + " '129v_2',\n", + " '129v_3',\n", + " '129v_4',\n", + " '130r_1',\n", + " '130r_2',\n", + " '130r_3',\n", + " '130r_4',\n", + " '130v_1',\n", + " '130v_2',\n", + " '130v_3',\n", + " '131r_1',\n", + " '131r_2',\n", + " '131r_3',\n", + " '131r_4',\n", + " '131r_5',\n", + " '131v_1',\n", + " '132r_1',\n", + " '132r_2',\n", + " '132v_1',\n", + " '132v_2',\n", + " '132v_3',\n", + " '133r_1',\n", + " '133r_2',\n", + " '133r_3',\n", + " '133r_4',\n", + " '133v_1',\n", + " '133v_2',\n", + " '133v_3',\n", + " '134r_1',\n", + " '134r_2',\n", + " '134v_1',\n", + " '134v_2',\n", + " '134v_3',\n", + " '135r_1',\n", + " '135r_2',\n", + " '135r_3',\n", + " '135v_1',\n", + " '136r_1',\n", + " '136v_1',\n", + " '137r_1',\n", + " '137r_2',\n", + " '137r_3',\n", + " '137v_1',\n", + " '138v_1',\n", + " '138v_2',\n", + " '138v_3',\n", + " '139r_1',\n", + " '139v_1',\n", + " '140v_1',\n", + " '140v_2',\n", + " '140v_3',\n", + " '141r_1',\n", + " '142v_1',\n", + " '142v_2',\n", + " '142v_3',\n", + " '143r_1',\n", + " '143r_2',\n", + " '143r_3',\n", + " '143v_1',\n", + " '143v_2',\n", + " '143v_3',\n", + " '144r_1',\n", + " '145r_1',\n", + " '145r_2',\n", + " '145v_1',\n", + " '145v_2',\n", + " '146v_1',\n", + " '147v_1',\n", + " '147v_2',\n", + " '147v_3',\n", + " '147v_4',\n", + " '148r_1',\n", + " '148r_2',\n", + " '148r_3',\n", + " '148r_4',\n", + " '148v_1',\n", + " '149r_1',\n", + " '149r_2',\n", + " '149r_3',\n", + " '149r_4',\n", + " '149v_1',\n", + " '149v_2',\n", + " '149v_3',\n", + " '149v_4',\n", + " '150r_1',\n", + " '150r_2',\n", + " '150r_3',\n", + " '150v_1',\n", + " '151v_1',\n", + " '152r_1',\n", + " '152v_1',\n", + " '153r_1',\n", + " '153r_2',\n", + " '153v_1',\n", + " '153v_2',\n", + " '154r_1',\n", + " '154r_2',\n", + " '154r_3',\n", + " '154r_4',\n", + " '154r_5',\n", + " '154v_1',\n", + " '154v_2',\n", + " '154v_3',\n", + " '154v_4',\n", + " '154v_5',\n", + " '155r_1',\n", + " '155v_1',\n", + " '156r_1',\n", + " '156r_2',\n", + " '156r_3',\n", + " '156v_1',\n", + " '157r_1',\n", + " '157r_2',\n", + " '157r_3',\n", + " '157r_4',\n", + " '157r_5',\n", + " '157v_1',\n", + " '157v_2',\n", + " '157v_3',\n", + " '158r_1',\n", + " '158v_1',\n", + " '158v_2',\n", + " '158v_3',\n", + " '158v_4',\n", + " '159r_1',\n", + " '159r_2',\n", + " '159r_3',\n", + " '159r_4',\n", + " '159v_1',\n", + " '159v_2',\n", + " '159v_3',\n", + " '159v_4',\n", + " '160r_1',\n", + " '160r_2',\n", + " '160v_1',\n", + " '160v_2',\n", + " '160v_3',\n", + " '160v_4',\n", + " '160v_5',\n", + " '161r_1',\n", + " '161v_1',\n", + " '162r_1',\n", + " '162r_2',\n", + " '162r_3',\n", + " '162v_1',\n", + " '162v_2',\n", + " '162v_3',\n", + " '162v_4',\n", + " '163r_1',\n", + " '163r_2',\n", + " '163v_1',\n", + " '163v_2',\n", + " '163v_3',\n", + " '164r_1',\n", + " '164r_2',\n", + " '164r_3',\n", + " '164r_4',\n", + " '164v_1',\n", + " '164v_2',\n", + " '164v_3',\n", + " '165r_1',\n", + " '165r_2',\n", + " '165r_3',\n", + " '165r_4',\n", + " '165r_5',\n", + " '165r_6',\n", + " '165v_1',\n", + " '165v_2',\n", + " '165v_3',\n", + " '165v_4',\n", + " '165v_5',\n", + " '165v_6',\n", + " '165v_7',\n", + " '166r_1',\n", + " '166v_2',\n", + " '166v_3',\n", + " '166v_4',\n", + " '166v_5',\n", + " '167r_1',\n", + " '169r_1',\n", + " '169v_1',\n", + " '169v_2',\n", + " '170r_1',\n", + " '170r_2',\n", + " '170r_3',\n", + " '170r_4',\n", + " '170r_5',\n", + " '170r_6',\n", + " '170v_1',\n", + " '170v_2',\n", + " '170v_3',\n", + " '170v_4']" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "iron_entries = manuscript.search(material=['iron'])\n", + "iron_entries" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['001r_1',\n", + " '001r_2',\n", + " '001r_3',\n", + " '001r_4',\n", + " '001v_1',\n", + " '002r_1',\n", + " '002r_2',\n", + " '002v_1',\n", + " '002v_2',\n", + " '002v_3',\n", + " '003r_1',\n", + " '003r_2',\n", + " '003r_3',\n", + " '003v_1',\n", + " '004r_1',\n", + " '004r_2',\n", + " '004v_1',\n", + " '004v_2',\n", + " '004v_3',\n", + " '005r_1',\n", + " '005r_2',\n", + " '005v_1',\n", + " '006r_1',\n", + " '006v_1',\n", + " '006v_2',\n", + " '007r_1',\n", + " '007r_2',\n", + " '007r_3',\n", + " '007r_4',\n", + " '007v_1',\n", + " '007v_2',\n", + " '007v_3',\n", + " '007v_4',\n", + " '008r_1',\n", + " '008r_2',\n", + " '008r_3',\n", + " '008r_4',\n", + " '008v_1',\n", + " '008v_2',\n", + " '008v_3',\n", + " '008v_4',\n", + " '008v_5',\n", + " '009r_1',\n", + " '009r_2',\n", + " '009r_3',\n", + " '009v_1',\n", + " '009v_2',\n", + " '009v_3',\n", + " '010r_1',\n", + " '010r_2',\n", + " '010r_3',\n", + " '010r_4',\n", + " '010r_5',\n", + " '010v_1',\n", + " '010v_2',\n", + " '010v_3',\n", + " '010v_4',\n", + " '011r_1',\n", + " '011v_1',\n", + " '011v_2',\n", + " '011v_3',\n", + " '011v_4',\n", + " '011v_5',\n", + " '012r_1',\n", + " '012r_2',\n", + " '012r_3',\n", + " '012r_4',\n", + " '012v_1',\n", + " '012v_2',\n", + " '012v_3',\n", + " '013r_1',\n", + " '013r_2',\n", + " '013r_3',\n", + " '013r_4',\n", + " '013v_1',\n", + " '013v_2',\n", + " '013v_3',\n", + " '013v_4',\n", + " '013v_5',\n", + " '014r_1',\n", + " '015r_1',\n", + " '015r_2',\n", + " '015r_3',\n", + " '015v_1',\n", + " '015v_2',\n", + " '015v_3',\n", + " '015v_4',\n", + " '015v_5',\n", + " '015v_6',\n", + " '016r_1',\n", + " '016v_1',\n", + " '016v_2',\n", + " '016v_3',\n", + " '016v_4',\n", + " '016v_5',\n", + " '017r_1',\n", + " '019v_1',\n", + " '019v_2',\n", + " '019v_3',\n", + " '020r_1',\n", + " '020r_2',\n", + " '020v_1',\n", + " '020v_2',\n", + " '020v_3',\n", + " '020v_4',\n", + " '020v_5',\n", + " '020v_6',\n", + " '021r_1',\n", + " '021r_2',\n", + " '021v_1',\n", + " '021v_2',\n", + " '022r_1',\n", + " '022v_1',\n", + " '023r_1',\n", + " '023v_1',\n", + " '024r_1',\n", + " '024v_1',\n", + " '024v_2',\n", + " '024v_3',\n", + " '024v_4',\n", + " '025v_1',\n", + " '026r_1',\n", + " '026r_2',\n", + " '026v_1',\n", + " '027r_1',\n", + " '027r_2',\n", + " '027r_3',\n", + " '027v_1',\n", + " '027v_2',\n", + " '027v_3',\n", + " '027v_4',\n", + " '027v_5',\n", + " '027v_6',\n", + " '027v_7',\n", + " '027v_8',\n", + " '028r_1',\n", + " '028v_1',\n", + " '029r_1',\n", + " '029v_1',\n", + " '029v_2',\n", + " '029v_3',\n", + " '029v_4',\n", + " '029v_5',\n", + " '029v_6',\n", + " '030r_1',\n", + " '030r_2',\n", + " '031r_1',\n", + " '031r_2',\n", + " '031r_3',\n", + " '031r_4',\n", + " '031v_1',\n", + " '031v_2',\n", + " '031v_3',\n", + " '031v_4',\n", + " '032r_1',\n", + " '032r_2',\n", + " '032r_3',\n", + " '032v_1',\n", + " '032v_2',\n", + " '032v_3',\n", + " '033r_1',\n", + " '033r_2',\n", + " '033v_1',\n", + " '033v_2',\n", + " '034r_1',\n", + " '034r_2',\n", + " '034r_3',\n", + " '034r_4',\n", + " '034r_5',\n", + " '034v_1',\n", + " '035r_1',\n", + " '035r_2',\n", + " '035r_3',\n", + " '035r_4',\n", + " '035v_1',\n", + " '035v_2',\n", + " '036r_1',\n", + " '036v_1',\n", + " '036v_2',\n", + " '036v_3',\n", + " '037r_1',\n", + " '037r_2',\n", + " '037r_3',\n", + " '037r_4',\n", + " '037v_1',\n", + " '037v_2',\n", + " '037v_3',\n", + " '038r_1',\n", + " '038r_2',\n", + " '038r_3',\n", + " '038r_4',\n", + " '038v_1',\n", + " '038v_2',\n", + " '038v_3',\n", + " '038v_4',\n", + " '038v_5',\n", + " '038v_6',\n", + " '039r_1',\n", + " '039r_2',\n", + " '039v_1',\n", + " '039v_2',\n", + " '039v_3',\n", + " '040r_1',\n", + " '040r_2',\n", + " '040r_3',\n", + " '040r_4',\n", + " '040r_5',\n", + " '040v_1',\n", + " '040v_2',\n", + " '040v_3',\n", + " '040v_4',\n", + " '041r_02',\n", + " '041r_03',\n", + " '041r_04',\n", + " '041r_1',\n", + " '041v_1',\n", + " '041v_2',\n", + " '041v_3',\n", + " '042r_1',\n", + " '042r_2',\n", + " '042r_3',\n", + " '042v_1',\n", + " '042v_2',\n", + " '042v_3',\n", + " '042v_4',\n", + " '042v_5',\n", + " '042v_6',\n", + " '043r_1',\n", + " '043r_2',\n", + " '043r_3',\n", + " '043r_4',\n", + " '043v_1',\n", + " '043v_2',\n", + " '043v_3',\n", + " '043v_4',\n", + " '044r_1',\n", + " '044r_2',\n", + " '044r_3',\n", + " '044r_4',\n", + " '044r_5',\n", + " '044v_1',\n", + " '044v_2',\n", + " '044v_3',\n", + " '044v_4',\n", + " '045r_1',\n", + " '045v_1',\n", + " '045v_2',\n", + " '046r_1',\n", + " '046r_2',\n", + " '046r_3',\n", + " '046r_4',\n", + " '046r_5',\n", + " '046v_1',\n", + " '046v_2',\n", + " '046v_3',\n", + " '046v_4',\n", + " '046v_5',\n", + " '046v_6',\n", + " '046v_7',\n", + " '047r_1',\n", + " '047r_2',\n", + " '047r_3',\n", + " '047r_4',\n", + " '047r_5',\n", + " '047v_1',\n", + " '047v_2',\n", + " '047v_3',\n", + " '047v_4',\n", + " '048r_1',\n", + " '048r_2',\n", + " '048r_3',\n", + " '048r_4',\n", + " '048v_1',\n", + " '048v_2',\n", + " '049r_1',\n", + " '049r_2',\n", + " '049r_3',\n", + " '049r_4',\n", + " '049v_1',\n", + " '049v_2',\n", + " '049v_3',\n", + " '050r_1',\n", + " '050r_2',\n", + " '050v_1',\n", + " '050v_2',\n", + " '051r_1',\n", + " '051r_2',\n", + " '052r_1',\n", + " '052v_1',\n", + " '052v_2',\n", + " '053r_1',\n", + " '053r_2',\n", + " '053r_3',\n", + " '053r_4',\n", + " '053r_5',\n", + " '053r_6',\n", + " '053v_1',\n", + " '054v_1',\n", + " '054v_2',\n", + " '054v_3',\n", + " '054v_4',\n", + " '054v_5',\n", + " '055r_1',\n", + " '055r_2',\n", + " '055r_3',\n", + " '055r_4',\n", + " '055v_1',\n", + " '055v_2',\n", + " '055v_3',\n", + " '055v_4',\n", + " '056r_1',\n", + " '056r_2',\n", + " '056v_1',\n", + " '057v_1',\n", + " '057v_2',\n", + " '058v_1',\n", + " '058v_2',\n", + " '058v_3',\n", + " '058v_4',\n", + " '058v_5',\n", + " '059r_1',\n", + " '059r_2',\n", + " '059v_1',\n", + " '059v_2',\n", + " '059v_3',\n", + " '059v_4',\n", + " '059v_5',\n", + " '059v_6',\n", + " '060r_1',\n", + " '060r_2',\n", + " '060r_3',\n", + " '060v_1',\n", + " '060v_2',\n", + " '060v_3',\n", + " '060v_4',\n", + " '060v_5',\n", + " '061r_1',\n", + " '061r_2',\n", + " '061r_3',\n", + " '061r_4',\n", + " '061v_1',\n", + " '061v_2',\n", + " '061v_3',\n", + " '061v_4',\n", + " '062r_1',\n", + " '062r_2',\n", + " '062r_3',\n", + " '062r_4',\n", + " '062v_1',\n", + " '062v_2',\n", + " '062v_3',\n", + " '063r_1',\n", + " '063r_2',\n", + " '063r_3',\n", + " '063r_4',\n", + " '063r_5',\n", + " '063r_6',\n", + " '063v_1',\n", + " '063v_2',\n", + " '063v_3',\n", + " '063v_4',\n", + " '063v_5',\n", + " '063v_6',\n", + " '063v_7',\n", + " '064r_1',\n", + " '064r_2',\n", + " '064r_3',\n", + " '064r_4',\n", + " '064r_5',\n", + " '064r_6',\n", + " '064r_7',\n", + " '064r_8',\n", + " '064v_1',\n", + " '064v_3',\n", + " '064v_4',\n", + " '064v_5',\n", + " '065r_1',\n", + " '065r_2',\n", + " '065r_3',\n", + " '065r_4',\n", + " '065v_1',\n", + " '065v_2',\n", + " '065v_3',\n", + " '065v_4',\n", + " '065v_5',\n", + " '065v_6',\n", + " '065v_7',\n", + " '066r_1',\n", + " '066r_2',\n", + " '066r_3',\n", + " '066r_4',\n", + " '066r_5',\n", + " '066r_6',\n", + " '066v_1',\n", + " '066v_2',\n", + " '066v_3',\n", + " '066v_4',\n", + " '067r_1',\n", + " '067r_2',\n", + " '067r_3',\n", + " '067r_4',\n", + " '067v_1',\n", + " '067v_2',\n", + " '067v_3',\n", + " '068r_1',\n", + " '068r_2',\n", + " '068r_3',\n", + " '069r_1',\n", + " '069r_2',\n", + " '071r_1',\n", + " '071r_2',\n", + " '071r_3',\n", + " '071r_4',\n", + " '071r_5',\n", + " '071v_1',\n", + " '071v_2',\n", + " '071v_3',\n", + " '071v_4',\n", + " '072r_1',\n", + " '072r_2',\n", + " '072v_1',\n", + " '073r_1',\n", + " '073r_2',\n", + " '073r_3',\n", + " '073r_4',\n", + " '073r_5',\n", + " '073v_1',\n", + " '073v_2',\n", + " '073v_3',\n", + " '073v_4',\n", + " '074r_1',\n", + " '074r_2',\n", + " '074r_3',\n", + " '074v_1',\n", + " '074v_2',\n", + " '074v_3',\n", + " '074v_4',\n", + " '075r_1',\n", + " '075r_2',\n", + " '075r_3',\n", + " '075r_4',\n", + " '075r_5',\n", + " '075v_1',\n", + " '075v_2',\n", + " '075v_3',\n", + " '075v_4',\n", + " '076r_1',\n", + " '076r_2',\n", + " '076r_3',\n", + " '076r_4',\n", + " '076r_5',\n", + " '076v_1',\n", + " '076v_2',\n", + " '076v_3',\n", + " '076v_4',\n", + " '077r_1',\n", + " '077r_2',\n", + " '077r_3',\n", + " '077r_4',\n", + " '077v_1',\n", + " '077v_2',\n", + " '077v_3',\n", + " '078r_1',\n", + " '078r_2',\n", + " '078r_3',\n", + " '078v_1',\n", + " '078v_2',\n", + " '078v_3',\n", + " '078v_4',\n", + " '079r_1',\n", + " '079r_2',\n", + " '079r_3',\n", + " '079v_1',\n", + " '079v_2',\n", + " '079v_3',\n", + " '079v_4',\n", + " '080r_1',\n", + " '080r_2',\n", + " '080r_3',\n", + " '080v_1',\n", + " '081r_1',\n", + " '081r_2',\n", + " '081r_3',\n", + " '081r_4',\n", + " '081v_1',\n", + " '081v_2',\n", + " '081v_3',\n", + " '081v_4',\n", + " '082r_1',\n", + " '082r_2',\n", + " '082r_3',\n", + " '082r_4',\n", + " '082v_1',\n", + " '082v_2',\n", + " '082v_3',\n", + " '082v_4',\n", + " '083r_1',\n", + " '083r_2',\n", + " '083r_3',\n", + " '083r_4',\n", + " '083r_5',\n", + " '083r_6',\n", + " '083v_1',\n", + " '083v_2',\n", + " '083v_3',\n", + " '084r_1',\n", + " '084r_3',\n", + " '084r_4',\n", + " '084r_5',\n", + " '084v_1',\n", + " '084v_2',\n", + " '084v_3',\n", + " '084v_4',\n", + " '085r_1',\n", + " '085r_2',\n", + " '085v_1',\n", + " '085v_2',\n", + " '085v_3',\n", + " '085v_4',\n", + " '086v_1',\n", + " '087r_1',\n", + " '087v_1',\n", + " '087v_2',\n", + " '087v_3',\n", + " '088r_1',\n", + " '088r_2',\n", + " '088r_3',\n", + " '088r_4',\n", + " '088r_5',\n", + " '088r_6',\n", + " '088v_1',\n", + " '088v_2',\n", + " '089r_1',\n", + " '089r_2',\n", + " '089r_3',\n", + " '089v_1',\n", + " '089v_2',\n", + " '090r_1',\n", + " '090r_2',\n", + " '090r_3',\n", + " '090v_1',\n", + " '090v_2',\n", + " '091r_1',\n", + " '091r_2',\n", + " '092r_1',\n", + " '092r_2',\n", + " '092r_3',\n", + " '092r_4',\n", + " '092v_1',\n", + " '092v_2',\n", + " '092v_3',\n", + " '093r_1',\n", + " '093r_2',\n", + " '093r_3',\n", + " '093r_4',\n", + " '093r_5',\n", + " '093v_1',\n", + " '093v_2',\n", + " '093v_3',\n", + " '094r_1',\n", + " '096v_1',\n", + " '096v_2',\n", + " '096v_3',\n", + " '097r_1',\n", + " '097r_2',\n", + " '097r_3',\n", + " '097v_1',\n", + " '097v_2',\n", + " '098r_1',\n", + " '098r_2',\n", + " '098r_3',\n", + " '098v_1',\n", + " '098v_2',\n", + " '098v_3',\n", + " '098v_4',\n", + " '098v_5',\n", + " '099r_3',\n", + " '099v_1',\n", + " '099v_2',\n", + " '099v_3',\n", + " '099v_4',\n", + " '099v_5',\n", + " '099v_6',\n", + " '100r_1',\n", + " '100r_2',\n", + " '100r_3',\n", + " '100r_4',\n", + " '100r_5',\n", + " '100v_1',\n", + " '100v_2',\n", + " '101r_1',\n", + " '101r_2',\n", + " '101v_1',\n", + " '101v_2',\n", + " '101v_3',\n", + " '101v_4',\n", + " '102r_1',\n", + " '102r_2',\n", + " '102r_3',\n", + " '102r_4',\n", + " '102v_1',\n", + " '102v_2',\n", + " '102v_3',\n", + " '103r_1',\n", + " '103r_2',\n", + " '103v_1',\n", + " '103v_2',\n", + " '103v_3',\n", + " '103v_4',\n", + " '103v_5',\n", + " '104r_1',\n", + " '104r_2',\n", + " '104r_3',\n", + " '104r_4',\n", + " '104r_5',\n", + " '104v_1',\n", + " '104v_2',\n", + " '104v_3',\n", + " '104v_4',\n", + " '105r_1',\n", + " '105r_2',\n", + " '105r_3',\n", + " '105r_4',\n", + " '105v_1',\n", + " '105v_2',\n", + " '105v_3',\n", + " '105v_4',\n", + " '105v_5',\n", + " '106r_1',\n", + " '106r_2',\n", + " '106v_1',\n", + " '106v_2',\n", + " '106v_3',\n", + " '107r_1',\n", + " '108r_2',\n", + " '109r_1',\n", + " '109r_2',\n", + " '109r_3',\n", + " '109r_4',\n", + " '109r_5',\n", + " '109v_1',\n", + " '109v_2',\n", + " '110r_1',\n", + " '110r_2',\n", + " '110r_3',\n", + " '110v_1',\n", + " '110v_2',\n", + " '110v_3',\n", + " '111r_1',\n", + " '111r_2',\n", + " '111r_3',\n", + " '111r_4',\n", + " '111r_5',\n", + " '111v_1',\n", + " '111v_2',\n", + " '111v_3',\n", + " '111v_4',\n", + " '111v_5',\n", + " '112r_1',\n", + " '112r_2',\n", + " '112r_3',\n", + " '112r_4',\n", + " '112v_1',\n", + " '113r_1',\n", + " '113v_1',\n", + " '114r_1',\n", + " '115r_1',\n", + " '115r_2',\n", + " '115r_3',\n", + " '115v_1',\n", + " '115v_2',\n", + " '115v_3',\n", + " '116r_1',\n", + " '116r_2',\n", + " '116r_3',\n", + " '116r_4',\n", + " '116v_1',\n", + " '116v_2',\n", + " '116v_3',\n", + " '117r_1',\n", + " '117v_1',\n", + " '117v_2',\n", + " '117v_3',\n", + " '117v_4',\n", + " '117v_5',\n", + " '118r_1',\n", + " '118r_2',\n", + " '118r_3',\n", + " '118r_4',\n", + " '118r_5',\n", + " '118v_1',\n", + " '119r_1',\n", + " '119v_1',\n", + " '119v_2',\n", + " '120r_1',\n", + " '120r_2',\n", + " '120r_3',\n", + " '',\n", + " '120v_1',\n", + " '120v_2',\n", + " '120v_3',\n", + " '120v_6',\n", + " '121r_1',\n", + " '121v_1',\n", + " '121v_2',\n", + " '122r_1',\n", + " '122r_2',\n", + " '122v_1',\n", + " '122v_2',\n", + " '122v_3',\n", + " '123r_1',\n", + " '124r_1',\n", + " '124r_2',\n", + " '124r_3',\n", + " '124r_4',\n", + " '124v_1',\n", + " '124v_2',\n", + " '124v_3',\n", + " '125r_1',\n", + " '125r_2',\n", + " '125r_3',\n", + " '125v_1',\n", + " '125v_2',\n", + " '125v_3',\n", + " '126r_1',\n", + " '126v_1',\n", + " '126v_2',\n", + " '126v_3',\n", + " '127r_1',\n", + " '127v_1',\n", + " '128r_1',\n", + " '128v_1',\n", + " '129r_1',\n", + " '129r_2',\n", + " '129r_3',\n", + " '129r_4',\n", + " '129v_1',\n", + " '129v_2',\n", + " '129v_3',\n", + " '129v_4',\n", + " '130r_1',\n", + " '130r_2',\n", + " '130r_3',\n", + " '130r_4',\n", + " '130v_1',\n", + " '130v_2',\n", + " '130v_3',\n", + " '131r_1',\n", + " '131r_2',\n", + " '131r_3',\n", + " '131r_4',\n", + " '131r_5',\n", + " '131v_1',\n", + " '132r_1',\n", + " '132r_2',\n", + " '132v_1',\n", + " '132v_2',\n", + " '132v_3',\n", + " '133r_1',\n", + " '133r_2',\n", + " '133r_3',\n", + " '133r_4',\n", + " '133v_1',\n", + " '133v_2',\n", + " '133v_3',\n", + " '134r_1',\n", + " '134r_2',\n", + " '134v_1',\n", + " '134v_2',\n", + " '134v_3',\n", + " '135r_1',\n", + " '135r_2',\n", + " '135r_3',\n", + " '135v_1',\n", + " '136r_1',\n", + " '136v_1',\n", + " '137r_1',\n", + " '137r_2',\n", + " '137r_3',\n", + " '137v_1',\n", + " '138v_1',\n", + " '138v_2',\n", + " '138v_3',\n", + " '139r_1',\n", + " '139v_1',\n", + " '140v_1',\n", + " '140v_2',\n", + " '140v_3',\n", + " '141r_1',\n", + " '142v_1',\n", + " '142v_2',\n", + " '142v_3',\n", + " '143r_1',\n", + " '143r_2',\n", + " '143r_3',\n", + " '143v_1',\n", + " '143v_2',\n", + " '143v_3',\n", + " '144r_1',\n", + " '145r_1',\n", + " '145r_2',\n", + " '145v_1',\n", + " '145v_2',\n", + " '146v_1',\n", + " '147v_1',\n", + " '147v_2',\n", + " '147v_3',\n", + " '147v_4',\n", + " '148r_1',\n", + " '148r_2',\n", + " '148r_3',\n", + " '148r_4',\n", + " '148v_1',\n", + " '149r_1',\n", + " '149r_2',\n", + " '149r_3',\n", + " '149r_4',\n", + " '149v_1',\n", + " '149v_2',\n", + " '149v_3',\n", + " '149v_4',\n", + " '150r_1',\n", + " '150r_2',\n", + " '150r_3',\n", + " '150v_1',\n", + " '151v_1',\n", + " '152r_1',\n", + " '152v_1',\n", + " '153r_1',\n", + " '153r_2',\n", + " '153v_1',\n", + " '153v_2',\n", + " '154r_1',\n", + " '154r_2',\n", + " '154r_3',\n", + " '154r_4',\n", + " '154r_5',\n", + " '154v_1',\n", + " '154v_2',\n", + " '154v_3',\n", + " '154v_4',\n", + " '154v_5',\n", + " '155r_1',\n", + " '155v_1',\n", + " '156r_1',\n", + " '156r_2',\n", + " '156r_3',\n", + " '156v_1',\n", + " '157r_1',\n", + " '157r_2',\n", + " '157r_3',\n", + " '157r_4',\n", + " '157r_5',\n", + " '157v_1',\n", + " '157v_2',\n", + " '157v_3',\n", + " '158r_1',\n", + " '158v_1',\n", + " '158v_2',\n", + " '158v_3',\n", + " '158v_4',\n", + " '159r_1',\n", + " '159r_2',\n", + " '159r_3',\n", + " '159r_4',\n", + " '159v_1',\n", + " '159v_2',\n", + " '159v_3',\n", + " '159v_4',\n", + " '160r_1',\n", + " '160r_2',\n", + " '160v_1',\n", + " '160v_2',\n", + " '160v_3',\n", + " '160v_4',\n", + " '160v_5',\n", + " '161r_1',\n", + " '161v_1',\n", + " '162r_1',\n", + " '162r_2',\n", + " '162r_3',\n", + " '162v_1',\n", + " '162v_2',\n", + " '162v_3',\n", + " '162v_4',\n", + " '163r_1',\n", + " '163r_2',\n", + " '163v_1',\n", + " '163v_2',\n", + " '163v_3',\n", + " '164r_1',\n", + " '164r_2',\n", + " '164r_3',\n", + " '164r_4',\n", + " '164v_1',\n", + " '164v_2',\n", + " '164v_3',\n", + " '165r_1',\n", + " '165r_2',\n", + " '165r_3',\n", + " '165r_4',\n", + " '165r_5',\n", + " '165r_6',\n", + " '165v_1',\n", + " '165v_2',\n", + " '165v_3',\n", + " '165v_4',\n", + " '165v_5',\n", + " '165v_6',\n", + " '165v_7',\n", + " '166r_1',\n", + " '166v_2',\n", + " '166v_3',\n", + " '166v_4',\n", + " '166v_5',\n", + " '167r_1',\n", + " '169r_1',\n", + " '169v_1',\n", + " '169v_2',\n", + " '170r_1',\n", + " '170r_2',\n", + " '170r_3',\n", + " '170r_4',\n", + " '170r_5',\n", + " '170r_6',\n", + " '170v_1',\n", + " '170v_2',\n", + " '170v_3',\n", + " '170v_4']" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "iron_rose = manuscript.search(material=['iron'], plant=['rose'])\n", + "iron_rose" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [], + "source": [ + "for ir in iron_rose:\n", + " assert ir in iron_entries\n", + " assert ir in rose_entries" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'',\n", + " '001r_1',\n", + " '001r_2',\n", + " '001r_3',\n", + " '001r_4',\n", + " '001v_1',\n", + " '002r_1',\n", + " '002r_2',\n", + " '002v_1',\n", + " '002v_2',\n", + " '002v_3',\n", + " '003r_1',\n", + " '003r_2',\n", + " '003r_3',\n", + " '003v_1',\n", + " '004r_1',\n", + " '004r_2',\n", + " '004v_1',\n", + " '004v_2',\n", + " '004v_3',\n", + " '005r_1',\n", + " '005r_2',\n", + " '005v_1',\n", + " '006r_1',\n", + " '006v_1',\n", + " '006v_2',\n", + " '007r_1',\n", + " '007r_2',\n", + " '007r_3',\n", + " '007r_4',\n", + " '007v_1',\n", + " '007v_2',\n", + " '007v_3',\n", + " '007v_4',\n", + " '008r_1',\n", + " '008r_2',\n", + " '008r_3',\n", + " '008r_4',\n", + " '008v_1',\n", + " '008v_2',\n", + " '008v_3',\n", + " '008v_4',\n", + " '008v_5',\n", + " '009r_1',\n", + " '009r_2',\n", + " '009r_3',\n", + " '009v_1',\n", + " '009v_2',\n", + " '009v_3',\n", + " '010r_1',\n", + " '010r_2',\n", + " '010r_3',\n", + " '010r_4',\n", + " '010r_5',\n", + " '010v_1',\n", + " '010v_2',\n", + " '010v_3',\n", + " '010v_4',\n", + " '011r_1',\n", + " '011v_1',\n", + " '011v_2',\n", + " '011v_3',\n", + " '011v_4',\n", + " '011v_5',\n", + " '012r_1',\n", + " '012r_2',\n", + " '012r_3',\n", + " '012r_4',\n", + " '012v_1',\n", + " '012v_2',\n", + " '012v_3',\n", + " '013r_1',\n", + " '013r_2',\n", + " '013r_3',\n", + " '013r_4',\n", + " '013v_1',\n", + " '013v_2',\n", + " '013v_3',\n", + " '013v_4',\n", + " '013v_5',\n", + " '014r_1',\n", + " '015r_1',\n", + " '015r_2',\n", + " '015r_3',\n", + " '015v_1',\n", + " '015v_2',\n", + " '015v_3',\n", + " '015v_4',\n", + " '015v_5',\n", + " '015v_6',\n", + " '016r_1',\n", + " '016v_1',\n", + " '016v_2',\n", + " '016v_3',\n", + " '016v_4',\n", + " '016v_5',\n", + " '017r_1',\n", + " '019v_1',\n", + " '019v_2',\n", + " '019v_3',\n", + " '020r_1',\n", + " '020r_2',\n", + " '020v_1',\n", + " '020v_2',\n", + " '020v_3',\n", + " '020v_4',\n", + " '020v_5',\n", + " '020v_6',\n", + " '021r_1',\n", + " '021r_2',\n", + " '021v_1',\n", + " '021v_2',\n", + " '022r_1',\n", + " '022v_1',\n", + " '023r_1',\n", + " '023v_1',\n", + " '024r_1',\n", + " '024v_1',\n", + " '024v_2',\n", + " '024v_3',\n", + " '024v_4',\n", + " '025v_1',\n", + " '026r_1',\n", + " '026r_2',\n", + " '026v_1',\n", + " '027r_1',\n", + " '027r_2',\n", + " '027r_3',\n", + " '027v_1',\n", + " '027v_2',\n", + " '027v_3',\n", + " '027v_4',\n", + " '027v_5',\n", + " '027v_6',\n", + " '027v_7',\n", + " '027v_8',\n", + " '028r_1',\n", + " '028v_1',\n", + " '029r_1',\n", + " '029v_1',\n", + " '029v_2',\n", + " '029v_3',\n", + " '029v_4',\n", + " '029v_5',\n", + " '029v_6',\n", + " '030r_1',\n", + " '030r_2',\n", + " '031r_1',\n", + " '031r_2',\n", + " '031r_3',\n", + " '031r_4',\n", + " '031v_1',\n", + " '031v_2',\n", + " '031v_3',\n", + " '031v_4',\n", + " '032r_1',\n", + " '032r_2',\n", + " '032r_3',\n", + " '032v_1',\n", + " '032v_2',\n", + " '032v_3',\n", + " '033r_1',\n", + " '033r_2',\n", + " '033v_1',\n", + " '033v_2',\n", + " '034r_1',\n", + " '034r_2',\n", + " '034r_3',\n", + " '034r_4',\n", + " '034r_5',\n", + " '034v_1',\n", + " '035r_1',\n", + " '035r_2',\n", + " '035r_3',\n", + " '035r_4',\n", + " '035v_1',\n", + " '035v_2',\n", + " '036r_1',\n", + " '036v_1',\n", + " '036v_2',\n", + " '036v_3',\n", + " '037r_1',\n", + " '037r_2',\n", + " '037r_3',\n", + " '037r_4',\n", + " '037v_1',\n", + " '037v_2',\n", + " '037v_3',\n", + " '038r_1',\n", + " '038r_2',\n", + " '038r_3',\n", + " '038r_4',\n", + " '038v_1',\n", + " '038v_2',\n", + " '038v_3',\n", + " '038v_4',\n", + " '038v_5',\n", + " '038v_6',\n", + " '039r_1',\n", + " '039r_2',\n", + " '039v_1',\n", + " '039v_2',\n", + " '039v_3',\n", + " '040r_1',\n", + " '040r_2',\n", + " '040r_3',\n", + " '040r_4',\n", + " '040r_5',\n", + " '040v_1',\n", + " '040v_2',\n", + " '040v_3',\n", + " '040v_4',\n", + " '041r_02',\n", + " '041r_03',\n", + " '041r_04',\n", + " '041r_1',\n", + " '041v_1',\n", + " '041v_2',\n", + " '041v_3',\n", + " '042r_1',\n", + " '042r_2',\n", + " '042r_3',\n", + " '042v_1',\n", + " '042v_2',\n", + " '042v_3',\n", + " '042v_4',\n", + " '042v_5',\n", + " '042v_6',\n", + " '043r_1',\n", + " '043r_2',\n", + " '043r_3',\n", + " '043r_4',\n", + " '043v_1',\n", + " '043v_2',\n", + " '043v_3',\n", + " '043v_4',\n", + " '044r_1',\n", + " '044r_2',\n", + " '044r_3',\n", + " '044r_4',\n", + " '044r_5',\n", + " '044v_1',\n", + " '044v_2',\n", + " '044v_3',\n", + " '044v_4',\n", + " '045r_1',\n", + " '045v_1',\n", + " '045v_2',\n", + " '046r_1',\n", + " '046r_2',\n", + " '046r_3',\n", + " '046r_4',\n", + " '046r_5',\n", + " '046v_1',\n", + " '046v_2',\n", + " '046v_3',\n", + " '046v_4',\n", + " '046v_5',\n", + " '046v_6',\n", + " '046v_7',\n", + " '047r_1',\n", + " '047r_2',\n", + " '047r_3',\n", + " '047r_4',\n", + " '047r_5',\n", + " '047v_1',\n", + " '047v_2',\n", + " '047v_3',\n", + " '047v_4',\n", + " '048r_1',\n", + " '048r_2',\n", + " '048r_3',\n", + " '048r_4',\n", + " '048v_1',\n", + " '048v_2',\n", + " '049r_1',\n", + " '049r_2',\n", + " '049r_3',\n", + " '049r_4',\n", + " '049v_1',\n", + " '049v_2',\n", + " '049v_3',\n", + " '050r_1',\n", + " '050r_2',\n", + " '050v_1',\n", + " '050v_2',\n", + " '051r_1',\n", + " '051r_2',\n", + " '052r_1',\n", + " '052v_1',\n", + " '052v_2',\n", + " '053r_1',\n", + " '053r_2',\n", + " '053r_3',\n", + " '053r_4',\n", + " '053r_5',\n", + " '053r_6',\n", + " '053v_1',\n", + " '054v_1',\n", + " '054v_2',\n", + " '054v_3',\n", + " '054v_4',\n", + " '054v_5',\n", + " '055r_1',\n", + " '055r_2',\n", + " '055r_3',\n", + " '055r_4',\n", + " '055v_1',\n", + " '055v_2',\n", + " '055v_3',\n", + " '055v_4',\n", + " '056r_1',\n", + " '056r_2',\n", + " '056v_1',\n", + " '057v_1',\n", + " '057v_2',\n", + " '058v_1',\n", + " '058v_2',\n", + " '058v_3',\n", + " '058v_4',\n", + " '058v_5',\n", + " '059r_1',\n", + " '059r_2',\n", + " '059v_1',\n", + " '059v_2',\n", + " '059v_3',\n", + " '059v_4',\n", + " '059v_5',\n", + " '059v_6',\n", + " '060r_1',\n", + " '060r_2',\n", + " '060r_3',\n", + " '060v_1',\n", + " '060v_2',\n", + " '060v_3',\n", + " '060v_4',\n", + " '060v_5',\n", + " '061r_1',\n", + " '061r_2',\n", + " '061r_3',\n", + " '061r_4',\n", + " '061v_1',\n", + " '061v_2',\n", + " '061v_3',\n", + " '061v_4',\n", + " '062r_1',\n", + " '062r_2',\n", + " '062r_3',\n", + " '062r_4',\n", + " '062v_1',\n", + " '062v_2',\n", + " '062v_3',\n", + " '063r_1',\n", + " '063r_2',\n", + " '063r_3',\n", + " '063r_4',\n", + " '063r_5',\n", + " '063r_6',\n", + " '063v_1',\n", + " '063v_2',\n", + " '063v_3',\n", + " '063v_4',\n", + " '063v_5',\n", + " '063v_6',\n", + " '063v_7',\n", + " '064r_1',\n", + " '064r_2',\n", + " '064r_3',\n", + " '064r_4',\n", + " '064r_5',\n", + " '064r_6',\n", + " '064r_7',\n", + " '064r_8',\n", + " '064v_1',\n", + " '064v_3',\n", + " '064v_4',\n", + " '064v_5',\n", + " '065r_1',\n", + " '065r_2',\n", + " '065r_3',\n", + " '065r_4',\n", + " '065v_1',\n", + " '065v_2',\n", + " '065v_3',\n", + " '065v_4',\n", + " '065v_5',\n", + " '065v_6',\n", + " '065v_7',\n", + " '066r_1',\n", + " '066r_2',\n", + " '066r_3',\n", + " '066r_4',\n", + " '066r_5',\n", + " '066r_6',\n", + " '066v_1',\n", + " '066v_2',\n", + " '066v_3',\n", + " '066v_4',\n", + " '067r_1',\n", + " '067r_2',\n", + " '067r_3',\n", + " '067r_4',\n", + " '067v_1',\n", + " '067v_2',\n", + " '067v_3',\n", + " '068r_1',\n", + " '068r_2',\n", + " '068r_3',\n", + " '069r_1',\n", + " '069r_2',\n", + " '071r_1',\n", + " '071r_2',\n", + " '071r_3',\n", + " '071r_4',\n", + " '071r_5',\n", + " '071v_1',\n", + " '071v_2',\n", + " '071v_3',\n", + " '071v_4',\n", + " '072r_1',\n", + " '072r_2',\n", + " '072v_1',\n", + " '073r_1',\n", + " '073r_2',\n", + " '073r_3',\n", + " '073r_4',\n", + " '073r_5',\n", + " '073v_1',\n", + " '073v_2',\n", + " '073v_3',\n", + " '073v_4',\n", + " '074r_1',\n", + " '074r_2',\n", + " '074r_3',\n", + " '074v_1',\n", + " '074v_2',\n", + " '074v_3',\n", + " '074v_4',\n", + " '075r_1',\n", + " '075r_2',\n", + " '075r_3',\n", + " '075r_4',\n", + " '075r_5',\n", + " '075v_1',\n", + " '075v_2',\n", + " '075v_3',\n", + " '075v_4',\n", + " '076r_1',\n", + " '076r_2',\n", + " '076r_3',\n", + " '076r_4',\n", + " '076r_5',\n", + " '076v_1',\n", + " '076v_2',\n", + " '076v_3',\n", + " '076v_4',\n", + " '077r_1',\n", + " '077r_2',\n", + " '077r_3',\n", + " '077r_4',\n", + " '077v_1',\n", + " '077v_2',\n", + " '077v_3',\n", + " '078r_1',\n", + " '078r_2',\n", + " '078r_3',\n", + " '078v_1',\n", + " '078v_2',\n", + " '078v_3',\n", + " '078v_4',\n", + " '079r_1',\n", + " '079r_2',\n", + " '079r_3',\n", + " '079v_1',\n", + " '079v_2',\n", + " '079v_3',\n", + " '079v_4',\n", + " '080r_1',\n", + " '080r_2',\n", + " '080r_3',\n", + " '080v_1',\n", + " '081r_1',\n", + " '081r_2',\n", + " '081r_3',\n", + " '081r_4',\n", + " '081v_1',\n", + " '081v_2',\n", + " '081v_3',\n", + " '081v_4',\n", + " '082r_1',\n", + " '082r_2',\n", + " '082r_3',\n", + " '082r_4',\n", + " '082v_1',\n", + " '082v_2',\n", + " '082v_3',\n", + " '082v_4',\n", + " '083r_1',\n", + " '083r_2',\n", + " '083r_3',\n", + " '083r_4',\n", + " '083r_5',\n", + " '083r_6',\n", + " '083v_1',\n", + " '083v_2',\n", + " '083v_3',\n", + " '084r_1',\n", + " '084r_3',\n", + " '084r_4',\n", + " '084r_5',\n", + " '084v_1',\n", + " '084v_2',\n", + " '084v_3',\n", + " '084v_4',\n", + " '085r_1',\n", + " '085r_2',\n", + " '085v_1',\n", + " '085v_2',\n", + " '085v_3',\n", + " '085v_4',\n", + " '086v_1',\n", + " '087r_1',\n", + " '087v_1',\n", + " '087v_2',\n", + " '087v_3',\n", + " '088r_1',\n", + " '088r_2',\n", + " '088r_3',\n", + " '088r_4',\n", + " '088r_5',\n", + " '088r_6',\n", + " '088v_1',\n", + " '088v_2',\n", + " '089r_1',\n", + " '089r_2',\n", + " '089r_3',\n", + " '089v_1',\n", + " '089v_2',\n", + " '090r_1',\n", + " '090r_2',\n", + " '090r_3',\n", + " '090v_1',\n", + " '090v_2',\n", + " '091r_1',\n", + " '091r_2',\n", + " '092r_1',\n", + " '092r_2',\n", + " '092r_3',\n", + " '092r_4',\n", + " '092v_1',\n", + " '092v_2',\n", + " '092v_3',\n", + " '093r_1',\n", + " '093r_2',\n", + " '093r_3',\n", + " '093r_4',\n", + " '093r_5',\n", + " '093v_1',\n", + " '093v_2',\n", + " '093v_3',\n", + " '094r_1',\n", + " '096v_1',\n", + " '096v_2',\n", + " '096v_3',\n", + " '097r_1',\n", + " '097r_2',\n", + " '097r_3',\n", + " '097v_1',\n", + " '097v_2',\n", + " '098r_1',\n", + " '098r_2',\n", + " '098r_3',\n", + " '098v_1',\n", + " '098v_2',\n", + " '098v_3',\n", + " '098v_4',\n", + " '098v_5',\n", + " '099r_3',\n", + " '099v_1',\n", + " '099v_2',\n", + " '099v_3',\n", + " '099v_4',\n", + " '099v_5',\n", + " '099v_6',\n", + " '100r_1',\n", + " '100r_2',\n", + " '100r_3',\n", + " '100r_4',\n", + " '100r_5',\n", + " '100v_1',\n", + " '100v_2',\n", + " '101r_1',\n", + " '101r_2',\n", + " '101v_1',\n", + " '101v_2',\n", + " '101v_3',\n", + " '101v_4',\n", + " '102r_1',\n", + " '102r_2',\n", + " '102r_3',\n", + " '102r_4',\n", + " '102v_1',\n", + " '102v_2',\n", + " '102v_3',\n", + " '103r_1',\n", + " '103r_2',\n", + " '103v_1',\n", + " '103v_2',\n", + " '103v_3',\n", + " '103v_4',\n", + " '103v_5',\n", + " '104r_1',\n", + " '104r_2',\n", + " '104r_3',\n", + " '104r_4',\n", + " '104r_5',\n", + " '104v_1',\n", + " '104v_2',\n", + " '104v_3',\n", + " '104v_4',\n", + " '105r_1',\n", + " '105r_2',\n", + " '105r_3',\n", + " '105r_4',\n", + " '105v_1',\n", + " '105v_2',\n", + " '105v_3',\n", + " '105v_4',\n", + " '105v_5',\n", + " '106r_1',\n", + " '106r_2',\n", + " '106v_1',\n", + " '106v_2',\n", + " '106v_3',\n", + " '107r_1',\n", + " '108r_2',\n", + " '109r_1',\n", + " '109r_2',\n", + " '109r_3',\n", + " '109r_4',\n", + " '109r_5',\n", + " '109v_1',\n", + " '109v_2',\n", + " '110r_1',\n", + " '110r_2',\n", + " '110r_3',\n", + " '110v_1',\n", + " '110v_2',\n", + " '110v_3',\n", + " '111r_1',\n", + " '111r_2',\n", + " '111r_3',\n", + " '111r_4',\n", + " '111r_5',\n", + " '111v_1',\n", + " '111v_2',\n", + " '111v_3',\n", + " '111v_4',\n", + " '111v_5',\n", + " '112r_1',\n", + " '112r_2',\n", + " '112r_3',\n", + " '112r_4',\n", + " '112v_1',\n", + " '113r_1',\n", + " '113v_1',\n", + " '114r_1',\n", + " '115r_1',\n", + " '115r_2',\n", + " '115r_3',\n", + " '115v_1',\n", + " '115v_2',\n", + " '115v_3',\n", + " '116r_1',\n", + " '116r_2',\n", + " '116r_3',\n", + " '116r_4',\n", + " '116v_1',\n", + " '116v_2',\n", + " '116v_3',\n", + " '117r_1',\n", + " '117v_1',\n", + " '117v_2',\n", + " '117v_3',\n", + " '117v_4',\n", + " '117v_5',\n", + " '118r_1',\n", + " '118r_2',\n", + " '118r_3',\n", + " '118r_4',\n", + " '118r_5',\n", + " '118v_1',\n", + " '119r_1',\n", + " '119v_1',\n", + " '119v_2',\n", + " '120r_1',\n", + " '120r_2',\n", + " '120r_3',\n", + " '120v_1',\n", + " '120v_2',\n", + " '120v_3',\n", + " '120v_6',\n", + " '121r_1',\n", + " '121v_1',\n", + " '121v_2',\n", + " '122r_1',\n", + " '122r_2',\n", + " '122v_1',\n", + " '122v_2',\n", + " '122v_3',\n", + " '123r_1',\n", + " '124r_1',\n", + " '124r_2',\n", + " '124r_3',\n", + " '124r_4',\n", + " '124v_1',\n", + " '124v_2',\n", + " '124v_3',\n", + " '125r_1',\n", + " '125r_2',\n", + " '125r_3',\n", + " '125v_1',\n", + " '125v_2',\n", + " '125v_3',\n", + " '126r_1',\n", + " '126v_1',\n", + " '126v_2',\n", + " '126v_3',\n", + " '127r_1',\n", + " '127v_1',\n", + " '128r_1',\n", + " '128v_1',\n", + " '129r_1',\n", + " '129r_2',\n", + " '129r_3',\n", + " '129r_4',\n", + " '129v_1',\n", + " '129v_2',\n", + " '129v_3',\n", + " '129v_4',\n", + " '130r_1',\n", + " '130r_2',\n", + " '130r_3',\n", + " '130r_4',\n", + " '130v_1',\n", + " '130v_2',\n", + " '130v_3',\n", + " '131r_1',\n", + " '131r_2',\n", + " '131r_3',\n", + " '131r_4',\n", + " '131r_5',\n", + " '131v_1',\n", + " '132r_1',\n", + " '132r_2',\n", + " '132v_1',\n", + " '132v_2',\n", + " '132v_3',\n", + " '133r_1',\n", + " '133r_2',\n", + " '133r_3',\n", + " '133r_4',\n", + " '133v_1',\n", + " '133v_2',\n", + " '133v_3',\n", + " '134r_1',\n", + " '134r_2',\n", + " '134v_1',\n", + " '134v_2',\n", + " '134v_3',\n", + " '135r_1',\n", + " '135r_2',\n", + " '135r_3',\n", + " '135v_1',\n", + " '136r_1',\n", + " '136v_1',\n", + " '137r_1',\n", + " '137r_2',\n", + " '137r_3',\n", + " '137v_1',\n", + " '138v_1',\n", + " '138v_2',\n", + " '138v_3',\n", + " '139r_1',\n", + " '139v_1',\n", + " '140v_1',\n", + " '140v_2',\n", + " '140v_3',\n", + " '141r_1',\n", + " '142v_1',\n", + " '142v_2',\n", + " '142v_3',\n", + " '143r_1',\n", + " '143r_2',\n", + " '143r_3',\n", + " '143v_1',\n", + " '143v_2',\n", + " '143v_3',\n", + " '144r_1',\n", + " '145r_1',\n", + " '145r_2',\n", + " '145v_1',\n", + " '145v_2',\n", + " '146v_1',\n", + " '147v_1',\n", + " '147v_2',\n", + " '147v_3',\n", + " '147v_4',\n", + " '148r_1',\n", + " '148r_2',\n", + " '148r_3',\n", + " '148r_4',\n", + " '148v_1',\n", + " '149r_1',\n", + " '149r_2',\n", + " '149r_3',\n", + " '149r_4',\n", + " '149v_1',\n", + " '149v_2',\n", + " '149v_3',\n", + " '149v_4',\n", + " '150r_1',\n", + " '150r_2',\n", + " '150r_3',\n", + " '150v_1',\n", + " '151v_1',\n", + " '152r_1',\n", + " '152v_1',\n", + " '153r_1',\n", + " '153r_2',\n", + " '153v_1',\n", + " '153v_2',\n", + " '154r_1',\n", + " '154r_2',\n", + " '154r_3',\n", + " '154r_4',\n", + " '154r_5',\n", + " '154v_1',\n", + " '154v_2',\n", + " '154v_3',\n", + " '154v_4',\n", + " '154v_5',\n", + " '155r_1',\n", + " '155v_1',\n", + " '156r_1',\n", + " '156r_2',\n", + " '156r_3',\n", + " '156v_1',\n", + " '157r_1',\n", + " '157r_2',\n", + " '157r_3',\n", + " '157r_4',\n", + " '157r_5',\n", + " '157v_1',\n", + " '157v_2',\n", + " '157v_3',\n", + " '158r_1',\n", + " '158v_1',\n", + " '158v_2',\n", + " '158v_3',\n", + " '158v_4',\n", + " '159r_1',\n", + " '159r_2',\n", + " '159r_3',\n", + " '159r_4',\n", + " '159v_1',\n", + " '159v_2',\n", + " '159v_3',\n", + " '159v_4',\n", + " '160r_1',\n", + " '160r_2',\n", + " '160v_1',\n", + " '160v_2',\n", + " '160v_3',\n", + " '160v_4',\n", + " '160v_5',\n", + " '161r_1',\n", + " '161v_1',\n", + " '162r_1',\n", + " '162r_2',\n", + " '162r_3',\n", + " '162v_1',\n", + " '162v_2',\n", + " '162v_3',\n", + " '162v_4',\n", + " '163r_1',\n", + " '163r_2',\n", + " '163v_1',\n", + " '163v_2',\n", + " '163v_3',\n", + " '164r_1',\n", + " '164r_2',\n", + " '164r_3',\n", + " '164r_4',\n", + " '164v_1',\n", + " '164v_2',\n", + " '164v_3',\n", + " '165r_1',\n", + " '165r_2',\n", + " '165r_3',\n", + " '165r_4',\n", + " '165r_5',\n", + " '165r_6',\n", + " '165v_1',\n", + " '165v_2',\n", + " '165v_3',\n", + " '165v_4',\n", + " '165v_5',\n", + " '165v_6',\n", + " '165v_7',\n", + " '166r_1',\n", + " '166v_2',\n", + " '166v_3',\n", + " '166v_4',\n", + " '166v_5',\n", + " '167r_1',\n", + " '169r_1',\n", + " '169v_1',\n", + " '169v_2',\n", + " '170r_1',\n", + " '170r_2',\n", + " '170r_3',\n", + " '170r_4',\n", + " '170r_5',\n", + " '170r_6',\n", + " '170v_1',\n", + " '170v_2',\n", + " '170v_3',\n", + " '170v_4'}" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "iron_set = set(iron_entries)\n", + "rose_set = set(rose_entries)\n", + "iron_set.intersection(rose_set)" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "' in three frames softening iron to engrave it etching with'" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "turtle = manuscript.entry('169r_1')\n", + "turtle.context('iron', 'tl')" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "' support molding a bouquet rose carnations molding hollow hollow gilded'" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "turtle.context('rose', 'tl')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "To create a new manuscript composed of a selection of entries, enter a list of entries as a constructor to the BnF() class." + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [], + "source": [ + "rose_manuscript = BnF(rose_entries)" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
identitytitlelengthnum_materialsmarginsdel_tags
0001r_1[List of names]669130
1001r_2[List]384030
2001r_3114030
3001r_4[List of books]309030
4001v_1For loosening the belly614830
.....................
924170r_6Cleaning closed molds1024730
925170v_1[Original first page (1578–1579)]993034
926170v_2Against plague534330
927170v_3For preserving1048730
928170v_4[List of books]930031
\n", + "

929 rows × 6 columns

\n", + "
" + ], + "text/plain": [ + " identity title length num_materials \\\n", + "0 001r_1 [List of names] 669 1 \n", + "1 001r_2 [List] 384 0 \n", + "2 001r_3 114 0 \n", + "3 001r_4 [List of books] 309 0 \n", + "4 001v_1 For loosening the belly 614 8 \n", + ".. ... ... ... ... \n", + "924 170r_6 Cleaning closed molds 1024 7 \n", + "925 170v_1 [Original first page (1578–1579)] 993 0 \n", + "926 170v_2 Against plague 534 3 \n", + "927 170v_3 For preserving 1048 7 \n", + "928 170v_4 [List of books] 930 0 \n", + "\n", + " margins del_tags \n", + "0 3 0 \n", + "1 3 0 \n", + "2 3 0 \n", + "3 3 0 \n", + "4 3 0 \n", + ".. ... ... \n", + "924 3 0 \n", + "925 3 4 \n", + "926 3 0 \n", + "927 3 0 \n", + "928 3 1 \n", + "\n", + "[929 rows x 6 columns]" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "rose_manuscript.tablefy()" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
identitytitlelengthnum_materialsmarginsdel_tags
0001r_1[List of names]669130
1001r_2[List]384030
2001r_3114030
3001r_4[List of books]309030
4001v_1For loosening the belly614830
.....................
924170r_6Cleaning closed molds1024730
925170v_1[Original first page (1578–1579)]993034
926170v_2Against plague534330
927170v_3For preserving1048730
928170v_4[List of books]930031
\n", + "

929 rows × 6 columns

\n", + "
" + ], + "text/plain": [ + " identity title length num_materials \\\n", + "0 001r_1 [List of names] 669 1 \n", + "1 001r_2 [List] 384 0 \n", + "2 001r_3 114 0 \n", + "3 001r_4 [List of books] 309 0 \n", + "4 001v_1 For loosening the belly 614 8 \n", + ".. ... ... ... ... \n", + "924 170r_6 Cleaning closed molds 1024 7 \n", + "925 170v_1 [Original first page (1578–1579)] 993 0 \n", + "926 170v_2 Against plague 534 3 \n", + "927 170v_3 For preserving 1048 7 \n", + "928 170v_4 [List of books] 930 0 \n", + "\n", + " margins del_tags \n", + "0 3 0 \n", + "1 3 0 \n", + "2 3 0 \n", + "3 3 0 \n", + "4 3 0 \n", + ".. ... ... \n", + "924 3 0 \n", + "925 3 4 \n", + "926 3 0 \n", + "927 3 0 \n", + "928 3 1 \n", + "\n", + "[929 rows x 6 columns]" + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "manuscript = BnF()\n", + "marginal = [page.identity for _, page in manuscript.entries.items() if len(page.margins) >= 1]\n", + "margin = BnF(marginal)\n", + "margin.tablefy()" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "tc\n", + "1 Il est mieulx de chaufer un peu le vernis que le coucher au soleil pourceque cela faict enveler le tableau\n", + "2 Aulcuns disent quil nest bon de distiler dans ce vaisseau de cuivre pourcequil faict vert Touteffois estame il est bon\n", + "\n", + "tcn\n", + "1 Il est mieulx de chaufer un peu le vernis que le coucher au soleil, pource que cela faict enveler le tableau.\n", + "2 Aulcuns disent qu’il n’est bon de distiler dans ce vaisseau de cuivre, pource qu’il faict vert. Touteffois estamé il est bon.\n", + "\n", + "tl\n", + "1 It is better to heat the varnish a little bit, rather than to put it out in the sun, because this makes the panel warp.\n", + "2 Some say it is not good to distil in this copper vessel because it makes things green. However, when tinned, it is good.\n", + "\n" + ] + } + ], + "source": [ + "varnish = manuscript.entry('003r_3')\n", + "for version, margin_list in varnish.margins.items():\n", + " print(version)\n", + " for i, margin in enumerate(margin_list):\n", + " print(i+1, margin.text)\n", + " print()\n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "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.7.4" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/Continuity-Margins.ipynb b/Continuity-Margins.ipynb index 9719326..922f153 100644 --- a/Continuity-Margins.ipynb +++ b/Continuity-Margins.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "code", - "execution_count": 2, + "execution_count": 1, "metadata": {}, "outputs": [], "source": [ @@ -12,7 +12,7 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 2, "metadata": {}, "outputs": [], "source": [ @@ -32,7 +32,7 @@ }, { "cell_type": "code", - "execution_count": 52, + "execution_count": 3, "metadata": {}, "outputs": [], "source": [ diff --git a/thesaurus.py b/thesaurus.py index 23196d3..294fd4c 100644 --- a/thesaurus.py +++ b/thesaurus.py @@ -15,6 +15,10 @@ from digital_manuscript import BnF nlp = spacy.load('en_core_web_sm') +cwd = os.getcwd() +m_path = cwd if 'manuscript-object' not in cwd else f'{cwd}/../m-k-manuscript-data' +m_k_data_to_thesaurus = f'{m_path}/manuscript-object/thesaurus' + properties = ['animal', 'body_part', 'currency', 'definition', 'environment', 'material', 'medical', 'measurement', 'music', 'plant', 'place', 'personal_name', 'profession', 'sensory', 'tool', 'time', 'weapon'] @@ -71,16 +75,23 @@ def simplify_terms(simple_df: pd.DataFrame, complex_df:pd.DataFrame) -> pd.DataF Output: complex_df: BnF -- complex_df with semantic head as preferred label. """ - simple_terms = list(simple_df['verbatim_term']) + simple_terms = list(simple_df['prefLabel_en']) for i, row in complex_df.iterrows(): parse = nlp(row.verbatim_term) + head = [token for token in parse if token.head.text == token.text][0].text + head = nlp(head)[0] + head = inflection.singularize(head.text) if head.pos_ in ['NOUN', 'PROPN'] else head.text if head in simple_terms: complex_df.loc[i, 'prefLabel_en'] = head return complex_df +def singularize(term: str) -> str: + if not term: + return term + parse = nlp(term.lower().strip())[0] + return inflection.singularize(term) if parse.pos_ in ['NOUN', 'PROPN'] else term -m_k_data_to_thesaurus = f'{os.getcwd()}/manuscript-object/thesaurus' def create_thesaurus(): """ @@ -105,8 +116,8 @@ def create_thesaurus(): simple_df, complex_df = get_prop_dfs(manuscript, prop) # get dataframe of count, verbatim terms # create the prefLabel_en column by lemmatizing terms to lower case, singular, and stripped of white space - simple_df['prefLabel_en'] = simple_df.verbatim_term.apply(lambda x: inflection.singularize(re.sub(r"’|'", '', x)).lower().strip()) - complex_df['prefLabel_en'] = complex_df.verbatim_term.apply(lambda x: inflection.singularize(x.replace('\'', '')).lower().strip()) + simple_df['prefLabel_en'] = simple_df.verbatim_term.apply(lambda x: singularize(re.sub(r"’|'", '', x))) + complex_df['prefLabel_en'] = complex_df.verbatim_term.apply(lambda x: x.replace('\'', '').lower().strip()) complex_df = simplify_terms(simple_df, complex_df) # reduce complex terms to their semantic heads complex_df['prefLabel_en'] = complex_df.prefLabel_en.apply(lambda x: inflection.singularize(x)) diff --git a/thesaurus/animal.csv b/thesaurus/animal.csv deleted file mode 100644 index b8096d8..0000000 --- a/thesaurus/animal.csv +++ /dev/null @@ -1,163 +0,0 @@ -freq,verbatim_term,prefLabel_en -1,aucupio,aucupio -3,chicken,chicken -1,lamb,lamb -7,dragon,dragon -1,codfish,codfish -9,fish,fish -19,horse,horse -2,mutton,mutton -11,lizard,lizard -5,hog,hog -1,animal,animal -5,toad,toad -18,snake,snake -24,snakes,snake -2,swine,swine -1,swallows,swallow -8,cuttlefish,cuttlefish -4,horses,horse -1,cat,cat -1,swan,swan -1,horses’,horse -3,pigeon,pigeon -1,rabbits,rabbit -5,cow,cow -3,ox,ox -1,ducks,duck -7,sheep,sheep -1,ewes,ewe -1,ewe,ewe -2,crow,crow -1,beef,beef -4,dogs,dog -8,birds,bird -2,oyster,oyster -1,siskins,siskin -2,ortolans,ortolan -1,turtledoves,turtledofe -7,spider,spider -1,chaffinches,chaffinch -4,bird,bird -1,linnet,linnet -1,calandra,calandra -1,verdaule,verdaule -1,goldfinches,goldfinch -1,cuckoo,cuckoo -1,colt,colt -5,worms,worm -8,oxen,ox -3,butterfly,butterfly -1,worm,worm -1,silkworms,silkworm -1,bombicum,bombicum -2,pork,pork -7,dog,dog -2,snails,snail -1,daot,daot -1,earthworms,earthworm -1,lambs,lamb -1,goats,goat -1,porcupine,porcupine -1,weasels,weasel -2,squirrel,squirrel -1,dormice,dormouse -3,rats,rat -3,rat,rat -1,pigeons,pigeon -1,duck,duck -1,petit-gris,petit-gri -1,fishes,fish -1,human,human -1,partridge,partridge -4,wolf,wolf -3,pig,pig -1,oysters,oyster -1,shells,shell -1,tellins,tellin -1,mussels,mussel -1,calf,calf -1,dogfish,dogfish -1,fleas,flea -1,water-dogs,water-dog -1,ogs,og -1,dogs’,dog -11,turtles,turtle -2,nightingales,nightingale -4,nightingale,nightingale -1,calendras,calendra -2,ants,ant -2,mealworms,mealworm -16,lizards,lizard -4,crabs,crab -13,crayfish,crayfish -1,hart,hart -4,frog,frog -5,crab,crab -1,lice,louse -1,frogs,frog -1,larks,lark -3,butterflies,butterfly -1,vipers,viper -1,viper,viper -5,flies,fly -1,cats,cat -1,spiders,spider -3,grasshoppers,grasshopper -1,grasshopper,grasshopper -4,turtle,turtle -1,eagle,eagle -3,bittern,bittern -9,fly,fly -1,cicadas,cicada -1,bat,bat -1,mouse,mouse -1,passerines,passerine -1,chicks,chick -1,hen,hen -1,mules,mule -1,barbels,barbel -1,bats,bat -1,aquatilium animalium,aquatilium animalium -1,good horses,horse -2,field mice,field mouse -1,calandra lark,calandra lark -1,calandra larks,lark -1,young small birds,bird -1,passe solitaire,passe solitaire -1,small birds,bird -1,female silkworm seeds,female silkworm seed -1,black ants,ant -1,beech martens,beech marten -1,goat buck,goat buck -1,goat kid,goat kid -1,common dogs,dog -2,female lizards,lizard -1,water snakes,snake -1,common snake,snake -1,small crabs,crab -1,horned aspic,horned aspic -1,little lizard,lizard -1,viper color,viper color -2,stag beetle,stag beetle -1,large lizard,lizard -1,very small female lizard,lizard -1,large lizards,lizard -1,smalls female lizards,smalls female lizard -1,small female lizards,lizard -1,wall lizard,lizard -1,small wall lizard,lizard -1,small frog,frog -2,stag beetles,stag beetle -1,those from water,those from water -1,those from garrigue,those from garrigue -3,those of the garrigue,those of the garrigue -3,those of the water,those of the water -1,water turtle,turtle -1,those of water,those of water -1,large flies,fly -1,big rat,rat -1,small mouse,mouse -1,largest vo flies,fly -1,solid bird,bird -1,little viper,viper diff --git a/thesaurus/body_part.csv b/thesaurus/body_part.csv deleted file mode 100644 index d321de6..0000000 --- a/thesaurus/body_part.csv +++ /dev/null @@ -1,104 +0,0 @@ -freq,verbatim_term,prefLabel_en -3,stomach,stomach -1,belly,belly -35,finger,finger -2,handful,handful -8,face,face -1,nipple,nipple -27,hand,hand -11,mouth,mouth -1,matrix,matrix -22,urine,urine -7,fingernail,fingernail -4,eyes,eye -3,nail,nail -9,foot,foot -1,elbow,elbow -3,eye,eye -2,ears,ear -6,ear,ear -1,tooth,tooth -1,nostril,nostril -2,handfuls,handful -5,forehead,forehead -8,thumb,thumb -1,wind,wind -1,winds,wind -42,fingers,finger -1,wounds,wound -2,feet,feet -1,knees,knee -1,fingers',finger -1,arm's,arm -1,thigh,thigh -17,hands,hand -6,nose,nose -1,palms,palm -3,saliva,saliva -4,head,head -2,blood,blood -1,arm,arm -2,fingertips,fingertip -1,liver,liver -1,breathes,breathe -3,breath,breath -1,ditto,ditto -2,teeth,teeth -1,neck,neck -1,temples,temple -1,back,back -2,fingertip,fingertip -1,legs,leg -1,cheeks,cheek -2,breathe,breathe -1,teats,teat -1,palm,palm -1,fistfuls,fistful -1,two,two -1,sweating,sweating -2,thumbs,thumb -1,burn,burn -2,flesh,flesh -1,hair,hair -1,burns,burn -1,veins,vein -1,earwax,earwax -1,headache,headache -1,throat,throat -1,underfoot,underfoot -1,tongue,tongue -1,fist,fist -1,armpit,armpit -1,phlegm,phlegm -1,knee,knee -1,manus,manu -1,digiti,digiti -1,naribus,naribus -1,ore,ore -4,little finger,finger -1,secret places,secret place -1,big finger,finger -1,nail of your right thumb,nail -1,winds of the belly,wind -1,distilled urine,urine -3,index finger,finger -1,middle finger,finger -1,right hand,hand -1,little & ring fingers,little & ring finger -1,sole of your feet,sole of your feet -1,hollow of the hands,hollow of the hand -1,sole of the feet,sole of the feet -1,bare hand,hand -1,ring finger,finger -1,joint of the little finger,joint of the little finger -1,back of your hand,back -1,ends of your fingernails,ends of your fingernail -1,old urine,urine -1,foam of urine,foam of urine -1,white thick which saliva that is found on the teeth,white thick which saliva that is found on the teeth -1,made by hand,made by hand -1,end of your finger,end of your finger -1,very light hand,hand -1,right d foot,foot -1,thumbs breadth,thumbs breadth -1,warm urine,urine diff --git a/thesaurus/currency.csv b/thesaurus/currency.csv deleted file mode 100644 index a7ac5e6..0000000 --- a/thesaurus/currency.csv +++ /dev/null @@ -1,26 +0,0 @@ -freq,verbatim_term,prefLabel_en -13,sous,sou -2,livres,livre -4,lb,lb -1,frans,fran -3,liard,liard -1,lb.,lb. -1,francs,franc -1,florins,florin -2,pistolet,pistolet -1,deniers,denier -1,s, -2,carolus,carolu -3,teston,teston -2,écu,écu -2,real,real -1,sou,sou -1,billon,billon -1,reals,real -1,écus,écu -1,lb t.,lb t. -1,gold denier,gold denier -1,old douzains,old douzain -1,old sou,sou -1,sous from france,sou -1,sous from spain,sou diff --git a/thesaurus/definition.csv b/thesaurus/definition.csv deleted file mode 100644 index c2c8b13..0000000 --- a/thesaurus/definition.csv +++ /dev/null @@ -1 +0,0 @@ -freq,verbatim_term,prefLabel_en diff --git a/thesaurus/environment.csv b/thesaurus/environment.csv deleted file mode 100644 index 6b5974e..0000000 --- a/thesaurus/environment.csv +++ /dev/null @@ -1,215 +0,0 @@ -freq,verbatim_term,prefLabel_en -3,rain,rain -1,courtyard,courtyard -4,sun,sun -1,window,window -1,street,street -4,wall,wall -1,court,court -2,mountains,mountain -2,chamber,chamber -2,walls,wall -1,trenches,trench -1,gabions,gabion -1,barricade,barricade -2,houses,house -1,tower,tower -1,cities,city -1,casemates,casemate -1,city,city -2,hearth,hearth -2,church,church -1,land,land -11,mine,mine -1,countryside,countryside -1,humidity,humidity -1,kitchen,kitchen -1,burrows,burrow -1,burrow,burrow -1,chimney,chimney -4,grottos,grotto -8,water,water -1,churches,church -6,cellar,cellar -2,gardens,garden -2,room,room -3,quarry,quarry -3,workshop,workshop -1,light,light -1,firelight,firelight -1,rains,rain -1,quarreriesries,quarreriesry -1,quarries,quarry -1,rocks,rock -3,sea,sea -3,river,river -6,wind,wind -1,vineyard,vineyard -1,nature,nature -1,cave,cave -1,town,town -1,freezes,freeze -2,frost,frost -1,kitchens,kitchen -2,garden,garden -2,rivers,river -1,paths,path -1,sunlight,sunlight -3,cold,cold -1,barn,barn -2,earth,earth -2,grotto,grotto -1,forests,forest -1,barns,barn -1,anthill,anthill -1,rooms,room -1,cabinets,cabinet -1,well,well -1,shop,shop -1,beds,bed -1,mirrors,mirror -1,daylight,daylight -3,garrigue,garrigue -1,pantries,pantry -1,fountains,fountain -1,house,house -12,in the sun,in the sun -3,in the shade,in the shade -2,open space,open space -1,pierced door of a closed room,pierced door of a closed room -6,in the rain,in the rain -1,in the cool & by moonlight,in the cool & by moonlight -1,veins of the mountain,veins of the mountain -1,at night,at night -1,in cold,in cold -1,in wind,in wind -1,near the fire,near the fire -1,autan wind,wind -1,good & fertile land,good & fertile land -1,cool & dry place,cool & dry place -1,house or elsewhere,house -1,fortresses of little importance,fortresses of little importance -1,ditch casemates,casemate -1,garrets topped with a tower,garrets topped with a tower -1,private houses,house -1,small towns,small town -1,edge of the ditch,edge of the ditch -1,in a very humid place where with such a rodier well or fountain one can water it often,in a very humid place where with such a rodier well or fountain one can water it often -2,humid place,humid place -1,very dry place,very dry place -1,poorly fortified towns,poorly fortified town -1,fortified towns,fortified town -4,dry place,dry place -1,bonnes villes,bonnes ville -4,in the serain,in the serain -1,in the open air,in the open air -1,overcast weather,overcast weather -1,partition walls of rooms,wall -1,in the hottest sun,in the hottest sun -1,in a closed space,in a closed space -1,in one field & in the one close by it,in one field & in the one close by it -1,where the depth of the earth is so fertile,where the depth of the earth is so fertile -1,thunder storms,thunder storm -1,in nature,in nature -1,cities where they are sworn masters,city -1,humid weather,humid weather -1,deep well,well -1,"well-closed room, where neither wind nor air may enter",room -1,in a cellar,in a cellar -1,in a room where there is not a drop of air & of wind,in a room where there is not a drop of air & of wind -1,forges of foix,forges of foix -1,place where the flame cannot cause damage,place where the flame cannot cause damage -1,"from the ceiling, where the air or & sun dry it","from the ceiling, where the air or & sun dry it" -1,warm & close place,warm & close place -1,weather is warm & serain,weather is warm & serain -1,"thunder or rainy weather, cloud-covered & cool","thunder or rainy weather, cloud-covered & cool" -1,room accomodated with three or 4 levels of large shelves,room -1,in the very strong sun & in the serain,in the very strong sun & in the serain -1,tree or a plant that is on the bank,tree or a plant that is on the bank -1,running river,river -1,open sea,sea -2,dung heap,dung heap -1,humid places,humid place -1,wet weather,wet weather -1,in damp weather,in damp weather -1,exposed to the sun,exposed to the sun -1,in the wind,in the wind -1,the first rain,rain -1,dry weather,dry weather -1,sandy paths,path -1,rock caves,rock cafe -1,near my area,near my area -1,after rainy weather,after rainy weather -1,in the cellar or other damp place,in the cellar or other damp place -1,at the foot of a wall,at the foot of a wall -1,great flakes near the mountains,great flakes near the mountain -1,on the little hill,on the little hill -2,damp place,damp place -1,aerated place,aerated place -1,mine in thoulouse,mine -1,"depths of the earth, from the small hill of puy david","depths of the earth, from the small hill of puy david" -1,private home,private home -1,out of the wind,out of the wind -1,vineyard that is quite high up,vineyard -1,deep in the earth,deep in the earth -2,in dampness,in dampness -1,rock formation,rock formation -1,moisture of the cellar,moisture of the cellar -1,serain of the night,serain of the night -3,in a damp place,in a damp place -1,from the depths of the sand-bed,from the depths of the sand-bed -1,in the surroundings of all the bonnes villes,in the surroundings of all the bonnes ville -1,lean territories,lean territory -1,close to their house,close to their house -1,near the rocks in mountainous areas,near the rocks in mountainous area -1,"serain & mild weather, & not too cold & windy","serain & mild weather, & not too cold & windy" -1,fresh water rivers,river -1,in freezing weather,in freezing weather -1,big kitchens,kitchen -1,fireplaces of large kitchens,fireplaces of large kitchen -1,in the fireplace,in the fireplace -1,weather is damp & humid,weather is damp & humid -1,weather is not serain & dry,weather is not serain & dry -1,on the fire,on the fire -1,humid air or place,humid air or place -1,sand bank,sand bank -1,in the fire,in the fire -1,"coolness of the evening and the morning, near fountains & shaded places","coolness of the evening and the morning, near fountains & shaded place" -1,rainy weather,rainy weather -1,in a dry place,in a dry place -1,in water,in water -1,in a cool place,in a cool place -1,into fresh earth,into fresh earth -1,in a garden outdoors,in a garden outdoor -1,fresh & damp earth,fresh & damp earth -1,wind or the cold,wind -1,in all weather,in all weather -1,hot sun,sun -1,rainy and humid weather,rainy and humid weather -1,current of the waters,current of the water -1,"serain, & the humidity of the night","serain, & the humidity of the night" -1,in sunlight,in sunlight -1,serain & s quite dry weather,serain & s quite dry weather -1,in the fields,in the field -1,sun in june,sun -1,wind from a window,wind -1,moist & humid place,moist & humid place -1,the air,the air -1,the wind,wind -1,cold & humidity,cold -1,spring of water in the pit,spring of water in the pit -1,in a very flat & level place,in a very flat & level place -1,humid or enclosed place,humid or enclosed place -1,in the earth,in the earth -1,under wheat chaff or warm manure,under wheat chaff or warm manure -2,in the cold,in the cold -1,lean & dry earth,lean & dry earth -1,water where crayfish eat,water -1,night be dark & without ☾,night be dark & without ☾ -1,in straw,in straw -1,close to the house,close to the house -1,silver spoon that one uses at the table,silver spoon that one uses at the table -1,lean soil,lean soil -1,gutter of some roof,gutter of some roof -1,in the open,in the open -1,"the room, house, &c",room diff --git a/thesaurus/material.csv b/thesaurus/material.csv deleted file mode 100644 index 4e63504..0000000 --- a/thesaurus/material.csv +++ /dev/null @@ -1,1895 +0,0 @@ -freq,verbatim_term,prefLabel_en -2,cinnamon,cinnamon -10,sugar,sugar -138,water,water -25,minium,minium -42,marble,marble -10,luted,luted -14,verdet,verdet -5,crystal,crystal -6,pebbles,pebble -5,sapphire,sapphire -1,coryal,coryal -6,enamels,enamel -2,colophony,colophony -6,cement,cement -24,sulfur,sulfur -5,leaded,leaded -14,mastic,mastic -54,wood,wood -21,brick,brick -1,coral,coral -4,resin,resin -35,charcoal,charcoal -9,vermilion,vermilion -39,vinegar,vinegar -13,rosin,rosin -22,turpentine,turpentine -48,varnish,varnish -108,oil,oil -69,copper,copper -4,wheat,wheat -3,garlic,garlic -50,eau-de-vie,eau-de-vie -2,tinned,tinned -17,gum,gum -24,glue,glue -6,sandarac,sandarac -78,iron,iron -2,ebony,ebony -41,plaster,plaster -6,soap,soap -30,ashes,ash -2,onions,onion -9,smokes,smoke -15,sands,sand -2,galipot,galipot -4,pitch,pitch -4,jet,jet -3,lampblack,lampblack -17,linen,linen -14,steel,steel -16,salt,salt -22,verdigris,verdigri -94,tin,tin -6,arene,arene -11,tripoli,tripoli -10,rosette,rosette -6,putty,putty -14,straw,straw -3,candle,candle -51,paper,paper -16,quicksilver,quicksilver -12,wooden,wooden -18,ash,ash -5,ochre,ochre -6,saffron,saffron -1,bean,bean -1,horsetail,horsetail -1,pea,pea -3,brazilwood,brazilwood -6,bole,bole -101,gold,gold -14,tallow,tallow -6,sanguine,sanguine -1,mine,mine -1,prele,prele -28,ceruse,ceruse -16,azure,azure -22,aquafortis,aquaforti -13,gild,gild -8,felt,felt -113,lead,lead -2,tinsel,tinsel -2,satin,satin -4,velvet,velvet -14,cotton,cotton -15,massicot,massicot -27,lake,lake -2,sap-green,sap-green -1,salted,salted -1,isinglass,isinglass -2,glueing,glueing -2,touchstone,touchstone -16,metals,metal -73,metal,metal -1,walnuts,walnut -55,glass,glass -19,wine,wine -1,storax,storax -1,fumes,fume -21,urine,urine -1,mellis,melli -19,powder,powder -2,wadding,wadding -1,lard,lard -93,silver,silver -10,☿,☿ -1,or,or -5,mercury,mercury -3,emerald,emerald -1,amethyst,amethyst -9,stones,stone -4,ruby,ruby -3,diamond,diamond -1,♀,♀ -3,☾,☾ -2,☼,☼ -4,grais,grai -3,grain,grain -9,orpiment,orpiment -1,garnets,garnet -1,cambric,cambric -1,roses,rose -1,cornalines,cornaline -1,jasper,jasper -5,horn,horn -18,distemper,distemper -10,chalk,chalk -5,parchment,parchment -17,alum,alum -47,earth,earth -29,filth,filth -2,batture,batture -4,taffeta,taffetum -7,honey,honey -3,waters,water -10,enamel,enamel -2,azures,azure -105,sand,sand -2,nail,nail -23,stone,stone -14,leather,leather -7,cloth,cloth -1,chimolée,chimolée -6,alabaster,alabaster -2,white,white -11,oiled,oiled -5,stucco,stucco -1,pearl,pearl -1,enilanroc,enilanroc -12,charcoals,charcoal -1,agate,agate -6,arsenic,arsenic -4,dyeing,dyeing -3,vitriol,vitriol -6,silk,silk -3,horsehair,horsehair -12,flour,flour -2,pearls,pearl -1,toadstone,toadstone -5,bricks,brick -1,heather,heather -1,wisps,wisp -20,saltpeter,saltpeter -1,mud,mud -6,dye,dye -1,cord,cord -2,dyed,dyed -1,string,string -36,latten,latten -1,damascening,damascening -2,ivory,ivory -7,boxwood,boxwood -1,sandalwood,sandalwood -2,beryl,beryl -14,bronze,bronze -2,musk,musk -1,wallwort,wallwort -1,realgar,realgar -1,melt,melt -1,crimson,crimson -1,silks,silk -1,oranges,orange -6,bran,bran -19,smoke,smoke -6,ink,ink -1,cards,card -4,card,card -1,millet,millet -1,husks,husk -1,millas,milla -3,hay,hay -1,milk,milk -2,earthenware,earthenware -1,dough,dough -6,drugs,drug -1,puffball,puffball -1,juice,juice -1,onion,onion -1,verjuice,verjuice -1,centers,center -4,eggs,egg -3,plumb,plumb -15,canvas,canva -1,buckram,buckram -1,basan,basan -3,cork,cork -79,wax,wax -35,solder,solder -1,plates,plate -1,jelly,jelly -7,bread,bread -3,starch,starch -3,oils,oil -1,peas,pea -3,rubies,ruby -1,hazelnuts,hazelnut -1,tincture,tincture -1,quick-lime,quick-lime -1,shale,shale -3,rocaille,rocaille -1,cocon,cocon -2,straws,straw -5,copperas,coppera -1,tint,tint -3,litharge,litharge -1,wicker,wicker -5,saliva,saliva -2,blood,blood -1,air,air -6,quicklime,quicklime -4,egg,egg -1,embers,ember -1,arum,arum -1,foodstuff,foodstuff -5,calamine,calamine -1,saltworth,saltworth -1,preserves,preserf -1,seeds,seed -4,grease,grease -1,arène,arène -5,amber,amber -4,gemstones,gemstone -2,sapphires,sapphire -1,taffer,taffer -4,emery,emery -1,aquamarines,aquamarine -1,manganese,manganese -1,fir,fir -1,willow,willow -5,lye,lye -7,dung,dung -2,soot,soot -9,bones,bone -2,sorrel,sorrel -1,cochineal,cochineal -1,cloths,cloth -8,borax,borax -1,wool,wool -2,enamelled,enamelled -1,gilt,gilt -3,thread,thread -1,vermeilles,vermeille -1,gilds,gild -1,cendrée,cendrée -1,spirits,spirit -2,aspalte,aspalte -17,porphyry,porphyry -1,earths,earth -1,niello,niello -2,black,black -6,gilding,gilding -8,glair,glair -1,vernice,vernice -2,purple,purple -1,porfidio,porfidio -1,colla,colla -1,stagno,stagno -1,vetro,vetro -1,purpurina,purpurina -1,solfo,solfo -1,debris,debri -1,columbine,columbine -1,pansy,pansy -1,cornflower,cornflower -3,hairs,hair -4,hair,hair -2,rue,rue -1,theriac,theriac -1,dittany,dittany -1,cardboard,cardboard -1,grès,grè -1,residue,residue -1,beef,beef -1,broth,broth -4,potin,potin -20,lute,lute -1,food,food -2,cloves,clofe -1,, -2,skin,skin -11,antimony,antimony -1,regulus,regulu -6,sandiver,sandiver -1,fruit,fruit -9,carton,carton -3,spider,spider -4,lime,lime -1,almonds,almond -1,pith,pith -1,rapeseed,rapeseed -1,bitumen,bituman -1,sheet,sheet -1,pastes,paste -5,tartar,tartar -2,cartons,carton -11,earthen,earthen -1,fenugreek,fenugreek -1,barley,barley -1,rye,rye -1,yolks,yolk -2,yolk,yolk -1,germ,germ -1,tragacanth,tragacanth -2,soldering,soldering -6,sublimate,sublimate -1,sheep,sheep -8,bone,bone -1,incense,incense -1,floret,floret -1,ferret-silk,ferret-silk -1,balls,ball -1,porkfat,porkfat -2,fat,fat -1,vermicularis,vermiculari -1,sap,sap -1,horsedung,horsedung -1,earthworms,earthworm -1,ferlin,ferlin -3,pumice,pumouse -1,weld,weld -2,florey,florey -4,cristallin,cristallin -1,aloe,aloe -1,marbles,marble -4,glues,glue -1,crayons,crayon -2,asphaltum,asphaltum -2,quill,quill -2,crêpe,crêpe -1,taffetas,taffeta -5,bistre,bistre -1,incarnadine,incarnadine -11,butter,butter -2,mortar,mortar -1,flower,flower -2,ore,ore -2,umber,umber -1,cocon.,cocon. -3,gilded,gilded -1,sumac,sumac -3,magistra,magistra -1,saltwort,saltwort -36,clay,clay -1,tuf,tuf -1,muddying,muddying -3,paste,paste -1,maple,maple -1,elm,elm -1,camphor,camphor -1,gums,gum -7,slate,slate -1,sludge,sludge -2,grindings,grinding -1,nailheads,nailhead -1,nails,nail -3,tile,tile -6,salts,salt -2,oiling,oiling -1,persicaire,persicaire -1,leads,lead -1,marrow,marrow -1,shell,shell -1,blue,blue -1,maplewood,maplewood -1,bronzing,bronzing -1,arabic,arabic -1,arrabeic,arrabeic -2,vermillion,vermillion -1,solle,solle -1,saltpetre,saltpetre -2,rainwater,rainwater -1,woods,wood -1,madder,madder -1,fustet,fustet -1,goumiche,goumiche -1,medicine,medicine -2,rosemary,rosemary -1,benzoin,benzoin -1,trwood,trwood -1,ironware,ironware -1,eggshell,eggshell -1,ardides,ardide -1,saltwater,saltwater -1,grime,grime -1,flakes,flake -3,metalline,metalline -1,k,k -3,rock,rock -3,dust,dust -1,ammoniac,ammoniac -1,mustard,mustard -1,soil,soil -1,rooftile,rooftile -1,oily,oily -1,verd,verd -1,shells,shell -1,flint,flint -3,rust,rust -1,pearled,pearled -1,felinder,felinder -1,glued,glued -2,flesh,flesh -1,flin,flin -1,fresil,fresil -1,"rowan,","rowan," -1,waxed,waxed -4,bloodstone,bloodstone -1,thunderstone,thunderstone -1,threads,thread -2,waxes,wax -1,felin,felin -1,tow,tow -1,estamiere,estamiere -1,tinning,tinning -1,fruits,fruit -1,brine,brine -2,down,down -1,emeralds,emerald -1,firestone,firestone -2,topaz,topaz -1,jacinth,jacinth -1,unleaded,unleaded -1,anthos,antho -1,ointment,ointment -1,bile,bile -1,earwax,earwax -1,foam,foam -2,gravel,gravel -1,cornaline,cornaline -2,enameling,enameling -1,stavesacre,stavesacre -1,quills,quill -1,mealworms,mealworm -1,tiles,tile -1,animal,animal -2,spat,spat -1,woollen,woollen -1,tondure,tondure -1,lucerta,lucertum -1,spalt,spalt -2,impurities,impurity -1,impurity,impurity -1,piss,piss -1,magnet,magnet -1,mineral,mineral -2,minerals,mineral -1,salty,salty -1,chestnuts,chestnut -3,feather,feather -2,enameled,enameled -1,manure,manure -1,snake,snake -1,marcasites,marcasite -1,stuf,stuf -1,mushrooms,mushroom -1,tisane,tisane -4,smoked,smoked -1,aspalt,aspalt -1,billon,billon -24,crocum,crocum -4,couleur,couleur -3,luting,luting -1,crayfish,crayfish -1,otnegra,otnegra -6,filings,filing -1,zedoary,zedoary -1,metallic,metallic -1,quarton,quarton -1,almond,almond -1,syrup,syrup -1,molds,mold -1,bullitoyre,bullitoyre -1,plants,plant -1,cheese,cheese -2,mold,mold -2,lutes,lute -1,amalgam,amalgam -1,☀,☀ -1,phlegm,phlegm -1,sol,sol -2,nastiness,nastiness -1,talcum,talcum -2,soldered,soldered -1,flowers,flower -1,letter,letter -2,cinnabar,cinnabar -1,paintbrush,paintbrush -1,charcoaled,charcoaled -2,whitening,whitening -1,electrum,electrum -1,wire,wire -1,varnishing,varnishing -2,silvered,silvered -1,bullitoire,bullitoire -2,leady,leady -1,salpeter,salpeter -2,solders,solder -1,crust,crust -1,ambergris,ambergri -1,civet,civet -1,reals,real -1,slaver,slaver -1,☉,☉ -1,pulverin,pulverin -1,perfume,perfume -1,paint,paint -1,opiate,opiate -1,ruta,rutum -1,acetum,acetum -1,grains,grain -1,aceto,aceto -2,pastel woad flowers,flower -1,leaves of mallow & gilliflower,leaves of mallow & gilliflower -1,marshmallow root,marshmallow root -1,chicken broth,broth -1,syrup of sweet jujubes,syrup -1,prunes of saint antonin,prunes of saint antonin -1,salt extracted from cabbage ash,salt -1,oil of jacob,oil -8,turpentine oil,oil -1,emeralds of brissac,emerald -1,blacksmith’s salt,blacksmith’s salt -1,venice laque platte,venice laque platte -1,counterfeit coral,coral -1,clear pitch resin,resin -1,purified resin,resin -13,walnut oil,oil -1,pestled than of glass,pestled than of glass -1,gules red enamel,gules red enamel -1,very light tammy cloth,cloth -1,subtly ground vermilion,vermilion -1,thorn branch,thorn branch -1,coarse canvas,canva -2,mastic varnish,varnish -3,venice turpentine,turpentine -1,fine turpentine oil,oil -10,cold water,water -1,coarse common turpentine,turpentine -9,linseed oil,oil -1,pix graeca,pix graeca -2,fine turpentine,turpentine -1,thick varnish,varnish -2,common turpentine,turpentine -1,"turpentine it may be, whether fine or crude",turpentine -4,spike lavender,spike lavender -3,hide glue,glue -8,turpentine varnish,varnish -4,distemper glue,glue -1,linseed varnish,varnish -18,spike lavender oil,oil -1,powdered sandarac gum,gum -2,varnish of spike lavender oil,varnish -1,lavender spike oil,oil -1,pulverized sandarac,sandarac -2,pulverized mastic,mastic -1,sieved ashes,sieved ash -1,white soap,soap -1,grains of wheat,grain -1,peeled garlic cloves,clofe -2,bread crusts,bread crust -4,black varnish,varnish -2,black pitch,pitch -1,hog’s fennel,hog’s fennel -6,soot black,black -1,varnish of iron etchers,varnish -1,quite strong vinegar,vinegar -1,pitch resin,resin -11,soft tin,tin -2,white stone,stone -1,emery putty,putty -1,venice tripoli,tripoli -1,rosette copper,copper -1,thin sand,sand -1,cuivre franc,cuivre franc -1,clean water,water -1,water of ret hide glue,water -18,looking-glass tin,tin -4,pin filings,filing -1,burnished silver,burnished silver -1,turpentine or spike lavender varnish,turpentine -21,lead white,lead -1,lamb tallow,tallow -1,venice laque platte,venice laque platte -1,"good chalk, quite white, well ground",chalk -1,gilded lead work,gilded -5,willow charcoal,charcoal -5,burnished gold,burnished gold -4,rouge clair,rouge clair -15,azur d’esmail,azur d’esmail -1,walnut or linseed oil,walnut or linseed oil -2,candy sugar,sugar -1,fine boli armeni,fine boli armeni -5,or mat,or mat -1,turpentine varnish and not spike lavender varnish,varnish -15,clear water,water -1,laque ronde,laque ronde -1,latten or iron wire,latten -1,enamel cannules,enamel cannule -1,polished marble,marble -2,gold color,gold color -5,fatty oil,oil -9,strong glue,glue -1,smoke of partridge or of yellow or red cloth,smoke -1,mine de plomb,mine de plomb -1,sheets of copper or latten,sheets of copper or latten -1,service tree wood,wood -4,fer blanc,fer blanc -7,dragon’s blood,blood -1,codfish skin,skin -1,mouth glue,glue -1,barely boiling water,barely boiling water -8,fish glue,glue -1,parchment scrapings,parchment scraping -8,white wine,wine -2,pumice stone,stone -2,good wine,wine -1,dried common walnuts,walnut -1,finely pulverized golden & yellow marcasite,finely pulverized golden & yellow marcasite -1,boli armeniae,boli armeniae -1,aquae fabrorum antiquae,aquae fabrorum antiquae -1,mellis communis,mellis communi -10,gold leaf,gold leaf -1,fig tree milk,milk -1,strongest vinegar,vinegar -1,marcasite powder,powder -1,balas ruby,ruby -7,gum water,water -9,fine gold,gold -2,argent moulu,argent moulu -1,oriental jacinth,jacinth -6,fine copper,copper -1,latten filings,filing -23,fine tin,tin -8,common salt,salt -2,vert de terre,vert de terre -2,red enamel,enamel -1,gold & silver leaf,gold -3,gum ammoniac,ammoniac -1,mottled jasper,jasper -1,filings of talc or of pins,filing -3,clear turpentine,turpentine -1,counterfeit jasper,jasper -1,wool with thick hairs,wool -1,spike lavender varnish,varnish -2,tin leaf,tin leaf -8,stil de grain yellow,stil de grain yellow -1,juice of weld,juice -1,horn used for lanterns,horn used for lantern -1,common azur,common azur -1,finely pulverized common salt,salt -3,alum water,water -1,starch glue,glue -1,dry horse dung,dung -1,"eggs, divide them in half & take the yolk out, & between the two halves of the white","eggs, divide them in half & take the yolk out, & between the two halves of the white" -1,rock water,water -1,colored water,water -1,vert d’azur,vert d’azur -3,esmail d’azur,esmail d’azur -4,egg yolk,yolk -1,azure ashes,ash -1,common aquafortis,aquaforti -2,damascus steel,steel -1,raw mutton flesh,flesh -1,pumice stone powder,powder -1,pulverized sanguine,sanguine -2,terre chimolée,chimolée -1,fuller’s earth,earth -2,white varnish,varnish -10,glair of egg,glair -1,cooked chimolée,cooked chimolée -1,peelings from the fig tree,peelings from the fig tree -1,powder of the said plaster,powder -1,plaster powder,powder -17,melted wax,melted wax -1,pestled paper,paper -2,armenian bole,bole -1,powder of the said tripoli,powder -1,yellow pearls,pearl -5,hog bristle,hog bristle -1,refired enamel,refired enamel -2,yellow arsenic,arsenic -1,sublimated arsenic,arsenic -38,sal ammoniac,ammoniac -1,stones cut in facets and flat,stones cut in facets and flat -1,engraved tai stones,engraved tai stone -1,tammy of raw silk,tammy of raw silk -2,sulfur smoke,smoke -1,yellow raw & natural silk,yellow raw & natural silk -1,raw silk,silk -1,cendrée of azure,cendrée -2,soap water,water -1,blocks of wood,blocks of wood -1,light earth,earth -1,stalks of hay or straw,stalks of hay or straw -1,branches of heather,branches of heather -4,pastel woad,pastel woad -1,paltry cloth,cloth -1,damasked cloth,cloth -1,guesde woad,guesde woad -1,green dye,dye -5,cloth waste,cloth waste -1,sandy clay,clay -8,horse dung,dung -1,artificial sand,sand -1,founders' sand,sand -6,cuttlefish bone,bone -1,lead or annealed annealed silver,lead -1,thin plate of gold,thin plate of gold -19,hot water,water -1,musked cotton,cotton -1,clove of garlic,clove of garlic -1,brittle iron,iron -1,tempered ashes,ash -4,soft iron,iron -2,quince seeds,seed -1,mucilaginous water,water -1,fine silk,silk -1,fine cotton wisps,cotton -1,hemp thread,thread -1,ordinary cannon powder,powder -2,fine rosette,rosette -1,arquebus powder,powder -1,fine metal of la large bells,metal -1,cannon powder,powder -1,metal of small bells,metal -1,fine arquebus powder,powder -2,well-gummed ink,ink -1,cat skin,skin -1,melted fresh butter,butter -1,dough to make fritters,dough -3,egg yolks,yolk -1,glass from lorraine,glass -2,plate glass,glass -1,whitened water,whitened water -1,cistern water,water -2,wheat starch,starch -1,sap squeezed or water distilled from orange peel,sap squeezed or water distilled from orange peel -1,foaming wine,foaming wine -1,candied peel,candied peel -1,orange juice,juice -1,wine foam,foam -2,black soap,soap -1,strong iron pegs,strong iron peg -2,cart nails,nail -1,substance of the pieces,substance of the piece -1,large steel dice,large steel dice -1,bits of chain,bits of chain -1,coarsely pestling pestled glass,coarsely pestling pestled glass -1,thick canvas,canva -1,buckram strip,buckram strip -3,waxed canvas,waxed -1,large strip of canvas,large strip of canva -1,cart flint stones,stone -1,very good turpentine,turpentine -2,flint stones,stone -1,primer powder,powder -1,combustible things,combustible thing -1,finest metal one can find,finest metal one can find -1,metal of a large bell,metal -2,fine metal,metal -1,best arquebus powder,powder -1,good powder,powder -5,good eau-de-vie,good eau-de-vie -3,strong vinegar,vinegar -1,crude metal,metal -1,coarsely pestled glass,coarsely pestled glass -1,a steel,steel -1,cast iron,cast iron -4,common tin,tin -1,glass-looking tin,tin -1,tin is base,tin is base -1,pierre porte morte,pierre porte morte -1,tin is fine,tin is fine -7,fine lead,lead -1,tin from england,tin -3,tragacanth gum,gum -1,paste glue,glue -1,rye flour,flour -1,bread dough,dough -1,terre emerita,terre emeritum -1,spike lavender oil varnish,varnish -1,silver leaf,silver leaf -1,clear starch water,water -1,simple paper,paper -1,terra emerita,terra emeritum -2,wine lees,wine lee -1,common eau-de-vie,common eau-de-vie -1,rouge clair enamel,enamel -1,darker dragon’s blood,blood -1,good kind of dragon’s blood,good kind of dragon’s blood -1,white clay earth,earth -1,emery stone powder,powder -2,pigeon dung,dung -1,pulverized and finely ground aes ustum,pulverized and finely ground aes ustum -8,red copper,copper -7,distilled vinegar,vinegar -1,colored waters,water -1,distilled urine,urine -2,flanders varnish,varnish -1,oil of turpentine or mastic,oil -1,white walnut oil,oil -1,rouges de mine,rouges de mine -3,white paper,paper -4,noir d’escaille,noir d’escaille -1,joiner’s glue,glue -1,pastel woad dye,dye -4,iron scales,iron scale -1,red from german,red from german -1,latten made brittle by the calamine,latten made brittle by the calamine -1,"metal, which is the substance of bells",metal -4,great metals,metal -1,tin for bells,tin -1,fine coppersmith’s rosette,rosette -2,black cherry juice,juice -1,brazilwood rosette,rosette -1,well dried between wicker,well dried between wicker -1,liquid rosette of brazilwood,rosette -1,white iron,iron -2,rough cloth,cloth -1,fine parchment,parchment -1,powdered gold or silver,gold -3,natural sulfur,sulfur -1,calf’s foot root,calf’s foot root -1,kernels of grain,kernels of grain -2,white leather,leather -1,"plain leather, such as cow or morocco",leather -1,oribus powder,powder -1,metal the bells are made of,metal the bells are made of -1,fern ashes,ash -1,glassworkers’ glass,glass -1,well-made glass,glass -1,host soaked in wine,host soaked in wine -1,capilli veneris syrup,syrup -1,wormwood powder,powder -1,pepper grains,grain -1,sufficiently tempered wine,wine -1,foil backings for the gemstones,foil backings for the gemstone -1,fresh water,water -1,decoction of wormwood,decoction of wormwood -1,very fine earth,earth -1,clear sanguine,sanguine -2,noir à huile,noir à huile -1,esmail colombin,esmail colombin -1,leaded glass,glass -1,clean glass,glass -1,gris d’escaille,gris d’escaille -1,yellow amber,amber -1,tripoli from bretagne,tripoli -1,pulverized pumice stone,stone -1,pulverized salt,salt -1,very clear esmail azuré,very clear esmail azuré -1,"marigold leaves half-dried, & twisted like a thread","marigold leaves half-dried, & twisted like a thread" -1,antique glass,glass -1,white glass,glass -1,marble stone,stone -1,corrosive water,water -1,tripoli of brittany,tripoli -1,smoke of safre,smoke -1,vapor of aquafortis,vapor of aquaforti -2,mineral salt,salt -1,transparent amber,amber -1,salt called by the english de armonic,salt -1,soft wood,wood -1,lye of lime,lye -1,lye of quicklime,lye -1,tawny dye,dye -1,lapathum acutum,lapathum acutum -1,pure scarlet pastel woad,pure scarlet pastel woad -1,white cloth,cloth -1,black cloth,cloth -1,silver filings,filing -1,gold filings,filing -1,azure in body,azure -2,white enamel,enamel -1,pistolet gold,gold -1,fine silver,silver -2,tear of mastic,tear of mastic -1,linen cloths,cloth -2,milk of the fig tree,milk -1,gilt glass,glass -1,fine laque platte,fine laque platte -1,white tin,tin -2,garlic juice,juice -1,glass pane,glass pane -1,gilding of the glass,gilding -1,root of lapathium acutum maius,root of lapathium acutum maiu -1,monk’s rhubarb,monk’s rhubarb -6,common water,water -2,very good vinegar,vinegar -1,cardona salt,salt -1,pomace soured,pomace soured -1,paste of ground enamel,paste -1,thick parchment,parchment -2,gemstone foils,gemstone foil -1,indian laque platte,indian laque platte -3,fatty earth,earth -1,burned aspalte,burned aspalte -3,calcined alabaster,alabaster -1,brick thoroughly ground,brick thoroughly ground -1,burned marrow of ox horn,burned marrow of ox horn -1,in nature,in nature -1,boiled millet grains,grain -1,well chopped lettuces,well chopped lettuce -1,fatty earths,earth -1,"earth for casting, for founders",earth -1,potter’s earth,earth -1,common delicate kind that falls under the anvil,common delicate kind that falls under the anvil -3,iron scale,iron scale -1,dung of the ewe,dung -1,charcoal powder,powder -1,colors in varnish,colors in varnish -2,tepid water,water -1,colors in turpentine & mastic,colors in turpentine & mastic -1,ground chalk,chalk -1,milk or bark of the fig tree,milk -2,starch water,water -1,sand for casting,sand -10,olive oil,oil -1,varnish of sandarac,varnish -1,quite white glue,glue -1,painters’ distemper glue,glue -2,minium from england,minium -1,sal armoniaco,sal armoniaco -1,negro di resina,negro di resina -1,lemon or orange juice,lemon or orange juice -1,varied and transmuted wine,varied and transmuted wine -1,tinted water,tinted water -1,pulverized talc,pulverized talc -8,looking glass tin,glass -1,copper shards that coppersmiths make,copper shards that coppersmiths make -1,linen cloth,cloth -1,red poppy,red poppy -1,"plant which grows in hedges, which has a stem similar to flax, a long & broad leaf like small bugloss, which has a violet flower verging on blue & is shaped like the lily flower","plant which grows in hedges, which has a stem similar to flax, a long & broad leaf like small bugloss, which has a violet flower verging on blue & is shaped like the lily flower" -1,bugloss flower,flower -1,dyes from flowers,dyes from flower -1,horse tail hair,hair -1,silk tammy,silk tammy -10,good vinegar,vinegar -1,mandrake apples,mandrake apple -1,white soporific oil,oil -2,pestled brick,pestled brick -2,white chalk,chalk -1,black pitch resin,resin -1,waxed paper,waxed -1,"strong paper, of the as of large printed books",paper -1,waxed cloth,waxed -5,oil of sulfur,oil -2,rose honey,rose honey -1,clove oil,oil -16,wheat oil,oil -1,powdered gentian,powdered gentian -1,fresh crow eggs,egg -1,oil of guaiac & of sulfur,oil -1,black leather,leather -1,fresh & good oil of sulfur,fresh & good oil of sulfur -4,rock salt,salt -1,cinnamon or clove oil,cinnamon -1,antimony oil,oil -1,root of peony,root of peony -1,root of consolida maior,root of consolida maior -1,preserve of symphytum,preserve of symphytum -1,consolida maior,consolida maior -1,wax oil,oil -1,tartar from large vessels,tartar -1,basin latten,latten -7,pestled glass,pestled glass -1,candlestick latten,latten -2,calcined pumice stone,stone -1,"pill of precipitate,","pill of precipitate," -1,mustard seed,mustard seed -1,excellent mustard,mustard -1,tammy cloth,cloth -1,tartar from montpellier,tartar -3,pulverized tartar,tartar -1,extraction of regulus,extraction of regulu -2,fine & soft tin,fine & soft tin -1,brittle one,brittle one -1,red & soft cauldron copper,red & soft cauldron copper -2,brittle tin,tin -1,square tile,tile -1,resin candle,candle -2,casting of lead,casting of lead -3,pure lead,lead -1,calcined iron oyster shell,shell -3,sand for lead,sand -1,rye straw ashes,ash -1,burnt & calcined pumice stone,burnt & calcined pumice stone -1,burnt & calcined cuttlefish bones,burnt & calcined cuttlefish bone -1,ashes of walnut tree or vine,ash -1,brittle dou tin,tin -1,resin candles,resin candle -2,river sand,sand -1,new wax,wax -1,water of the vat,water -3,river water,water -2,dry mortar,mortar -4,bread pith,pith -1,lettuce seed,lettuce seed -2,hemp seed,hemp seed -1,iron bars,iron bar -1,fine steel,steel -1,strong iron,iron -1,common iron,iron -1,very soft iron,iron -1,molten iron,iron -1,the finest steel,steel -1,purified steel,steel -3,gummed water,water -1,spike lavender &or turpentine oil,oil -1,well-gummed water,water -1,moist handkerchief,moist handkerchief -4,lamp smoke,smoke -2,wash water,water -1,black moderately thick,black moderately thick -1,good lye,lye -1,non-boiled linseed oil,oil -1,molten ♁,molten ♁ -1,female silkworm seeds,seed -1,water of sulfurous baths,water -1,good fountain or river water,good fountain or river water -1,oldest ♁,oldest ♁ -1,chicken eggs,egg -1,finer ☉ than the other one,☉ -2,white salt,salt -1,iron strip,iron strip -1,aqua regia,aqua regium -3,lean sand,sand -1,marrow from the horns of oxen,marrow -1,burnt & calcined horse bones,burnt & calcined horse bone -1,dense one,dense one -1,brittle metal comes out better than the fatty,brittle metal comes out better than the fatty -1,spongy bone,bone -1,the one from champaigne,the one from champaigne -1,fresh leaves,fresh leafe -1,white mulberry leaves,white mulberry leafe -1,sweet bread,bread -1,resin balls,ball -1,lit hay,lit hay -1,pestled herb which is called semperviva,pestled herb which is called semperviva -1,horseradish leaf,horseradish leaf -6,iron filings,filing -1,fatty red earth,earth -1,clear venice turpentine,turpentine -1,pure spike lavender oil varnish,varnish -1,rose of ghent,rose of ghent -1,gold powder,powder -1,common ashes,ash -1,white varnish of turpentine,varnish -1,pear tree,pear tree -1,plate lead,lead -1,knots of the fir tree,knots of the fir tree -1,rosette of ghent,rosette -1,pith of coarse bread,pith -1,printers’ ink,ink -1,pulverized terra emerita,pulverized terra emeritum -1,walnut tree,walnut tree -1,"small, very delicate skins of lambs and young goats","small, very delicate skins of lambs and young goat" -1,copperas black,black -1,fine fatty earth,earth -1,hot iron,iron -1,thoroughly thinned and clear melted resin,resin -2,florence lake,lake -1,fabric of cambray,fabric of cambray -1,almond oil,oil -1,walnuts’ skin,skin -1,women’s milk,women’s milk -1,black of charcoal from the mines,black -1,burnt bones of the feet of oxen,bone -1,ordinary charcoal,charcoal -1,peach pits,peach pit -1,burnt ivory,ivory -1,palma christi seed oil,palma christi seed oil -1,bristles of beech martens & weasels & small animals that make musk,bristles of beech martens & weasels & small animals that make musk -1,squirrel’s tail hair,hair -2,azur d’acre,azur d’acre -1,bristles of the oldest rats,bristles of the oldest rat -1,porcupine quills,quill -2,charcoal black,charcoal -1,thick cloth,cloth -1,silk cloth,cloth -12,white wax,wax -1,calcined pulverized pglass,calcined pulverized pglass -1,peeled almonds,almond -1,palma christi,palma christi -1,common varnish,varnish -1,lead filings,filing -1,"mastic, pulverized & passed delicately through a sieve",mastic -1,mastic pulverized,mastic -1,white turpentine oil,oil -1,soapy water,water -1,spike lavender on the oil,spike lavender on the oil -1,rose alexandrine,rose alexandrine -1,vine water,water -1,rat whiskers,rat whisker -1,clear turpentine varnish,varnish -1,azure ash,ash -1,oil than that of walnut,oil -1,lead ore,lead -1,lead from flanders,lead -1,common charcoal,charcoal -1,pit coal,pit coal -1,peach pit,peach pit -1,soft wood charcoal,charcoal -1,broom flower,flower -1,brazilwood dye,dye -1,cow dung,dung -1,clearest walnut oil,oil -1,calcined cristallin,cristallin -4,yellow ochre,ochre -3,oiled paper,oiled -2,orberé grain,grain -1,calcined & ground cristallin,calcined & ground cristallin -1,washings of oil,washings of oil -1,& a bit of yellow ocher,& a bit of yellow ocher -2,peelings of the fig tree,peelings of the fig tree -2,yellow ocher,yellow ocher -3,ocre de ru,ocre de ru -2,lamp black,black -2,or moulu,or moulu -1,water from a honey beehive,water -1,sloes from bushes,sloes from bush -1,olive tree leaves,olive tree leafe -1,hot bread,bread -1,loaves of bread freshly drawn from the oven,loaves of bread freshly drawn from the oven -1,pomegranate flowers,flower -1,very thin sheets of lead,very thin sheets of lead -1,rat hairs,hair -1,hair from the tail of a squirrel’s fur,hair -1,hair of the petit-gris,hair -1,bristles of a rat’s whiskers,bristles of a rat’s whisker -1,another fragrant one that resembles olive oil,another fragrant one that resembles olive oil -1,bones of the foot of oxen for sand,bone -1,sand of bone,sand -1,neatest sand that can be found for copper,sand -1,huiles d’essence,huiles d’essence -1,silvered & burnished paper,silvered -1,very clear lantern horn,horn -1,simple carton,carton -1,the champagne one that painters use,the champagne one that painters use -1,wax candle,candle -1,pure tin pure or or lead,tin -1,salt of saltwort,salt -1,common glass,glass -1,salt of tartar,salt -1,pestled slate,slate -1,powdered chalk,chalk -1,finely pulverized tripoli,tripoli -1,common marble,marble -1,common glass sand,sand -1,burnt linen,linen -1,sand near my area,sand -1,lean soils,lean soil -1,sand from corp rock,sand -1,human bones,bone -2,moistened sand,moistened sand -1,slightly coarser sand,sand -2,fixed quicksilver,quicksilver -1,burned linen,burned linen -2,lean sands,sand -1,calcined vitriol,vitriol -2,substance of skillets,substance of skillet -1,terres bolvenes,terres bolvene -1,pure wine,wine -1,pure latton used for trebuschets,pure latton used for trebuschet -1,beaten egg glair,beaten egg glair -1,molded tripoli,molded tripoli -1,cendrée earth,cendrée -1,the one from the sea,the one from the sea -1,fatty & strong earths,fatty & strong earth -1,"sand from oxen feet, burned twice & finely ground","sand from oxen feet, burned twice & finely ground" -1,sheep foot bones,bone -1,boiled wine with elm tree roots,wine -1,from sandy paths dried out by the sun,from sandy paths dried out by the sun -1,stones of tuf,stone -3,burned felt,felt -1,well ground ceruse,ceruse -1,very fine sands,sand -1,common earth,earth -1,those of oxen foot,those of oxen foot -1,old printers' type,old printers type -1,sand of calcined glass,sand -1,fat of a young goat kid,fat -1,wood with streaked grain,wood -1,root of the maple,root of the maple -1,eau panée,eau panée -1,burning paper,paper -1,sweet new wine,wine -1,pulverized subtly mastic,mastic -1,those of cutlers,those of cutler -1,pierres de filieres,pierres de filiere -1,old horseshoes,old horseshoe -5,wine boiled with elm root,wine -1,grindings from sharpening large scissors & large knives,grinding -1,substance of the trebuschets,substance of the trebuschet -1,bone marrow,marrow -1,iron or pin filings,iron -1,blue varnish,varnish -1,blue of flowers florey or of flanders,blue -1,terroy merita,terroy meritum -1,ash of vine shoots,ash -1,goldsmith’s water,water -1,well water,water -1,glue of partenay or parchment,glue -1,white of one egg,white -1,varnishvenice turpentine,turpentine -1,oil of perolle petrolle,oil -1,spike lavender oil.,oil -3,copper filings,filing -1,good vermilion,vermilion -1,well-pestled sandarac,sandarac -1,crust of bread,crust -1,d’araucq rock alum,rock -1,flour glue,glue -1,quite clear gum water,water -2,red varnish,varnish -2,yellow varnish,varnish -2,gum arabic,arabic -1,well beaten saffron,saffron -1,fine pitch,pitch -1,green wax,wax -1,resins resin pitch,pitch -1,red wax,wax -1,clear glue,glue -1,quickt aiantsilver,quickt aiantsilver -1,currier's water,water -1,green copperas,coppera -6,glass alum,glass -1,yellow gold,gold -1,fig tree,fig tree -1,the white of one egg,white -1,partridge feather,feather -3,very clear glue,glue -1,fig tree wood,wood -1,or moleu,or moleu -1,white vinegar,vinegar -1,old urine,urine -1,guesdre woad,guesdre woad -1,"orange peel,","orange peel," -4,terra merita,terra meritum -1,lit charcoal,charcoal -1,benzoin just as coarsely pestled,benzoin -2,petrolle oil,oil -2,white copperas,coppera -1,sang de raiye da rac,sang de raiye da rac -1,sang dea raiec,sang dea raiec -1,very strong vinegar,vinegar -1,tooth of a wolf or dog,tooth of a wolf or dog -1,currier’s’ black,currier’s’ black -1,grais powder,powder -1,water for disease of the eyes,water -2,fountain water,water -1,calcined tin,calcined tin -1,sang darage darac,sang darage darac -1,glue quite clear,glue quite clear -1,any other vapor,any other vapor -1,toast with butter,toast with butter -1,pig’s bladder,pig’s bladder -1,pulverized antimony,antimony -1,old scrapings or thin plates of iron,old scrapings or thin plates of iron -1,iron nail heads,iron nail head -1,iron fittings,iron fitting -1,fine powder of quicklime,powder -1,stones of which are made the sharpening stones or files of barbers,stones of which are made the sharpening stones or files of barber -1,calcined oyster shells,shell -1,the finest sand you have,sand -1,fixed mercury,mercury -1,"tanner’s earth, or the one with which potters make a whitening on pots",earth -1,paper from florence,paper -1,whitish brick,brick -1,sand for b lead,lead -1,clay earth with which one can make tiles,earth -1,calcined black pebbles from the river,calcined black pebbles from the river -1,black lead of saulmon,lead -1,glair of eggs,glair -1,molten lead,lead -1,candle black,black -2,fine latten,latten -1,wool stuffing,wool -1,latten of potin,latten -1,fine latten of pots,latten -1,quick lime,lime -1,grey soot from the furnace of the silversmiths,soot -1,grey soot of locksmiths,soot -1,dross of iron,dross of iron -1,burnt hat felt,felt -2,burnt bone,bone -5,iron dross,iron dross -1,hat felt burnt,felt -1,well beaten glair of eggs,glair -1,charcoal of vine shoots,charcoal -3,clay earth,earth -1,finely pestled slate,finely pestled slate -1,burnt black tracing paper,paper -1,"little-cooked tile, ground",tile -1,tracing paper burnt,tracing paper burnt -1,burnt horse dung,dung -1,alabaster calcined,alabaster calcined -1,soft & fine sand,sand -1,coarse sand,sand -1,tartar oil,oil -2,eau magistra,magistra -1,waters of the above mentioned salts,water -3,sand from thoulouse,sand -1,sand from a mine in thoulouse,sand -2,natural sand,sand -1,pulverized sandiver,sandiver -3,fat sand,sand -1,fat metal,metal -1,well burned bone of oxen feet,well burned bone of oxen feet -1,felt also well burned,felt also well burned -1,"bone of oxen feet, very burned & pulverized",bone -1,the one of oak or beech,the one of oak or beech -1,charcoal for pouncing,charcoal -6,salt water,water -1,the one of willow,the one of willow -1,burnt oysters,burnt oyster -3,soft lead,lead -1,clear walnut oil,oil -1,well-beaten glair of egg,glair -1,aspic oil,oil -1,water of glair of egg,water -1,the one of the mine,the one of the mine -2,sel de verre,sel de verre -1,green varnish,varnish -1,"earth with which they make the first layer of the cope of pieces, & bells, & all other pieces",earth -3,beaten glair of egg,glair -1,copper for cauldrons,copper -4,sand from the mine,sand -1,"bone of oxen feet, burned, pulverized","bone of oxen feet, burned, pulverized" -1,pulverized bone,bone -1,material of a skillet,material of a skillet -1,bone sand,sand -1,experimented sands,sand -1,substance of a skillet,substance of a skillet -1,excellent sand for lead,sand -1,potin from seringue,potin -1,burned bone,burned bone -1,fine casting sand,sand -1,the one which is found in a vineyard near puy david,the one which is found in a vineyard near puy david -1,"the one is from the touch, near sainct michel & toward blagnac, in a vineyard that is quite high up","the one is from the touch, near sainct michel & toward blagnac, in a vineyard that is quite high up" -1,very burnt sand,sand -1,very finely ground sands,sand -1,burned earth,burned earth -1,roots of a young elm,roots of a young elm -1,sand of the mine of thoulouse,sand -1,melted resin,resin -1,casting sand coming from the mine,casting sand coming from the mine -1,glair of egg passed through a sponge,glair of egg passed through a sponge -1,sand from pulverized rock salt,sand -1,mineral sand,sand -1,wheat flour,flour -1,fat sands,sand -1,artificial sands,sand -1,sand of burnt ox bones and rock salt,sand -1,bone of the foot of oxen,bone -1,"sal ammoniac, well pulverized","sal ammoniac, well pulverized" -1,"alabaster, pulverized",alabaster -1,salts appropriate for metals,salt -1,gummed or pure water,gummed or pure water -1,"oil either of olive, walnut, or even better spike lavender",oil -1,glassmakers’ white sand from the mine,sand -1,"sand, white mai, like salt",sand -1,pulverized & finely ground iron dross,pulverized & finely ground iron dross -2,calcined slate,slate -13,crocum ferri,crocum ferri -1,the one of the s mines,the one of the s mine -1,"linen, or burned felt",felt -1,ashes of paper,ash -1,sand from a mine,sand -1,terre fondue of potters,terre fondue of potter -1,pulverized willow charcoal,charcoal -1,willow charcoal powder,powder -1,"founder’s earth, which founders use",earth -1,sand from river tellins and mussels,sand -1,impalpable white sand,sand -1,old water from farriers,water -1,vitriol of saltpetre,vitriol -1,congealed mercury,mercury -1,white ash of all woods,ash -1,finely pulverized quicklime,quicklime -1,well pulverized tallow,tallow -1,sap green,sap green -1,dog skin,skin -1,black stone,stone -1,"very even steel, & well filed","very even steel, & well filed" -1,not quite lukewarm aquafortis,aquaforti -26,iron wire,wire -1,gummed wax,gummed wax -1,annealed iron wire,wire -1,dogfish skin,skin -1,thin canvas,canva -1,better steel & iron,steel -1,pulverized emery,pulverized emery -1,thin yellow canvas,canva -1,sage leaf,sage leaf -1,good calf skin,skin -1,black thread,thread -1,calf or sheep leather,leather -1,threads of gold & of fine & false silve,thread -1,plain canvas,canva -1,canvas yellowed with chalk,canvas yellowed with chalk -1,thunder stone,stone -1,lightly lukewarm water,water -1,willow wood,wood -1,pulverized rosin,rosin -1,sharpening stone,sharpening stone -1,sheep skin,skin -1,dry chalk,chalk -1,beech wood,wood -2,hot charcoal,charcoal -1,walnut olive oil,oil -1,white linen cloth,cloth -1,silver foil,silver foil -1,subtly ground mastic,subtly ground mastic -1,oil of turpentine or of spike lavender,oil -1,amber pulverized,amber pulverized -1,pure & fine tin,pure & fine tin -1,tinning done in leaf,tinning done in leaf -1,hare skin,skin -1,metals already alloyed,metals already alloyed -1,earth bourre bolvene,earth bourre bolvene -1,burnt earth,earth -1,white sand,sand -1,latten from a candlestick,latten -1,lean white sand,sand -1,orpiment in leaf form,orpiment -1,ground metals,metal -1,ground cristallin,cristallin -1,clear & white turpentine oil,clear & white turpentine oil -1,oil panel,oil panel -1,or on mat,or on mat -1,thick glass,glass -1,large panes of glass,large panes of glass -2,white calcined pebbles,pebble -1,calcined saltpeter,calcined saltpeter -2,alkali salt,salt -1,"good minium, not adulterated by brick",minium -1,"white pebbles that are found by the rivers & among the sand bank, & paths, which are somewhat transparent",pebble -1,vitrified minium,minium -1,calcined pebbles,pebble -1,colored glass,glass -1,slightly burnt tartar,tartar -1,melted copper,melted copper -1,rubified antimony,antimony -1,pumice stone calcined & pulverized & tr with three parts of minium,pumice stone calcined & pulverized & tr with three parts of minium -1,fire stone,stone -1,stone pulverized,stone -1,very pulverized yellow amber,amber -1,medicinal gums,gum -2,coarse salt,salt -1,rapeseed oil,oil -1,rock alum,rock -1,ciment royal,ciment royal -1,foil backing for topaz,foil backing for topaz -1,first substance of wine,first substance of wine -1,newest wax,wax -1,ivy leaves,ivy leafe -1,soft & white ointment,ointment -1,new wooden,wooden -1,holy water,water -1,new water,water -1,first water,water -1,water of sublimate,water -1,chicken gut,chicken gut -2,fine sand,sand -1,foam of urine,foam -1,quite clean & polished iron,quite clean & polished iron -1,sweet boutteure,sweet boutteure -1,wheat flower,flower -1,egg oil,oil -1,very soft clay,clay -1,scales of pure silver & of gilt silver,scales of pure silver & of gilt silver -1,slip of linen,slip of linen -1,very soft thread,thread -1,reheated plaster,plaster -1,chopped sheep’s heart,chopped sheep’s heart -1,ants with soil,ants with soil -1,most excellent sand one can find for molding in a frame,sand -1,"aspalte is, which is found in germany","aspalte is, which is found in germany" -1,sand for molding flowers & leaves & delicate things,sand -1,plaster of paris,plaster -1,ground raw plaster,plaster -11,sal ammoniac water,water -20,feather alum,feather -1,shell of crabs & crayfish,shell -1,founder’s earth of the founders of great works,earth -1,vini spiritum,vini spiritum -1,white c silk,silk -1,liquid sand,sand -1,the most excellent sand that can be found for lead,sand -1,melted copper and latten,melted copper and latten -3,fat earth,earth -1,wire of the same metal,wire -1,whitish stone,stone -1,plaster pulverized & reheated,plaster pulverized & reheated -1,good feather alum,feather -1,common silver,silver -1,the one white que v in powder that apothecaries sell,the one white que v in powder that apothecaries sell -1,greasy leather,leather -1,muddy & clean water,muddy & clean water -1,chalk from champagne,chalk -1,muddy water,water -1,small stones,stone -2,cooked plaster,cooked plaster -1,bone of hart,bone -1,lukewarm water,water -1,archal wire,wire -1,white & yellow marcasites,white -2,fresh & damp earth,fresh & damp earth -1,fine and new lead,lead -1,yellow filth,filth -1,iron wire is firmer,iron wire is firmer -1,that of latten,that of latten -1,pulverized sal ammoniac,ammoniac -1,pestled tiles,pestled tile -5,wetted sand,wetted sand -1,the one of latten,the one of latten -1,grain of millet,grain -1,strings of spinets,strings of spinet -1,cake of earth,cake of earth -1,common fountain water,water -1,pureed broth,broth -1,clear mustard,mustard -17,tempered sand,sand -1,wet sand,sand -1,cittern strings,cittern string -1,burnt bones,bone -1,tin alloyed with lead,tin -1,alloyed tin,tin -1,lead alloyed with tin,lead -1,wet alum,wet alum -1,sand of plaster,sand -1,silver strips,silver strip -1,aquafortis d,aquafortis d -1,ciment real,ciment real -1,common plaster,plaster -1,new leather,leather -1,parings of the feet of field mice,parings of the feet of field mouse -1,old leather,leather -1,sal ammoniac water among the common,water -1,oil of sulfur & turpentine,oil -1,calcined bones of the animal,bone -1,sand that was used,sand -1,blood of snakes,blood -1,mother of pearl,mother of pearl -2,good plaster,plaster -1,heated parchment,parchment -1,compound of tin & fine latten,compound of tin & fine latten -1,old vine stocks,old vine stock -1,stones made from water,stone -1,white coral,coral -1,paper pestled,paper pestled -1,fantastical pieces of wood,fantastical pieces of wood -1,sulfurous marcasites,marcasite -1,potirons of trees,potirons of tree -1,firm fine tin,tin -1,pitch rosin,rosin -1,excellent sand,sand -1,"lead, fine & new",lead -1,sand used for the noyau,sand -1,smoke of a tallow candle,smoke -1,sand that was used in the reheated noyaulx,sand -1,water moderately salty,salty -1,"sand, the finest that you can",sand -1,charcoal pulverized,charcoal -2,pulverized charcoal,charcoal -1,perfect sand for the frame,sand -1,sand that you use for the noyau,sand -1,good tin,tin -1,grain of wheat,grain -1,pure aspalte,aspalte -1,wet flour,flour -1,billon silver,silver -1,sheets of gemstone foils,sheets of gemstone foil -1,common sand,sand -1,common sand of goldsmiths,sand -1,sand for casting in gold,sand -1,branch of wormseed,branch of wormseed -1,mutton heart,mutton heart -1,green fabric,green fabric -1,well minced flesh with the yolk of a hard-boiled egg,flesh -1,live mealworms,mealworm -1,delicate flesh,flesh -1,meat & the egg,meat & the egg -1,needle filings,filing -1,good quicklime,quicklime -4,aes ustum,aes ustum -5,melted silver,melted silver -1,"small filings of latten of thin copper, u e antimony, sublimate, finely pulverized","small filings of latten of thin copper, u e antimony, sublimate, finely pulverized" -1,sand with which goldsmiths buff enamels,sand -1,"sand, the leanest & driest you can find","sand, the leanest & driest you can find" -1,any lean sand that does not hold together,sand -1,residue of common vinegar,residue -1,leaves from vine,leaves from vine -1,alloyed silver is better for casting than the fine one,alloyed silver is better for casting than the fine one -1,feather alum reheated,feather alum reheated -1,thin mustard,mustard -1,"pure feather alum, reheated & pulverized",feather -1,thick sauce,thick sauce -1,reheated brick,brick -1,sandy earth,earth -1,teston silver,silver -1,silver from the capital,silver -1,not fine silver but alloyed,silver -2,alloyed silver,silver -1,good lute,lute -1,cloth waste which founders use to cast their cannons,cloth waste which founders use to cast their cannon -1,fresh sand,sand -1,gold coins,gold coin -1,broken steel,steel -1,"earth mixed with dung or founder’s earth, that artillery founders use",earth -3,melted metal,melted metal -1,coarse common salt melted,coarse common salt melted -2,raw tartar,tartar -1,salts sublimated,salts sublimated -1,fine copper filings,filing -1,metallic grain,grain -1,good buttered toast,good buttered toast -1,white arsenic,arsenic -1,glued to the quarton,glued -1,"tin, very little alloyed with lead","tin, very little alloyed with lead" -1,grains of gold,grain -2,alloyed gold,gold -1,sand of the second cast,sand -2,sand of noyau,sand -1,"transparent grey plaster is not strong, but a good one is one that, being tempered, is white","transparent grey plaster is not strong, but a good one is one that, being tempered, is white" -1,melted iron,melted iron -1,sugar melted in water,sugar melted in water -1,well clarified sugar,sugar -1,iron rust,rust -3,hot ashes,ash -1,very hot wax,wax -1,oil of brick,oil -1,clear sand,sand -1,oil of petrol or sulfur,oil -1,animal bones,bone -1,earth that founders use to braze or solder,earth -1,sifted ash,ash -1,crucible bottoms,crucible bottom -1,terre bolvene,terre bolvene -1,sandy clay earth,earth -1,founders’ earth,earth -1,above mentioned founders’ earth,above mentioned founders’ earth -1,ground borax,borax -1,adulterated silver,silver -1,"arsenic & two times as much of raw tartar, coarsely pulverized",arsenic -1,"gold and silver, melted","gold and silver, melted" -1,small stone of pulverized borax,stone -1,lean delicate sand,sand -1,silver finer than the alloy from the capital and like the real,silver finer than the alloy from the capital and like the real -1,common bullitoyre,bullitoyre -1,burned tartar,burned tartar -1,water of bullitoyre,water -1,alloy of teston,alloy of teston -2,base silver,silver -1,water of tartar,water -1,white lead,lead -1,cendré of azure,cendré of azure -1,coarse linen,linen -1,iron or latten wire,wire -6,latten wire,wire -1,sieved fine hair of cloth waste,hair -1,iron points,iron point -1,quite good vinegar,vinegar -1,mixed tin,tin -3,candle smoke,smoke -2,boiling water,water -2,melted sulfur,sulfur -1,common sand from the mine,sand -1,steel fillings & needles,steel fillings & needle -1,filings of needles,filing -1,very finely ground ceruse or lead white,ceruse -2,hard wax,wax -1,sand of crocum,sand -1,good strong vinegar,vinegar -1,white thick which saliva that is found on the teeth,white thick which saliva that is found on the teeth -1,little spangle of gold,little spangle of gold -1,soldering gold,soldering -1,boiled water of quince seed,water -1,brittle melted gold,brittle melted gold -1,verd de terre,verd de terre -1,plate of lead,plate of lead -1,very yellow latten,latten -1,strong yellow latten,latten -1,german tokens,german token -2,huile tingente,huile tingente -1,fresh calamine,calamine -1,yellowed latten,yellowed latten -1,nails of rosette,nail -1,prepared tutty,prepared tutty -1,pig fat,fat -1,calamine smoke,smoke -1,soft latten,latten -1,strong smoke,smoke -1,pure red copper from a cauldron or other thin works,copper -2,hot ash,ash -1,☿ sublimate of venice,sublimate -1,arsenic sublimate,sublimate -1,pieces of the molds that have been used,pieces of the molds that have been used -1,sulfured black wax,sulfured black wax -1,scrapings of the mold,scrapings of the mold -1,thick bones,bone -1,grey earth,earth -1,sand for molds of flat medals,sand -2,fresh clay,clay -1,spat from germany,spat -1,the yellow,the yellow -1,counterfeit diamonds put in a work,counterfeit diamonds put in a work -1,false stones,stone -1,black modeling wax,wax -2,written paper,paper -1,new & unadulterated lead,lead -1,plates of copper,plate -1,new lead,lead -1,sheets of copper,sheets of copper -1,hard wood,wood -2,black sulfured wax,wax -1,pestled charcoal,charcoal -1,water so hot,water -1,"charcoal, pestled & finely passed through a linen","charcoal, pestled & finely passed through a linen" -2,white plaster,plaster -4,modeling wax,wax -1,the aforesaid pulverized charcoal,charcoal -1,whitened latten wire,whitened latten wire -1,thick thread,thread -1,white bones,bone -1,white of ceruse,white -1,goldsmith’s cement,cement -1,yellow potter’s earth,yellow potter’s earth -1,common carton,carton -6,melted butter,melted butter -1,wetted sand for noyau,wetted sand for noyau -1,tondure of cloth,tondure -1,lean earth of which the founders of artillery & bells make their trusseaulx and molds,lean earth of which the founders of artillery & bells make their trusseaulx and mold -1,discarded cloth waste,discarded cloth waste -1,warm manure,manure -1,wheat chaff,wheat chaff -1,good filings,filing -1,leaves & sheets of silver,leaves & sheets of silver -1,some small,some small -1,grain of rapeseed,grain -1,grain of yellow millet,grain -1,grain of large amaranth,grain -1,thicker tempered sand,sand -1,thick sand,sand -2,soft clay,clay -1,thick iron wire,wire -1,rather strong iron,iron -1,pure silver,silver -1,very base solder,solder -1,old k,k -1,"pulverized calamine, raw & pure",calamine -1,sour latten of candlesticks,latten -1,soft latten of skillets,latten -2,melted glass,glass -1,turmeric root,turmeric root -1,strong plaster,plaster -1,soap from venice,soap -1,bad linen,linen -1,gold from the rhine,gold -1,base gold from germany,gold -1,spangle gold,gold -1,fine alloy,fine alloy -1,very thin silver sheet,sheet -1,very strong wax,wax -1,glowing charcoal,glowing charcoal -1,very finely ground iron scales,very finely ground iron scale -1,sand which served for the molds,sand -2,common lute,lute -1,ashes of the wax,ash -1,iron wires,iron wire -2,black wax,wax -1,molding sand,sand -1,gilded leather,gilded -2,iron plates,plate -1,black oil,oil -1,white false stones,stone -1,common oil,oil -1,halves of well-rounded peas,halves of well-rounded pea -1,biggish bones,bone -1,delicate plate of lead,delicate plate of lead -1,dried glair of egg,glair -1,warm water,water -1,crushed chalk,chalk -1,alloyed lead,lead -2,warm urine,urine -1,sheets of lead & copper,sheets of lead & copper -1,well-ground iron scales,well-ground iron scale -1,gold as gilding,gold -1,good lime,lime -1,silver from real,silver -1,metal filings,filing -1,the one of gold,the one of gold -1,tin and lead filings,filing -1,one of silver,one of silver -1,tinned latten,latten -1,well-ground ceruse,ceruse -1,colored wax,wax -1,good aquafortis,aquaforti -1,amalgamated gold,gold -1,pork fat,fat -1,window glass from lorraine,glass -1,spinet strings,spinet string -1,"wax, melted",wax -1,cuttlefish bones,bone -1,"gold, thinly beaten esp & well burnished with a chaple","gold, thinly beaten esp & well burnished with a chaple" -1,gold ingot,gold ingot -1,good ashes,ash -1,spinet string,string -1,swine bristle,swine bristle -1,paste of flour,paste -1,cotton cloth,cloth -1,small grains of ☿,grain -1,charcoal of peach tree pits,charcoal -1,natural flower or leaf,flower -1,lightly ground minium,minium -1,ox foot bone,bone -1,very hot melted wax,wax -1,wires of latten.,wires of latten. -1,stone plaster,plaster -1,the one of paris & spain,the one of paris & spain -1,sand for flowers,sand -1,liver or lung of a cow or sheep,liver or lung of a cow or sheep -1,stuffing cloth,stuffing cloth -1,gip mat,gip mat -1,alume jameni,alume jameni -1,sand de noyau dalu of gip of lateribus,sand de noyau dalu of gip of lateribus -1,sand for frames,sand -1,pieces of molds,pieces of mold -1,rusty filings,filing -1,rotten wood,wood -1,"the one which is white, light like a sponge","the one which is white, light like a sponge" -1,wheat starch from england,starch -1,flower oil,oil -1,ben oil,oil -1,white amber,amber -1,levant bole,bole -1,crushed aes ustum,crushed aes ustum -1,sous from france,sous from france -1,leady silver,silver -1,sous from spain,sous from spain -1,coined silver,coined silver -1,plump & thick felt,felt -1,bad sand,sand -1,gummed modeling wax,wax -1,fat plaster,plaster -1,iron or steel wire,wire -1,lute of plaster that has been used for molds,lute -1,lime mortar,mortar -1,veins of wax,veins of wax -1,caput mortuum,caput mortuum -1,aquafortis of vitriol,aquaforti -1,"plates of wax, cork, & wood",plate -1,pressed paper,paper -1,feather quill,quill -1,plate of cork,plate of cork -1,cake of wax,cake of wax -1,old cauldron,old cauldron -1,good great grain powder,powder -1,gilded silver,gilded -1,very hard wax,wax -1,black calcined river pebbles,pebble -1,stone from istre,stone -1,wetted sand # like for noyau,wetted sand # like for noyau -1,transparent wax,wax -1,black wax mixed with sulfur,black wax mixed with sulfur -1,untempered steel,steel -1,steeled iron,steeled iron -1,red tin,tin -1,delicate straw,straw -1,thin wire of latten,wire -1,scabious or bugloss water,water -1,thoroughly tempered wine,thoroughly tempered wine -1,baccis juniperi,baccis juniperi diff --git a/thesaurus/measurement.csv b/thesaurus/measurement.csv deleted file mode 100644 index f689ade..0000000 --- a/thesaurus/measurement.csv +++ /dev/null @@ -1,373 +0,0 @@ -freq,verbatim_term,prefLabel_en -6,grains,grain -1,|ʒ|,|ʒ| -20,hours,hour -22,℥,℥ -41,lb,lb -7,hour,hour -21,ounce,ounce -2,bucket,bucket -1,lbs,lb -17,ounces,ounce -25,half,half -1,pace,pace -32,days,day -3,dozen,dozen -2,dose,dose -1,ʒ,ʒ -2,cane,cane -1,livres,livre -1,canne,canne -4,foot,foot -3,month,month -11,pans,pan -1,shovels,shovel -4,pan,pan -2,handfuls,handful -12,quintals,quintal -1,biggest,biggest -2,months,month -1,caliber,caliber -2,balls,ball -1,ball,ball -1,ladle,ladle -10,quintal,quintal -1,league,league -9,part,part -6,paces,pace -1,escutcheon,escutcheon -4,lines,line -3,pounds,pound -2,ladles,ladle -1,bundle,bundle -1,paniers,panier -1,panier,panier -1,tablets,tablet -1,plates,plate -7,finger,finger -4,line,line -19,fingers,finger -6,parts,part -2,empan,empan -1,canes,cane -3,feet,feet -1,kegs,keg -15,day,day -1,fingers',finger -1,arm's,arm -2,drops,drop -6,night,night -1,year,year -1,aulne,aulne -1,locks,lock -1,dour,dour -5,quarter,quarter -1,fifth,fifth -2,years,year -1,coats,coat -1,hora,hora -6,drop,drop -2,deniers,denier -2,inches,inch -3,sous,sou -2,spoonful,spoonful -1,carat,carat -1,week,week -1,quarters,quarter -1,weeks,week -1,once,once -1,leagues,league -1,pecks,peck -1,pint,pint -1,liards',liard -2,half-septier,half-septier -2,pound,pound -1,deniers'-worth,deniers-worth -1,half-septiers,half-septier -5,quart,quart -3,drams,dram -1,chopin,chopin -2,ana,ana -1,proportion,proportion -1,carolus,carolu -1,dozens,dozen -2,quarteron,quarteron -1,one-third,one-third -1,length,length -1,pauses,pause -1,gros,gro -2,grain,grain -1,pots,pot -1,lb.,lb. -1,spoonfuls,spoonful -1,infusions,infusion -1,infusion,infusion -1,paternoster,paternoster -2,crucibles,crucible -1,pot,pot -1,thumb,thumb -1,thumbs,thumb -1,gold,gold -1,hourglass,hourglass -2,denier,denier -1,morning,morning -1,pea,pea -1,reals,real -4,quarter part,part -1,a quarter of an hour,quarter -1,double handful,double handful -1,paternoster beads,paternoster bead -2,half a day,day -1,a good quarter of an hour,quarter -1,the size of a walnut,the size of a walnut -1,middle of the sheet,middle of the sheet -1,at the end of a table,at the end of a table -2,little finger,finger -4,half a lb,lb -5,half an ounce,ounce -1,half a walnut shell,half a walnut shell -1,size of a carnation pot,size of a carnation pot -1,for one night,for one night -1,six times as much,six times as much -1,a sixth part,part -1,eighth part,part -1,lb t.,lb t. -1,livres per canne,livre -1,pan & a half,pan -1,one & a half quintal,one & a half quintal -1,needle’s worth,needle’s worth -1,thickness of two balls,thickness of two ball -1,thickness of one ball & two thirds,thickness of one ball & two third -3,up to the escutcheon,up to the escutcheon -1,"at the breech, 3 balls, & 2 in front","at the breech, 3 balls, & 2 in front" -1,at the breech it has three balls & two in the front,at the breech it has three balls & two in the front -1,diameter of a ball & a half,diameter of a ball & a half -1,width of two balls & a quarter of a ball,width of two balls & a quarter of a ball -1,up to the top of the escutcheon,up to the top of the escutcheon -1,three parts of rosette & one of the fine metal of la large bells,part -1,a half league,league -1,king’s inches,inch -1,the length of 4 balls,length -1,"lb, according to the king’s ordinance, per quintal",lb -1,lb per quintal,lb -1,thumb’s breadth,thumb’s breadth -1,3 balls thick,3 balls thick -1,pan of montpellier,pan -1,king’s pan,pan -1,one & a half of,one & a half of -2,three balls at the breech & two in front,ball -1,thickness of half a ball,thickness of half a ball -1,thickness of three balls,thickness of three ball -1,thickness of two of its balls & esthe threeird part of of a ball,thickness of two of its balls & esthe threeird part of of a ball -1,thickness of three balls at the breech & at the front of two balls,thickness of three balls at the breech & at the front of two ball -1,thickness of two of its balls & esthe three third s part of a ball,thickness of two of its balls & esthe three third s part of a ball -1,at the breech three balls,at the breech three ball -1,thickness of f five balls,thickness of f five ball -1,half ladle,ladle -1,one quintal of metal for two of rosette,quintal -5,as much of one as of the other,as much of one as of the other -1,thickness of a ball & two of three parts,thickness of a ball & two of three part -1,thickness of one ball & two to of the three parts,thickness of one ball & two to of the three part -1,width of one ball & a third of a ball,width of one ball & a third of a ball -1,3 balls & a twelfth part of a ball,ball -1,thickness of 4 balls,thickness of 4 ball -1,king’s caliber,caliber -1,per day,per day -1,at the breech 3 balls,at the breech 3 ball -1,quintals & a half,quintal -1,third part of a ball,part -1,thickness of b two balls &l one of the three parts of one ball,thickness of b two balls &l one of the three parts of one ball -1,at the breech it has three balls & two in front,at the breech it has three balls & two in front -1,required distance,required distance -5,as much of one as the other,as much of one as the other -1,king's foot,foot -1,twelfth part of the ball of the cannon,part -1,two times longer than the sausage,two times longer than the sausage -1,twice the back edge of a knife,twice the back edge of a knife -1,by the width of one finger,by the width of one finger -1,the thickness of a swan’s quill,the thickness of a swan’s quill -1,width of two gabions,width of two gabion -1,montpellier pans,pan -2,sufficient quantity,sufficient quantity -1,a long time,a long time -1,rosary beads,rosary bead -1,in winter,in winter -2,in summer,in summer -1,width of ten b straws,width of ten b straw -1,the back of a knife,the back of a knife -1,like a toothpick,like a toothpick -1,as a toothpick,as a toothpick -1,from the tip of his ear to the tip of his nose,from the tip of his ear to the tip of his nose -1,width of the back of a knife or more,width of the back of a knife or more -1,same size,same size -1,within the capacity of one of the bushels,within the capacity of one of the bushel -1,large enough that two fingertips can fit inside,large enough that two fingertips can fit inside -1,as large as a double liard,as large as a double liard -1,as tall as three fingers,as tall as three finger -1,pepper grains,grain -2,once a week,once -1,thickness of a thumb,thickness of a thumb -1,two fingers by two fingers,finger -2,every year,year -2,half a foot,foot -1,in the following year,in the following year -1,half as much,half as much -1,meza onça,meza onça -1,paris aulne,aulne -1,king’s feet,feet -1,every eight days,day -1,fingers wide,finger -1,as much as of one as the other,as much as of one as the other -1,long as the width of 4 or 5 fingers,long as the width of 4 or 5 finger -1,wide as you want to make your cartridge long,wide as you want to make your cartridge long -1,walnut shell,walnut shell -1,space of 4 or five mornings,space of 4 or five morning -2,half an ℥,℥ -1,a third,a third -1,before sainct michel,before sainct michel -1,after mid-july until sainct michel,after mid-july until sainct michel -1,from all saints’ day until christmas,from all saints’ day until christma -1,small beads,small bead -1,good hours,hour -1,capacity of one pitcher or earthen jug,capacity of one pitcher or earthen jug -1,by half,by half -1,size of a pigeon egg,size of a pigeon egg -1,times per day,times per day -1,as long as a ring finger,as long as a ring finger -1,shorter by half,shorter by half -1,until holy week,until holy week -1,joint of the little finger,joint of the little finger -1,space of fifteen days,space of fifteen day -1,as much iron filings,as much iron filing -1,big cauldron,big cauldron -1,double handfuls,handful -1,as much pigeon dung as the said earth,as much pigeon dung as the said earth -1,as much horse dung,as much horse dung -2,size of a pea,size of a pea -1,almost half,half -1,a glass thumb thick,a glass thumb thick -1,in half,in half -2,times a day,times a day -1,as much in one go as one can hold in a card folded up like a cannule,as much in one go as one can hold in a card folded up like a cannule -1,degree of heat,degree of heat -1,to know if it is hot enough,to know if it is hot enough -1,half lb,lb -1,quarter ounce,ounce -1,for the space of twenty-four hours,for the space of twenty-four hour -1,space of half an hour,space of half an hour -1,half ounce,ounce -2,twice as much,twice as much -1,twice as long as the ascending pipe,twice as long as the ascending pipe -1,as long as,as long a -1,third part into as many distances as is necessary with regard to the total division of the circle,part -1,distances as small as those of the small cogwheels,distances as small as those of the small cogwheel -1,equal distances,equal distance -1,thicknesses of paper,thicknesses of paper -1,thickness of a coin of forty sous,thickness of a coin of forty sou -1,every two years,year -1,once a month,once -1,a day,day -1,finger’s thickness across,finger’s thickness across -1,lb a dozen,lb -1,fingers in thickness,finger -2,half hour,hour -1,half ℥,half -1,all year,year -1,as much of the white calcined pebbles,as much of the white calcined pebble -2,hour & a half,hour -1,by two tiles,by two tile -1,weight of a grain,weight of a grain -1,grains of gold,grain -1,one weight of calcined pebbles on three of minium,one weight of calcined pebbles on three of minium -1,as much,as much -1,one part of pumice stone calcined & pulverized & tr with three parts of minium,one part of pumice stone calcined & pulverized & tr with three parts of minium -1,square thumbs,thumb -1,lb. & a half,lb. & a half -1,dutch quill,dutch quill -1,fingers’ width,fingers’ width -1,small knife back,small knife back -1,for a month,for a month -1,twice a day,day -1,for the time it takes you to say 8 paternoster,for the time it takes you to say 8 paternoster -1,for the space of 9 days,for the space of 9 day -1,thickness of a teston,thickness of a teston -1,liard’s worth,liard’s worth -3,third part,part -1,in the month of january,in the month of january -1,until the beginning of august,until the beginning of august -1,from mid-may,from mid-may -1,good amount,good amount -1,size of a walnut,size of a walnut -3,quarter hour,hour -1,fourth part lead for three parts tin,fourth part lead for three parts tin -1,"thin p, like the thick strings of a spinet, for the small works","thin p, like the thick strings of a spinet, for the small work" -1,"thick like cord, smaller","thick like cord, smaller" -1,size of two chestnuts,size of two chestnut -1,an hour or a half,hour -1,as much as a grain of millet,as much as a grain of millet -1,quarter of an hour,quarter -1,as much sal ammoniac water as can be held in an egg,as much sal ammoniac water as can be held in an egg -1,or two eggs,or two egg -1,length of a paternoster,length -1,"hottish, such that you can hold it in your hand","hottish, such that you can hold it in your hand" -1,as the size of an hazelnut with its shell,as the size of an hazelnut with its shell -1,lb & a half or two,lb -1,the same size as a bottle in which one boils tisane,the same size as a bottle in which one boils tisane -1,as much as two walnuts,as much as two walnut -1,half a glass,half a glass -2,size of a bean,size of a bean -1,silver spoonfuls,spoonful -1,thickness of a the width of a grain of wheat,thickness of a the width of a grain of wheat -1,thickness of a piece of paper,thickness of a piece of paper -1,three or four days and three days and three nights,day -1,when their season is past,when their season is past -1,several days,day -1,small double handful,small double handful -1,as much as you can take with 4 fingers and the thumb,as much as you can take with 4 fingers and the thumb -1,"earthenware bowl, from which the peasants eat their soup","earthenware bowl, from which the peasants eat their soup" -1,in the early morning,in the early morning -1,natural day,day -1,fourth or fifth part,part -1,for a whole day,for a whole day -1,as much as borax,as much as borax -1,quarter heavier than,quarter heavier than -1,thickness of a knife,thickness of a knife -1,one day and one night,day -1,two times as much,two times as much -1,good fingers,finger -1,size of a hazelnut,size of a hazelnut -1,nearly as much of one as the other,nearly as much of one as the other -1,half an arquebus ball,ball -1,like the heat of the sun in june,like the heat of the sun in june -1,"hot enough, like when one takes out the bread","hot enough, like when one takes out the bread" -1,a day & a night,day -1,after the bread has been taken out,after the bread has been taken out -1,several times each day,several times each day -1,half of the others,half -2,as much as a bean,as much as a bean -1,"of such heat that you cannot hold your finger there, without feeling strong heat","of such heat that you cannot hold your finger there, without feeling strong heat" -1,"test for this effect with paper. if it turns the paper red, it is enough, it is good to cast, but if it blackens the paper, it is too hot.","test for this effect with paper. if it turns the paper red, it is enough, it is good to cast, but if it blackens the paper, it is too hot." -1,cold water,cold water -1,"when it makes large tracts se re pulling at the edges, & motionless, & close to one to another","when it makes large tracts se re pulling at the edges, & motionless, & close to one to another" -1,bowl with handles,bowl with handle -1,at least as long,at least as long -1,"water so hot, that, at the beginning, you cannot hold your finger in it","water so hot, that, at the beginning, you cannot hold your finger in it" -1,a good hour,hour -1,as a large walnut,as a large walnut -1,when it no longer smokes,when it no longer smoke -1,cool in such a way that i could hold my finger to it without burning myself,cool in such a way that i could hold my finger to it without burning myself -1,"to know when it is at a good heat, dip a little piece of twisted paper into it. if it blackens it without lighting, it is at a good heat. but if it burns it & catches fire there, it is too hot","to know when it is at a good heat, dip a little piece of twisted paper into it. if it blackens it without lighting, it is at a good heat. but if it burns it & catches fire there, it is too hot" -1,"grains, like peas",grain -1,of such capacity that the end of a little finger can almost enter it,of such capacity that the end of a little finger can almost enter it -1,overnight in a good fire until the morning,overnight in a good fire until the morning -1,thickness of the back of a knife,thickness of the back of a knife -1,half of its thickness,half -1,the winter,the winter -2,during winter,during winter -1,the size of a pine nut,the size of a pine nut -1,sous from france,sou -1,sous from spain,sou -1,when it quivers,when it quiver -1,thumbs breadth,thumbs breadth -1,height of a man,height of a man -1,écu’s weight,écu’s weight diff --git a/thesaurus/medical.csv b/thesaurus/medical.csv deleted file mode 100644 index 76cf5ea..0000000 --- a/thesaurus/medical.csv +++ /dev/null @@ -1,105 +0,0 @@ -freq,verbatim_term,prefLabel_en -1,mollifying,mollifying -1,injectionem,injectionem -1,toadstone,toadstone -1,defluxion,defluxion -1,injection,injection -1,enemas,enema -1,nourishing,nourishing -2,wounds,wound -1,whiten,whiten -1,dysentery,dysentery -1,fumes,fume -1,softens,soften -1,rheums,rheum -1,humor,humor -1,enema,enema -1,headache,headache -1,remedy,remedy -1,plastered,plastered -1,antidote,antidote -2,poison,poison -1,plague,plague -1,for easing the belly,for easing the belly -1,for the stomach,for the stomach -1,eases the belly,eases the belly -1,against pains,against pain -1,against the suffocation of the matrix,against the suffocation of the matrix -1,against windy colic,against windy colic -1,for relieving the pain of g.,for relieving the pain of g. -1,against gonorrhea,against gonorrhea -1,for getting rid of the redness of eyes or bruising,for getting rid of the redness of eyes or bruising -1,"they will be neither able to move, nor speak, nor thwart thieves","they will be neither able to move, nor speak, nor thwart thiefe" -1,one ought only to touch the ear & the eye with the elbow,one ought only to touch the ear & the eye with the elbow -1,comforts quite well,comforts quite well -1,tooth ache,tooth ache -1,against go,against go -1,for removing fine hair from the forehead,for removing fine hair from the forehead -1,for whitening the face,for whitening the face -1,against the windy colic,against the windy colic -1,for the winds of the belly,for the winds of the belly -1,"against winds, colic, &c","against winds, colic, &c" -1,against burn,against burn -1,a form of regimen,a form of regiman -1,makes a good stomach,makes a good stomach -1,benefits the stomach without heating the liver,benefits the stomach without heating the liver -1,unstops the liver,unstops the liver -1,medicine for the stomach which heats it,medicine for the stomach which heats it -1,dissipates the phlegm & the winds which arise from it,dissipates the phlegm & the winds which arise from it -1,nose bleed,nose bleed -1,forehead of the one who bleeds,forehead of the one who bleed -1,water against the plague,water against the plague -1,white soporific oil,white soporific oil -1,will soon feel like sleeping,will soon feel like sleeping -1,for the teeth,for the teeth -1,penetrates & is corrosive,penetrates & is corrosive -1,this corrupts them afterward & causes a blackness on them,this corrupts them afterward & causes a blackness on them -1,"applied to hair, it makes it fall out & keeps it from being born.","applied to hair, it makes it fall out & keeps it from being born." -1,the pain will not return,the pain will not return -1,against the falling sickness,against the falling sickness -1,against cold gouts,against cold gout -1,for teeth,for teeth -1,the tartar & blackness will go away,the tartar & blackness will go away -1,against falling sickness or vertigo,against falling sickness or vertigo -1,against dysentery,against dysentery -1,against diarrhea,against diarrhea -1,curing dogs of mange,curing dogs of mange -1,its exhalation would be dangerous,its exhalation would be dangerou -1,will make healing difficult,will make healing difficult -1,against wounds,against wound -1,it will not die,it will not die -1,onenev elbirro,onenev elbirro -1,hcihw sllik fi eno spets no a draob ro a ueirse purrits,hcihw sllik fi eno spets no a draob ro a ueirse purrit -1,"ladies, wanting to color their cheeks","ladies, wanting to color their cheek" -1,makes one sweat,makes one sweat -1,for preventing teats from swelling d or to diminish overly large ones,for preventing teats from swelling d or to diminish overly large one -1,against bruising of the eyes,against bruising of the eye -1,against redness of the face,against redness of the face -1,against colds,against cold -1,other maladies,other malady -1,purge the head,purge the head -1,against all maladies,against all malady -1,water for disease of the eyes,water for disease of the eye -1,you will find yourself very well from it,you will find yourself very well from it -1,mind that the fumes do not harm you for they are bad,mind that the fumes do not harm you for they are bad -1,neither antimony nor any other vapor will be able to harm you,neither antimony nor any other vapor will be able to harm you -1,antidote against the fumes of metals,antidote -1,go to your head,go to your head -1,medicinal gums,medicinal gum -1,for the elderly,for the elderly -1,causes hair to regrow,causes hair to regrow -1,against burns,against burn -1,"do not apply it any longer than this, for it would cause a your flesh to grow excessively","do not apply it any longer than this, for it would cause a your flesh to grow excessively" -1,leaves no scar,leaves no scar -2,against dogs’ mange,against dogs’ mange -1,protruding or swollen hemorrhoidal veins,protruding or swollen hemorrhoidal vein -1,infected part,infected part -1,"fumes, which are dangerous, could hurt you","fumes, which are dangerous, could hurt you" -1,fumes of it are dangerous,fumes of it are dangerou -1,"keep away from the fumes, for they are pernicious","keep away from the fumes, for they are perniciou" -1,"cut on your hand, take care that this mixture does not touch it","cut on your hand, take care that this mixture does not touch it" -1,against pestilential fever,against pestilential fever -1,against plague,against plague -1,removing its infection,removing its infection -1,for preserving,for preserving -1,to preserve oneself when one goes into infected air,to preserve oneself when one goes into infected air diff --git a/thesaurus/music.csv b/thesaurus/music.csv deleted file mode 100644 index ef28ef3..0000000 --- a/thesaurus/music.csv +++ /dev/null @@ -1,6 +0,0 @@ -freq,verbatim_term,prefLabel_en -2,guitar,guitar -5,spinet,spinet -2,cittern,cittern -5,mandore,mandore -1,spinets,spinet diff --git a/thesaurus/personal_name.csv b/thesaurus/personal_name.csv deleted file mode 100644 index 7fda5f3..0000000 --- a/thesaurus/personal_name.csv +++ /dev/null @@ -1,97 +0,0 @@ -freq,verbatim_term,prefLabel_en -1,savonne,savonne -1,synesius,synesiu -1,volaterranus,volaterranu -1,higinus,higinu -1,festus,festu -1,seneca,seneca -1,athenaeus,athenaeu -1,spartianus,spartianu -1,dion,dion -1,servius,serviu -1,nonius,noniu -1,herodotus,herodotu -1,macrobius,macrobiu -1,appianus,appianu -1,budaeus,budaeu -1,magius,magiu -1,pollux,pollux -1,blondus,blondu -1,sabellicus,sabellicu -1,ptolomée,ptolomée -1,archimedes,archimede -2,poncet,poncet -1,mathiol,mathiol -1,charlemaigne,charlemaigne -1,dieu,dieu -1,jésus,jésu -1,sathan,sathan -1,gesnerus,gesneru -1,herodote,herodote -1,polybe,polybe -1,platon,platon -1,cereris,cereri -1,orphei,orphei -1,achillis,achilli -1,chirone,chirone -1,homere,homere -1,homerus,homeru -1,numa,numa -1,ciceron,ciceron -1,david,david -1,pythagore,pythagore -1,apollo,apollo -1,pelidae,pelidae -1,orpheus,orpheu -1,vergile,vergile -1,josephe,josephe -1,cebés,cebé -1,cerés,ceré -1,serapis,serapi -1,pytagorien,pytagorien -1,n,n -1,othonis,othoni -1,marmodaeus,marmodaeu -1,tilesius,tilesiu -1,mestre jehan cousin,mestre jehan cousin -1,mestre jehan garnier,mestre jehan garnier -1,mestre nicolas costé,mestre nicolas costé -1,olaus magnus,olaus magnu -1,mestre bernard palissi,mestre bernard palissi -1,paulus manutius,paulus manutiu -1,iulius capitollin,iulius capitollin -1,quintus curtius,quintus curtiu -1,cornelius nepos,cornelius nepo -1,flavius vopiscus,flavius vopiscu -1,alexander aphrodisaeus,alexander aphrodisaeu -1,iulius firmicus,iulius firmicu -1,polydorus verg,polydorus verg -1,dionisius halicarnassensis,dionisius halicarnassensi -1,vincenzo sabio,vincenzo sabio -1,du cros,du cro -1,françois du cros,françois du cro -1,st andré,st andré -1,saint paul,saint paul -1,saint anthoine,saint anthoine -1,monsieur de montorsin,monsieur de montorsin -2,sainct michel,sainct michel -1,st jehan,st jehan -1,sainct jehan,sainct jehan -1,"hieronymus vida albensis episcopus, de b cremonensis","hieronymus vida albensis episcopus, de b cremonensi" -1,saint jehan,saint jehan -1,paul tiers,paul tier -1,maistre alexandre,maistre alexandre -1,tyran de syracuse,tyran de syracuse -1,sainct andré,sainct andré -1,sainct athanase,sainct athanase -1,justino martire,justino martire -1,valere max,valere max -1,aule gelle,aule gelle -1,tite live,tite live -1,sieur ouvryer,sieur ouvryer -1,hyeronimus | mercurialis,hyeronimus | mercuriali -1,abbatis | urspergensis,abbatis | urspergensi -1,rembertus dodonaeus,rembertus dodonaeu -1,albertus magnus,albertus magnu -1,des ormes,des orme -1,georgio bucanano,georgio bucanano diff --git a/thesaurus/place.csv b/thesaurus/place.csv deleted file mode 100644 index dc8bc34..0000000 --- a/thesaurus/place.csv +++ /dev/null @@ -1,125 +0,0 @@ -freq,verbatim_term,prefLabel_en -1,italie,italie -5,lyon,lyon -1,romae,romae -1,normandie,normandie -1,alexandria,alexandrium -1,brescia,brescium -1,brissac,brissac -11,venice,venice -1,armeni,armeni -12,france,france -1,gascony,gascony -14,germany,germany -2,albi,albi -2,armenian,armenian -1,montauban,montauban -6,toulouse,toulouse -3,montpellier,montpellier -3,lorraine,lorraine -1,rodez,rodez -1,mende,mende -7,england,england -1,rome,rome -1,nuremberg,nuremberg -9,flanders,flander -1,milan,milan -8,flemish,flemish -4,german,german -1,rouen,rouen -1,englishman,englishman -1,bretagne,bretagne -3,english,english -1,monserrat,monserrat -1,brittany,brittany -2,cardona,cardona -1,auragne,auragne -1,carmail,carmail -1,lauragais,lauragai -7,spain,spain -1,catalonia,catalonium -1,malta,maltum -1,indian,indian -3,paris,pari -1,normandy,normandy -1,coustance,coustance -1,bayonne,bayonne -1,biscay,biscay -1,levantines,levantine -3,foix,foix -8,germans,german -1,biscaye,biscaye -1,algiers,algier -1,champaigne,champaigne -1,albensis,albensi -1,languedoc,languedoc -1,cremonensis,cremonensi -2,ghent,ghent -4,florence,florence -4,italians,italian -1,cambray,cambray -1,turkey,turkey -2,acre,acre -2,champagne,champagne -1,bolvenes,bolvene -1,irish,irish -1,ireland,ireland -1,carcassonne,carcassonne -1,partenay,partenay -1,orientals,oriental -5,thoulouse,thoulouse -1,fosseret,fosseret -1,ox,ox -1,blagnac,blagnac -1,touch,touch -1,cominge,cominge -1,aurignac,aurignac -1,venise,venise -1,italy,italy -1,lombardy,lombardy -1,vienne,vienne -1,dauphiné,dauphiné -1,spanish,spanish -1,dutch,dutch -1,rouan,rouan -1,augsburg,augsburg -2,capital,capital -1,hungary,hungary -1,turks,turk -1,damascus,damascu -3,garrigue,garrigue -1,rhine,rhine -1,syracuse,syracuse -1,phoenicians,phoenician -1,egypt,egypt -2,portuguese,portuguese -1,argos,argo -1,assyria,assyrium -1,levant,levant -1,tyana,tyana -1,greek,greek -1,greeks,greek -1,latins,latin -1,eleusis,eleusi -1,egyptians,egyptian -1,sicilians,sicilian -1,hebrews,hebrew -1,burgundy,burgundy -1,istre,istre -1,saint-frajou,saint-frajou -1,mechliniensis,mechliniensi -1,"rue de la heaumerie, at the sign of st claude","rue de la heaumerie, at the sign of st claude" -1,st jacques de la boucherie,st jacques de la boucherie -1,rue des escrivains,rue des escrivain -1,faubourg saint-germain,faubourg saint-germain -1,urb. rom.,urb. rom. -1,saint antonin,saint antonin -1,la rochelle,la rochelle -2,bonnes villes,bonnes ville -1,saint denis,saint deni -3,puy david,puy david -1,sainct michel,sainct michel -1,parys near the sainct chappelle,parys near the sainct chappelle -1,coast of greece,coast of greece -1,red sea,red sea -1,le mans,le man diff --git a/thesaurus/plant.csv b/thesaurus/plant.csv deleted file mode 100644 index 8c91da7..0000000 --- a/thesaurus/plant.csv +++ /dev/null @@ -1,206 +0,0 @@ -freq,verbatim_term,prefLabel_en -3,cinnamon,cinnamon -1,gilliflower,gilliflower -1,prunes,prune -1,mallow,mallow -1,jujubes,jujube -1,marshmallow,marshmallow -1,cabbage,cabbage -21,walnut,walnut -2,onions,onion -4,garlic,garlic -10,linseed,linseed -4,linen,linen -1,prele,prele -5,bean,bean -1,horsetail,horsetail -8,willow,willow -3,pea,pea -5,saffron,saffron -4,brazilwood,brazilwood -2,carnation,carnation -3,walnuts,walnut -5,millet,millet -1,pomole,pomole -1,baillard,baillard -2,grain,grain -1,beans,bean -4,roses,rose -2,heather,heather -1,visaube,visaube -1,wallwort,wallwort -3,quince,quince -1,cotton,cotton -1,oranges,orange -3,hemp,hemp -1,straw,straw -1,puffball,puffball -26,wheat,wheat -2,orange,orange -1,skirret,skirret -1,onion,onion -1,trees,tree -2,rye,rye -3,peas,pea -1,hazelnuts,hazelnut -11,vine,vine -1,arum,arum -5,boxwood,boxwood -1,saltworth,saltworth -1,fern,fern -4,wormwood,wormwood -1,pepper,pepper -1,melons,melon -3,marigold,marigold -2,fir,fir -2,sorrel,sorrel -2,artichokes,artichoke -2,lettuces,lettuce -13,olive,olive -2,pavis,pavi -3,mericotons,mericoton -1,columbine,columbine -2,grains,grain -2,bugloss,bugloss -1,flax,flax -5,pansy,pansy -1,cornflower,cornflower -2,rue,rue -1,dittany,dittany -1,mandrake,mandrake -2,clove,clove -1,gentian,gentian -1,guaiac,guaiac -1,peony,peony -1,symphytum,symphytum -1,cloves,clofe -2,mustard,mustard -1,cherries,cherry -1,plums,plum -1,lettuce,lettuce -1,ettuce,ettuce -2,almonds,almond -3,rapeseed,rapeseed -1,fenugreek,fenugreek -3,apricots,apricot -1,alberge,alberge -1,heath,heath -1,vermicularis,vermiculari -1,semperviva,semperviva -1,horseradish,horseradish -1,weld,weld -1,aloe,aloe -2,almond,almond -2,peach,peach -2,amaranth,amaranth -1,pomegranate,pomegranate -1,sumac,sumac -1,sloes,slo -6,elm,elm -1,maple,maple -1,persicaire,persicaire -1,maplewood,maplewood -1,fustet,fustet -4,rosemary,rosemary -1,oak,oak -2,beech,beech -1,aspic,aspic -1,bramble,bramble -1,osier,osier -1,peaches,peach -1,olives,olife -1,rowan,rowan -2,sage,sage -1,straws,straw -1,prune,prune -1,anthos,antho -1,ivy,ivy -1,oraches,orach -1,nettles,nettle -2,chestnuts,chestnut -6,rose,rose -2,hazelnut,hazelnut -2,asparagus,asparagu -1,daisies,daisy -1,mushrooms,mushroom -1,potirons,potiron -2,wormseed,wormseed -1,broom,broom -1,cornflowers,cornflower -3,carnations,carnation -2,pansies,pansy -1,marigolds,marigold -1,ranunculus,ranunculu -1,zedoary,zedoary -1,burdock,burdock -1,pappus,pappu -1,dandelion,dandelion -1,grapes,grape -1,grape,grape -1,sauvignons,sauvignon -1,chauchés,chauché -1,apples,apple -1,pears,pear -1,thyme,thyme -1,strawberry,strawberry -2,strawberries,strawberry -1,periwinkle,periwinkle -1,mosses,moss -1,scabious,scabiou -1,ruta,rutum -7,pastel woad,pastel woad -1,grains of wheat,grain -1,hog’s fennel,hog’s fennel -25,spike lavender,spike lavender -1,service tree,service tree -8,fig tree,fig tree -1,guesde woad,guesde woad -2,black cherry,black cherry -1,calf’s foot,calf’s foot -2,capilli veneris,capilli veneri -1,lapathum acutum,lapathum acutum -1,cooking herbs,cooking herb -1,monk’s rhubarb,monk’s rhubarb -1,lapathium acutum maius,lapathium acutum maiu -1,garden lily,garden lily -1,red poppy,red poppy -1,lily flower,lily flower -1,consolida maior,consolida maior -2,walnut tree,walnut tree -1,almond tree,almond tree -3,almond trees,tree -1,white mulberry,white mulberry -1,pear tree,pear tree -1,fir tree,fir tree -2,palma christi,palma christi -1,broom flower,broom flower -2,orberé grain,grain -1,olive tree,olive tree -1,elm tree,elm tree -1,vine shoots,vine shoot -1,guesdre woad,guesdre woad -1,elm root,elm root -1,orange tree,orange tree -1,orange trees,tree -1,prune trees,tree -1,apricot trees,tree -1,peach trees,tree -1,plum trees,tree -1,quince trees,tree -3,peach tree,peach tree -1,mericoton peaches,peach -1,yellow meadow flowers,yellow meadow flower -1,palta lupina,palta lupina -1,caper plant,caper plant -1,wheat chaff,wheat chaff -1,yellow millet,millet -1,some small,some small -1,large amaranth,amaranth -1,terra merita,terra meritum -1,turmeric root,turmeric root -1,strawberry plants,strawberry plant -1,rose bush,rose -1,rose bushes,rose -1,marigold flowers,marigold flower -1,olive trees,tree -1,baccis juniperi,baccis juniperi diff --git a/thesaurus/profession.csv b/thesaurus/profession.csv deleted file mode 100644 index 96a2f19..0000000 --- a/thesaurus/profession.csv +++ /dev/null @@ -1,177 +0,0 @@ -freq,verbatim_term,prefLabel_en -2,currier,currier -3,master,master -2,harvester,harvester -1,historicus,historicu -4,king,king -1,bergiers,bergier -1,blacksmith,blacksmith -4,furbishers,furbisher -1,surgeons,surgeon -2,women,woman -2,joiners,joiner -1,fabrorum,fabrorum -7,pewterers,pewterer -1,plowman,plowman -1,harvesters,harvester -8,painter,painter -3,apprentices,apprentice -3,merchant,merchant -14,painters,painter -2,merchants,merchant -1,joiner's,joiner -1,fuller,fuller -1,barbers',barber -1,goldsmiths’,goldsmith -5,goldsmith,goldsmith -2,glassworkers’,glassworker -1,sophisticators,sophisticator -1,thieves,thiefe -1,candlemakers,candlemaker -1,founders',founder -1,alchemists,alchemist -4,workers,worker -2,miners,miner -1,people,person -3,worker,worker -1,infantry,infantry -1,cavalry,cavalry -5,masters,master -6,gunner,gunner -6,glassmakers,glassmaker -4,glassworkers,glassworker -3,glassworker,glassworker -9,founder,founder -1,pioneers,pioneer -1,gunners,gunner -5,apothecaries,apothecary -2,pewterer,pewterer -2,rich,rich -2,scribes,scribe -3,joiner,joiner -1,villagers,villager -1,coppersmith,coppersmith -12,founders,founder -2,conjuror,conjuror -1,spectators,spectator -1,bystander,bystander -1,fellow,fellow -1,bystanders,bystander -1,servant,servant -1,messenger,messenger -1,founablesders,founablesder -1,gardener,gardener -19,goldsmiths,goldsmith -1,dyers,dyer -1,gardeners,gardener -1,monk,monk -1,vintagers,vintager -2,potter,potter -1,shearer,shearer -1,pintori,pintori -1,arquebusier,arquebusier -1,coppersmiths,coppersmith -1,scribe,scribe -1,writer,writer -1,shoemaker,shoemaker -3,farriers,farrier -5,printers,printer -1,shoemakers,shoemaker -1,tanners,tanner -2,illuminators,illuminator -4,artist,artist -3,apprentice,apprentice -3,locksmiths,locksmith -2,molder,molder -1,cutlers,cutler -1,printer’s,printer -2,goldsmith’s,goldsmith -1,apothecary,apothecary -1,currier's,currier -1,barbers,barber -4,potters,potter -1,tanner,tanner -2,clockmakers,clockmaker -2,silversmiths,silversmith -1,baker,baker -1,glassmakers’,glassmaker -2,molders,molder -3,artisans,artisan -1,rustics,rustic -1,grocers,grocer -1,workman,workman -1,furbisher,furbisher -1,leadsmiths,leadsmith -1,locksmith,locksmith -1,perfumers,perfumer -1,elderly,elderly -1,grooms,groom -1,archers,archer -2,glassmaker’s,glassmaker -1,disciples,disciple -1,peasants,peasant -1,rustic,rustic -1,boy,boy -1,casters,caster -1,curriers,currier -1,tiler,tiler -1,perfumer,perfumer -1,medicari,medicari -1,authors,author -1,mason,mason -1,weaver,weaver -1,orphans,orphan -1,inventor,inventor -1,wheelwrights,wheelwright -1,peasant,peasant -1,bimbalotiers,bimbalotier -1,medicus,medicu -1,inventor of rustic figulines,inventor -1,queen mother,queen mother -2,guitar makers,guitar maker -1,frame makers,frame maker -1,iron etchers,iron etcher -1,glass button makers,glass button maker -1,common painters,painter -1,ancient lapidaries,ancient lapidary -1,gunpowder makers,gunpowder maker -1,sworn master pewterers,sworn master pewterer -1,"others, who work in the countryside","others, who work in the countryside" -1,white limers,white limer -1,mat maker,mat maker -1,stone cutters,stone cutter -1,commanders of malta,commanders of maltum -1,those who make gemstone foils,those who make gemstone foil -1,sworn masters,master -1,iron workers,worker -1,cutters of printing plates,cutters of printing plate -1,the one who makes a profession of working in oil,the one who makes a profession of working in oil -1,sheath makers,sheath maker -1,sheath maker,sheath maker -1,poor peasants,peasant -1,those who grind,those who grind -1,founders of small works of tin,founder -1,artisans who work on big works,artisan -1,artisans who work in big works,artisan -1,worker who made the wood piece,worker -1,those who create sword guards,those who create sword guard -2,common people,person -1,gunpowder maker,gunpowder maker -1,fountain maker,fountain maker -1,crayfish catchers,crayfish catcher -1,founders of great works,founder -1,those who make pots,those who make pot -1,the one who taught me to mold them,the one who taught me to mold them -1,pastry makers,pastry maker -1,artillery founders,founder -1,shop boy,boy -1,those who work in plate and large wares,those who work in plate and large ware -1,little children,little child -1,founders of large casts for statues,founder -1,founders of artillery & bells,founder -1,"artisans of metals, of gold, & of silver, & others",artisan -1,goldsmiths who work in large wares and plate,goldsmith -1,makers of gilded leather,makers of gilded leather -1,goldsmiths who work large wares,goldsmith -1,founders of large castings,founder -1,one who sings,one who sing diff --git a/thesaurus/sensory.csv b/thesaurus/sensory.csv deleted file mode 100644 index c491b24..0000000 --- a/thesaurus/sensory.csv +++ /dev/null @@ -1,57 +0,0 @@ -freq,verbatim_term,prefLabel_en -3,touch,touch -1,look,look -4,sonorous,sonorou -1,deaf,deaf -1,sound,sound -1,pain,pain -1,coolness,coolness -1,tasting,tasting -1,loudly,loudly -2,stinking,stinking -1,stench,stench -1,taste,taste -1,fragrant,fragrant -1,smell,smell -1,noise,noise -2,ring,ring -1,observe,observe -1,touching,touching -1,hear,hear -1,hearing,hearing -1,stinky,stinky -1,scent,scent -1,scented,scented -1,hairs of your beard,hairs of your beard -1,bigger voice,bigger voice -1,bad taste to the food,taste -2,bad odor,bad odor -1,taste as of vinegar,taste -1,little whistle,little whistle -1,"you will know its goodness by rubbing it with your finger, which will render it very black immediately","you will know its goodness by rubbing it with your finger, which will render it very black immediately" -1,is not felt between your fingers,is not felt between your finger -1,break apart between your hands,break apart between your hand -1,soft when handling it between your fingers,soft when handling it between your finger -1,one smells it & brings it close to the nose,one smells it & brings it close to the nose -1,smells like sulfur,smells like sulfur -1,to scratch yourself well,to scratch yourself well -1,soft to the touch,soft to the touch -1,not attach to your hands,not attach to your hand -1,to the tongue you find the water moderately salty,to the tongue you find the water moderately salty -1,until you can you can hold the tip of your finger in the cast without burning yourself,until you can you can hold the tip of your finger in the cast without burning yourself -1,"of such a heat that you can handle it without harm, or that you can keep your finger in the gate without burning yourself","of such a heat that you can handle it without harm, or that you can keep your finger in the gate without burning yourself" -1,so hot that you can bear putting your finger in it,so hot that you can bear putting your finger in it -1,"when scraping it with the fingernail, it is a sign that the crocum is good, very fine & well prepared","when scraping it with the fingernail, it is a sign that the crocum is good, very fine & well prepared" -1,perceived on the fingernail,perceived on the fingernail -1,"you will find it so, by scraping a little harder than the other where there is none","you will find it so, by scraping a little harder than the other where there is none" -1,"of such heat that you cannot hold your finger there, without feeling strong heat","of such heat that you cannot hold your finger there, without feeling strong heat" -1,until you can hold your finger without harm in the hole of the gate,until you can hold your finger without harm in the hole of the gate -1,"this wax is very soft & amiable & pliant as copper, and it is so strong because of the sulfur, which renders it meltable much before the other, thus you can prove on a hot slate","this wax is very soft & amiable & pliant as copper, and it is so strong because of the sulfur, which renders it meltable much before the other, thus you can prove on a hot slate" -1,"your wax has passed its high heat, which you will recognize when it no longer smokes","your wax has passed its high heat, which you will recognize when it no longer smoke" -1,"water so hot, that, at the beginning, you cannot hold your finger in it","water so hot, that, at the beginning, you cannot hold your finger in it" -1,i could hold my finger to it without burning myself,i could hold my finger to it without burning myself -1,"so that without burning yourself, you can hold your finger in it without burning yourself","so that without burning yourself, you can hold your finger in it without burning yourself" -1,they cry & crackle once brought near the ear,they cry & crackle once brought near the ear -1,of such heat that you can hold your finger there without harm in the hole,of such heat that you can hold your finger there without harm in the hole -1,odor of itself,odor of itself -1,"when they are still of such a heat as you have noticed before putting your finger in the hole, cast.","when they are still of such a heat as you have noticed before putting your finger in the hole, cast." diff --git a/thesaurus/time.csv b/thesaurus/time.csv deleted file mode 100644 index 15b0f5f..0000000 --- a/thesaurus/time.csv +++ /dev/null @@ -1,162 +0,0 @@ -freq,verbatim_term,prefLabel_en -19,hours,hour -9,hour,hour -3,overnight,overnight -5,months,month -8,night,night -4,years,year -20,day,day -2,longer,longer -33,days,day -2,today,today -5,year,year -3,summer,summer -2,month,month -1,hora,hora -1,mornings,morning -1,week,week -1,march,march -2,weeks,week -3,long,long -1,evening,evening -1,time,time -1,advent,advent -1,thursdays,thursday -1,tuesdays,tuesday -1,wednesdays,wednesday -1,saturdays,saturday -2,serain,serain -1,pauses,pause -1,nights,night -1,everyday,everyday -2,season,season -2,morning,morning -1,june,june -1,winter,winter -1,frost,frost -1,subsequent,subsequent -1,july,july -2,in the morning,in the morning -1,during the winter,during the winter -1,in the summer,in the summer -1,times past,times past -2,a quarter of an hour,a quarter of an hour -1,half a day,day -1,a good quarter of an hour,a good quarter of an hour -7,at night,at night -2,by night,by night -1,sun is approaching midday,sun is approaching midday -1,at the next sowing,at the next sowing -1,at night in the cool & by moonlight,at night in the cool & by moonlight -1,2nd september 1581,2nd september 1581 -1,st andré’s day,st andré’s day -22,long time,time -1,every morning,morning -1,every three days,day -2,a long time,time -4,in summer,in summer -4,in winter,in winter -2,once a week,once a week -1,end of a moon cycle,end of a moon cycle -2,every year,year -1,saint paul's day,day -1,on saint anthoine’s day in january,on saint anthoine’s day in january -1,in the following year,in the following year -2,in the evening,in the evening -1,advent of christmas,advent -1,with everyes new ☾,with everyes new ☾ -1,at the waning of the moon,at the waning of the moon -1,humid weather,humid weather -1,before sainct michel,before sainct michel -1,from all saints’ day until christmas,from all saints’ day until christma -1,all summer,summer -1,after mid-july until sainct michel,after mid-july until sainct michel -1,at sainct michel,at sainct michel -1,for the space of two hours,for the space of two hour -1,for the entire year,for the entire year -2,in the winter,in the winter -1,during the summer,during the summer -1,on a warm & dry day,on a warm & dry day -1,after several days,after several day -1,beginning of august,beginning of august -1,good hours,hour -1,"at regular intervals, day & night",night -1,from the feast of st jehan until the 25th of april,from the feast of st jehan until the 25th of april -1,around the feast of sainct jehan,around the feast of sainct jehan -1,around pentecost,around pentecost -1,around saint jehan’s day,around saint jehan’s day -1,around holy week,around holy week -1,from their birth until the their time when they make their cocoons & their prisons,from their birth until the their time when they make their cocoons & their prison -1,per day,per day -1,during the day,during the day -1,until holy week,until holy week -1,space of fifteen days,space of fifteen day -1,in the month of june & july,in the month of june & july -1,very long time,time -1,take a long time,take a long time -1,month of may,month -3,the next day,day -1,over time,over time -1,one day or one night,day -1,the day after,day -1,after rainy weather,after rainy weather -1,long sea crossing,long sea crossing -1,for the space of twenty-four hours,for the space of twenty-four hour -1,half an hour,hour -1,in the month of may,in the month of may -1,at any hour,at any hour -1,every day,day -1,in the past,in the past -1,whole year,year -1,after the bread has been taken out,after the bread has been taken out -1,three days a week,day -2,next morning,morning -1,all year long,long -1,in a day,in a day -1,serain of the night,serain -1,every two years,year -1,once a month,once a month -1,all the months of the year,month -1,palm sunday,palm sunday -2,half hour,hour -2,all year,year -1,weather is damp & humid,weather is damp & humid -1,weather is not serain & dry,weather is not serain & dry -2,hour & a half,hour -1,for a month,for a month -1,in the month of august,in the month of august -1,twice a day,day -1,for the space of 9 days,for the space of 9 day -1,for the time it takes you to say 8 paternoster,for the time it takes you to say 8 paternoster -1,in the month of january,in the month of january -1,in that year,in that year -1,from mid-may,from mid-may -1,until the beginning of august,until the beginning of august -1,the evening and the morning,evening -1,season of their pleasure,season -1,rainy weather,rainy weather -1,long enough,long enough -3,quarter hour,hour -1,in the spring,in the spring -1,an hour or a half,hour -1,quarter of an hour,quarter of an hour -1,length of a paternoster,length of a paternoster -1,next day,day -1,first day,day -1,out of season when winter denies flowers,out of season when winter denies flower -1,several days,day -1,in the early morning,in the early morning -1,natural day,day -1,for a whole day,for a whole day -1,at night or at a silent time,at night or at a silent time -1,a day & a night,day -1,in autumn,in autumn -1,at least as long,long -1,a good hour,hour -1,a long time ago,a long time ago -1,a good space of time,a good space of time -1,the winter,winter -2,during winter,during winter -1,"different times, but continue once you have started","different times, but continue once you have started" -1,in the space of a thousand years,in the space of a thousand year -1,preceding day,day diff --git a/thesaurus/tool.csv b/thesaurus/tool.csv deleted file mode 100644 index dced552..0000000 --- a/thesaurus/tool.csv +++ /dev/null @@ -1,981 +0,0 @@ -freq,verbatim_term,prefLabel_en -37,marble,marble -15,file,file -5,brazier,brazier -18,stick,stick -30,pestled,pestled -21,finger,finger -22,pot,pot -18,vessel,vessel -16,oven,oven -1,trivet,trivet -4,plate,plate -11,sponge,sponge -7,sieved,sieved -2,bucket,bucket -10,brush,brush -5,feather,feather -127,mold,mold -1,arene,arene -5,tripoli,tripoli -29,crucible,crucible -1,molded,molded -3,putty,putty -2,mirror,mirror -18,candle,candle -9,table,table -1,sheet,sheet -1,window,window -6,tooth,tooth -1,prele,prele -8,cloth,cloth -40,paintbrush,paintbrush -1,horsetail,horsetail -15,furnace,furnace -3,chafing-dish,chafing-dish -1,cannules,cannule -2,lamp,lamp -1,cannule,cannule -6,grate,grate -6,chisel,chisel -11,burin,burin -13,hammer,hammer -2,mouth,mouth -19,mortar,mortar -2,grais,grai -2,matrass,matrass -1,joiner'splane,joinersplane -2,iron,iron -8,thread,thread -1,sieves,siefe -3,alembic,alembic -7,fingernail,fingernail -1,trowel,trowel -1,awl,awl -2,ashes,ash -1,touchstone,touchstone -1,sand,sand -2,knives,knife -8,points,point -5,wheel,wheel -2,leather,leather -3,brushes,brush -1,loom,loom -3,candles,candle -2,boards,board -1,bat,bat -1,beaters,beater -1,ditch-spade,ditch-spade -1,mallet,mallet -37,frame,frame -1,silverpoint,silverpoint -1,charcoals,charcoal -4,blast-pipe,blast-pipe -1,forges,forge -14,bellows,bellow -4,charcoal,charcoal -77,molds,mold -1,calibre,calibre -2,ladles,ladle -3,ladle,ladle -1,cauldrons,cauldron -7,compass,compass -6,ruler,ruler -6,quill,quill -1,syringe,syringe -4,sleeve,sleeve -1,lids,lid -1,embers,ember -2,hearth,hearth -5,glass,glass -1,flasks,flask -1,quadrant,quadrant -1,mirrors,mirror -5,screw,screw -1,trepan,trepan -5,nail,nail -6,pestling,pestling -5,pegs,peg -1,bar,bar -1,auger,auger -3,cord,cord -2,gimlet,gimlet -6,string,string -3,wimble,wimble -1,frails,frail -1,frail,frail -1,shovels,shovel -1,rammer,rammer -1,bags,bag -1,bungs,bung -2,wedges,wedge -1,blades,blade -4,borer,borer -22,pestle,pestle -1,anvils,anvil -1,desgrusoue,desgrusoue -9,hand,hand -1,crossbar,crossbar -23,knife,knife -1,hammered,hammered -1,desgrusouer,desgrusouer -2,plane,plane -1,esgrusouer,esgrusouer -1,hammers,hammer -2,rope,rope -2,filter,filter -1,shale,shale -1,handle,handle -2,nailed,nailed -2,toothpick,toothpick -1,token,token -1,funnel,funnel -1,bedpost,bedpost -1,candlestick,candlestick -1,log,log -1,jewel,jewel -2,box,box -2,boxes,box -1,pouch,pouch -1,bell,bell -1,bushel,bushel -1,grain,grain -2,bag,bag -4,napkin,napkin -2,hat,hat -1,ball,ball -1,sheath,sheath -1,thimble,thimble -8,pincers,pincer -3,stone,stone -1,stake,stake -1,desramonet,desramonet -1,cane,cane -3,emery,emery -1,rakes,rake -1,vat,vat -5,pin,pin -1,receptacle,receptacle -3,retort,retort -7,crucibles,crucible -1,cendrée,cendrée -8,luted,luted -18,porphyry,porphyry -1,sift,sift -18,forge,forge -8,penknife,penknife -1,cochiaro,cochiaro -1,ditto,ditto -2,cutting-punch,cutting-punch -1,reed,reed -4,vial,vial -1,baton,baton -3,pipe,pipe -2,ramrod,ramrod -2,nut,nut -1,plumb,plumb -2,spoonful,spoonful -20,lute,lute -2,canvas,canva -5,tile,tile -1,puncheon,puncheon -3,card,card -16,sieve,sieve -7,needle,needle -2,dish,dish -1,weights,weight -8,bottle,bottle -1,stopper,stopper -1,bottles,bottle -2,basket,basket -1,ampul,ampul -6,carton,carton -1,medal,medal -12,paper,paper -1,cages,cage -1,lime-twigs,lime-twig -4,files,file -3,burnisher,burnisher -1,rollers,roller -1,felt,felt -7,linen,linen -1,plates,plate -2,fingertip,fingertip -1,pitcher,pitcher -1,℥,℥ -1,mattras,mattra -1,stoppered,stoppered -2,bolt,bolt -3,vise,vise -1,shelves,shelf -1,tub,tub -1,vessels,vessel -1,sticks,stick -1,bedsheet,bedsheet -1,socket,socket -1,top,top -1,muid,muid -4,cauldron,cauldron -1,palettes,palette -1,marbles,marble -11,press,press -1,crayons,crayon -4,cotton,cotton -4,paintbrushes,paintbrush -5,palette,palette -14,frames,frame -1,eye,eye -1,rulers,ruler -1,hook,hook -1,easel,easel -5,spatula,spatula -2,pan,pan -1,burnished,burnished -12,fingers,finger -1,straw,straw -3,skillet,skillet -4,pestles,pestle -8,hands,hand -1,horn,horn -1,wood,wood -1,board,board -1,wirebrush,wirebrush -6,spoon,spoon -1,palm,palm -1,copper,copper -1,tin,tin -2,shell,shell -8,bowl,bowl -2,gimlets,gimlet -1,cornet,cornet -3,mortars,mortar -3,barrel,barrel -1,buckles,buckle -1,straps,strap -1,screws,screw -1,cases,case -3,nails,nail -3,bones,bone -2,bone,bone -1,shovel,shovel -1,arson,arson -1,well-forged,well-forged -1,filed,filed -1,flin,flin -1,chameau,chameau -1,grateau,grateau -1,grindstone,grindstone -1,thunderstone,thunderstone -1,fustée,fustée -4,foot,foot -1,gratteau,gratteau -1,felin,felin -1,chalk,chalk -1,boxwood,boxwood -2,tweezers,tweezer -1,rake,rake -1,firkin,firkin -1,rod,rod -1,bricks,brick -1,boring,boring -1,bore,bore -1,fornaise,fornaise -1,tiles,tile -2,lamps,lamp -1,retorts,retort -1,alembics,alembic -2,scissors,scissor -3,pots,pot -1,fire-steel,fire-steel -1,coffer,coffer -1,vials,vial -1,spoonfuls,spoonful -1,tube,tube -1,clock,clock -1,mills,mill -2,cage,cage -1,pinon,pinon -3,terrine,terrine -1,pit,pit -2,tools,tool -1,blast-pipes,blast-pipe -1,underfoot,underfoot -2,needles,needle -16,clamps,clamp -1,tongue,tongue -1,flagon,flagon -1,basin,basin -7,point,point -2,chisels,chisel -1,cast,cast -10,chaple,chaple -3,presses,press -1,vase,vase -1,drawer,drawer -1,fist,fist -1,hourglass,hourglass -1,case,case -1,quarton,quarton -2,wax,wax -3,slab,slab -1,almond,almond -2,bellow,bellow -1,metals,metal -1,brushed,brushed -2,lutes,lute -3,clamp,clamp -1,blood,blood -1,moulets,moulet -1,fournaise,fournaise -1,tows,tow -2,anvil,anvil -1,scraper,scraper -1,cartons,carton -1,taper,taper -1,burins,burin -1,penknives,penknife -1,trusseaulx,trusseaulx -3,circle,circle -1,knee,knee -1,ear,ear -1,contour,contour -1,bullitoire,bullitoire -2,scratch-brush,scratch-brush -1,wire-brushed,wire-brushed -1,clamped,clamped -1,lathe,lathe -1,gouge,gouge -1,cushionet,cushionet -1,bath,bath -2,threads,thread -2,onglet,onglet -1,chasing,chasing -1,chiseling,chiseling -1,pillars,pillar -1,sheets,sheet -1,stirrup,stirrup -1,semal,semal -1,glove,glove -1,gloves,glofe -1,pins,pin -1,cupel,cupel -1,puncheons,puncheon -1,saws,saw -1,crutches,crutch -1,axes,axis -1,peg,peg -1,forks,fork -1,matrices,matrix -1,"crucible covered with another, well luted",luted -3,leaded pot,pot -1,coarse canvas,canva -1,very light tammy cloth,cloth -1,copper vessel,vessel -2,steel point,point -1,venice tripoli,tripoli -1,emery putty,putty -1,"mold, of white stone with no eyelets",mold -1,thin sand,sand -1,sheet of paper,sheet -1,concave mirror,mirror -1,enamel cannules,cannule -1,small pincers with a long beak,pincer -1,wood model,wood model -1,cutting file,cutting file -8,reverberatory furnace,furnace -5,small pincers,pincer -1,small furnace,furnace -1,polished marble,marble -2,piece of felt,piece of felt -1,roller press,press -1,wooden board,board -1,glass of good wine,glass -1,"alembic, well-luted",luted -5,linen cloth,cloth -1,marcasite powder,marcasite powder -1,copper blade,copper blade -1,"wheels for doing this, one of tin, one of lead, & one of fine copper","wheels for doing this, one of tin, one of lead, & one of fine copper" -1,tin wheel,wheel -2,copper wheel,wheel -9,glass bottle,bottle -2,fine sieve,sieve -1,oil palette,palette -1,head band,head band -1,diamond points,point -1,pumice stone powder,pumice stone powder -1,lead wheel,wheel -2,piece of leather,piece of leather -1,polishing wheel of copper,wheel -1,covered oven,covered oven -1,barbers' ovens,barbers oven -1,relief medal,medal -1,powder of the said tripoli,powder of the said tripoli -1,goldsmiths’ bouteure,goldsmiths’ bouteure -2,goldsmith’s forge,forge -1,iron casket,iron casket -1,glassworkers’ solders,glassworkers’ solder -1,diamond point,point -2,small hog bristle brushes,brush -1,lead tinwheel,lead tinwheel -1,fine sieves of raw silk,siefe -1,fine & delicate sieves,fine & delicate siefe -1,measuring line,measuring line -1,chevron beams,chevron beam -1,long poles,long pole -6,cuttlefish bone,bone -1,little handle,handle -1,wooden mallet,mallet -1,round or oval-shaped triblet,round or oval-shaped triblet -1,new charcoal,charcoal -1,large file,file -2,iron pots,pot -1,round furnace,furnace -1,big charcoal,charcoal -1,square furnace,furnace -1,small forges,forge -1,biggest charcoal,charcoal -1,bellows’ pipes,bellows’ pipe -1,iron or metal shells,iron or metal shell -1,needle’s worth of fine silk,needle’s worth of fine silk -1,well closed andtin vessel,well closed andtin vessel -1,nail of your right thumb,nail -1,big finger,finger -1,leather sleeves or bags,leather sleeves or bag -1,hair sieve,sieve -1,plumb line,plumb line -3,iron pegs,peg -1,short stick,stick -1,wooden bungs,bung -1,model of paper,model of paper -1,iron spoon,spoon -1,iron pot,pot -1,female mold,mold -1,cold molds,mold -1,lead vessel,vessel -1,stopper of the bottle,stopper -1,metal molds,mold -1,grais mold,mold -1,soldering iron,soldering iron -1,emery stone powder,emery stone powder -1,sharp iron,iron -1,leather nailed onto a piece of wood,nailed -1,iron wheels,iron wheel -1,grais molds,mold -1,cutting iron,cutting iron -1,well-furbished knife,knife -1,stick of well dried between wicker,stick of well dried between wicker -1,piece of silver,piece of silver -1,bodkin rounded at the tip & that goes into its handle,bodkin rounded at the tip & that goes into its handle -1,funnel of white iron,funnel -1,large stick,stick -1,leather cover of the same length as the box,leather cover of the same length as the box -1,box of boxwood banded with rings,box -1,large box,box -1,little box,box -1,leather box,box -1,small box,box -1,larger box,box -1,smaller box,box -3,small stick,stick -1,halberd points,point -1,"pikes, with joists","pikes, with joist" -1,"knives, either kitchen or table",knife -1,white leather of the color of the wood,leather -1,folded handkerchief,folded handkerchief -1,conjuror’s pouch,pouch -1,wooden bell,bell -1,small wooden bushels,small wooden bushel -1,right hand,hand -1,leather sheath,sheath -1,little & ring fingers,little & ring finger -1,"small sheath of plain leather, such as cow or morocco",sheath -1,boxwood balls,boxwood ball -1,leather mold,mold -1,wood furnace,furnace -10,four à vent,four à vent -3,bellows furnace,furnace -1,thick round iron rod,rod -4,hot iron,iron -1,annealing furnace,furnace -1,case of iron or metal,case -1,tripoli from bretagne,tripoli -1,pulverized pumice stone,stone -1,pulverized salt,pulverized salt -1,willow stick,stick -1,tripoli of brittany,tripoli -1,wheel of soft wood,wheel -1,soft wood,wood -1,dyers’ vat,vat -1,shovels of iron,shovel -1,linen cloths,linen cloth -1,steel awl,awl -1,à vent bellows furnace,furnace -1,bottom grate,grate -1,top grate,grate -1,mold of earth,mold -1,piece of glass,piece of glass -1,sublimatorio di vetro,sublimatorio di vetro -1,small flat stick,stick -1,flaming red tile,tile -1,little ramrod,ramrod -1,smooth & well-leveled table,table -1,very smooth string without knots,string -1,small burin,burin -1,walnut shell,shell -2,writing quill,writing quill -1,those for glassmakers,those for glassmaker -1,crucibles for melting metal,crucible -1,tammy cloth,cloth -1,mold made of canvas,mold -1,varnished earthenware pot,varnished earthenware pot -1,pick of wood or iron,pick of wood or iron -1,flat tile,tile -2,copper mold,mold -1,square tile,tile -1,stone molds,mold -1,resin candles,candle -1,copper molds engraved with a burin,copper molds engraved with a burin -1,tin molds,mold -1,quite pointy feather,feather -1,cleft stick,stick -1,playing card,playing card -1,quite even & table,table -1,vat full of water,vat -1,glass ampul,ampul -1,bottom of a glass,bottom of a glass -1,piece of white paper,piece of white paper -1,small smooth table,table -2,piece of paper,piece of paper -1,printing plates,plate -1,wood blocks,wood block -1,wood block,wood block -1,wet napkins,wet napkin -1,sheets of paper,sheet -1,copper plates,plate -1,earthen jug,earthen jug -1,large glass mattras,mattra -1,fir box,box -1,chafing dishes & with glowing charcoal,chafing dishes & with glowing charcoal -1,feather cushions,feather cushion -1,high shelves,shelf -1,white linen,linen -1,sieve made of strings,sieve -1,lit hay,lit hay -1,long stick,stick -1,big cauldron,cauldron -2,dung heap,dung heap -1,small even board,board -1,fabric of cambray,fabric of cambray -1,very thin paintbrushes which have a firm point,paintbrush -1,small rods to rest their hand when they are painting,small rods to rest their hand when they are painting -1,handle of paintbrushes,handle -1,knife point,point -1,tip of a knife,tip of a knife -1,oil paintbrush,paintbrush -1,tip of the paintbrushes,tip of the paintbrush -1,point of the paintbrush & the rest with the flat part,point -1,point of the dry & flattened paintbrush,point of the dry & flattened paintbrush -1,big bottle,bottle -1,paintbrushes composed of two or three rat whiskers,paintbrush -1,tip of the paintbrush,tip of the paintbrush -1,fairly large paintbrush,paintbrush -1,plumb lines,plumb line -1,tip of another ruler,tip of another ruler -1,judgement of the eye,judgement of the eye -1,molds of iron & copper,mold -1,cristallin mirror,mirror -1,oil paintbrushes,paintbrush -2,paintbrushes for oil,paintbrush -1,linen cloths soaked with water from a honey beehive,linen cloths soaked with water from a honey beehive -1,soft files,file -1,square files,file -1,wax candle,candle -1,"mortar of metal, or better yet, of iron",mortar -1,frame mold,mold -1,linen sleeve,sleeve -6,double sieve,sieve -1,tin pot,pot -1,burning paper,paper -2,chafing dish,dish -1,small stick split and quartered at the tip,small stick split and quartered at the tip -1,crooked iron,iron -1,latten wirebrush,wirebrush -1,tin dish,dish -1,well smooth table,table -1,shirt sleeve,sleeve -3,iron mortar,mortar -1,small tile oven,oven -4,earthen pot,pot -1,cloth that should be rather tight,cloth -1,spatula of wood,spatula -4,glass vial,vial -1,wolf’s tooth,tooth -2,earthen vessel,vessel -2,tooth of a wolf or dog,tooth -1,stone mortar,mortar -1,white cloth,cloth -1,very clean glass,glass -1,reinforced firkin,firkin -1,a bit of cork,a bit of cork -1,table is quite even,table is quite even -1,very fine linen,linen -2,iron rod,rod -1,iron or metal pot,pot -1,sharp point,point -1,lead mold,mold -1,iron slab,slab -1,wood stick,stick -1,common sieve,sieve -1,copper kettle,copper kettle -1,very clean & smooth table,very clean & smooth table -2,very small hog bristle brushes,brush -1,earthen pots,pot -1,the apothecaries’ double,the apothecaries’ double -1,metal mortar,mortar -1,iron pestle,pestle -1,fine copper mortars,mortar -1,large mortars,mortar -1,boulting cloth of rough cloth or canvas,cloth -1,sleeve of a shirt,sleeve -2,bronze mortar,mortar -1,mustard mill,mustard mill -1,square wooden cases,case -1,hands joined between your two knees,hands joined between your two knee -1,counter bone,bone -1,hooked rooftile,hooked rooftile -1,shards of wood,shards of wood -1,dish of fine tin,dish -1,hollow crucible,crucible -1,polished knife,knife -1,stick of the fustée,stick -1,halberd point,point -1,dog skin,dog skin -1,baston a felinder,baston a felinder -1,black stone,stone -9,iron wire,iron wire -1,"round plane, also mounted with two handles","round plane, also mounted with two handle" -1,spinning wheel,spinning wheel -1,small narrow plane,plane -1,pulverized emery,pulverized emery -1,joiners’ bench,joiners’ bench -1,baton à felinder,baton à felinder -1,joiner’s plane,plane -1,thunder stone,stone -1,small iron tool,small iron tool -1,fresil stick,stick -1,sharpening stone,sharpening stone -1,farriers’ forge,forge -1,scabbard bench,scabbard bench -1,dry chalk,chalk -1,knife with two handles,knife -1,cauldron full of ashes,cauldron -1,soft file,file -1,furbishers’ furnace,furnace -1,white linen cloth,cloth -1,"soft, very soft, file","soft, very soft, file" -1,varnished bowl,bowl -1,very fine sieve,sieve -1,iron stake,stake -1,pruning knife,pruning knife -1,small stick wrapped in tow,small stick wrapped in tow -1,head of a nail,head of a nail -1,mortar of wood,mortar -1,slab of glass,slab -2,mortar of glass,mortar -1,mortar of thick glass,mortar -1,little furnace,furnace -1,hot tile or shovel,tile -1,glowing charcoals,glowing charcoal -1,kettle of pure copper,kettle of pure copper -1,totally pure copper mortar,mortar -1,pestle of pure copper,pestle -1,thick rounded squares,thick rounded square -1,copper mortar,mortar -1,steel ver f mortar,mortar -1,glass mortar,mortar -1,cloth strainer,cloth strainer -1,unleaded pots,pot -1,terrines without lead,terrines without lead -1,pots with a lid,pot -1,pipes of fer blanc,pipes of fer blanc -1,glass vessels,vessel -1,glass vessel,vessel -1,dutch quill,quill -1,substance of wine,substance of wine -1,wet linen cloth,cloth -1,fine linen cloth,cloth -1,new wooden spatula,spatula -1,ear picker,ear picker -1,crystal mirror,mirror -1,glass globe or jar,glass globe or jar -2,very sharp penknife,penknife -1,slip of linen,slip of linen -1,very soft thread,thread -1,kneading troughs,kneading trough -1,device of little crossed sticks,device of little crossed stick -1,small wooden pin,pin -1,green cloth,cloth -1,iron presses,press -1,wire of the same metal that they cast,wire of the same metal that they cast -1,woollen cloth,cloth -1,glassmaker’s fournaise,fournaise -2,fourneau à vent,fourneau à vent -1,fornaise of those who make pots,fornaise -1,surrounded with bricks,surrounded with brick -1,twisted cord of the saw,cord -1,archal wire,archal wire -1,blade of iron reddened in the fire,blade of iron reddened in the fire -3,frame molds,mold -4,noyau molds,mold -1,molds for casting latten,mold -1,blade of lead,blade of lead -3,small bristle brushes,brush -2,wooden spoon,spoon -1,lead bowl,bowl -1,feather quills,feather quill -1,large oil paintbrushes,paintbrush -1,clean bottle or vessel,bottle -1,small curved instrument,small curved instrument -1,fine needle of steel,needle -1,solid plank or table,solid plank or table -1,point of iron,point -3,points of iron wire,point -1,"round stick, which pastry makers",stick -1,points of iron,point -1,point of an iron wire,point -1,bowl of leaded earth,bowl -1,"bowls of different size, which have a lip","bowls of different size, which have a lip" -1,delicate points of of fil cist cittern strings,point -2,point of a hot iron wire,point -1,small flat pincers,pincer -1,rough linen cloth,cloth -1,tiny hog bristle brushes,brush -2,small point,point -1,reheated molds,mold -5,little bellows,bellow -1,tempered sand mold,mold -1,barrels filled with earth & covered with manure,barrels filled with earth & covered with manure -2,tip of your finger,tip of your finger -1,wax peg,wax -1,small sticks,stick -1,bottle of water,bottle -1,wire stem,wire stem -1,mold en noyau,mold -1,iron wire wrapped in cotton,iron wire wrapped in cotton -1,wire drawing plate,plate -1,soft brush,brush -1,cut paintbrush,cut paintbrush -1,vessel filled with ashes or sand,vessel -1,large frame,frame -1,small brushes,brush -1,bottle in which one boils tisane,bottle -1,tallow candle,candle -1,good pot of water,pot -1,silver spoonfuls,spoonful -1,bottle of common water,bottle -1,trivets of iron,trivets of iron -1,fornaise of the potters,fornaise -1,sheet of tin,sheet -1,glassmaker’s fornaise,fornaise -1,flat box,box -1,barrel full of earth,barrel -1,green fabric,green fabric -1,small pointed stick,stick -1,big vessels,vessel -1,well sealed vessel,vessel -1,horsehair sieve,sieve -1,glass bottles,bottle -1,"vat, or in a cos of earth full of water",vat -1,glass boxes,box -1,"earthenware bowl, from which the peasants eat their soup",bowl -1,good lute,lute -1,point of a penknife,point -1,thick needle,needle -1,tip of a hot iron wire,tip of a hot iron wire -1,"end of a iron wire, that is hot","end of a iron wire, that is hot" -16,clay slab,slab -1,good crucible,crucible -1,good tile,tile -1,glued to the quarton,glued to the quarton -1,end of the hot iron wire,end of the hot iron wire -4,hot iron wire,hot iron wire -1,plaster molds,mold -2,plaster mold,mold -2,circle of earth,circle -1,mold of plaster,mold -1,molds of plaster,mold -1,well melted silver,well melted silver -1,well reddened mold,well reddened mold -2,small bellows,bellow -1,coarse linen,linen -1,slab of earth,slab -1,point of iron or latten wire,point -1,small points of latten wire,point -4,iron points,point -1,small board,board -1,small rings of iron wire,small rings of iron wire -1,balls of lead or of wax,balls of lead or of wax -1,points of fine iron latten wire,point -1,quite flat slate,quite flat slate -3,iron point,point -1,small molds,mold -1,little points,point -3,earthen slab,slab -1,slabs of wax,slabs of wax -1,little bands,little band -1,big molds,mold -2,small points,point -1,small & large bellows,bellow -1,brim of a burin,brim of a burin -1,stalk of copper or iron,stalk of copper or iron -1,"cloth, soaked in pig fat, mixed with saltpeter or sal ammoniac",cloth -1,flat pincers of iron wire,pincer -1,fresh clay slab,slab -1,point of an oiled paintbrush,point -3,point of a knife,point -1,knife points,point -1,steel mortar,mortar -1,things that withstand the fire,things that withstand the fire -1,small finishing hammer,hammer -1,square pots,pot -1,adapted carton,carton -1,large molds,mold -1,sheets of copper,sheet -1,stirrup or screw of iron,stirrup -1,very tight presses,press -1,point of gold or hard wood,point -1,hot slate,hot slate -1,hot penknife,penknife -1,bowl with handles,bowl -1,mold à noyau,mold -1,little stick,stick -1,mold which is of white plaster,mold -1,little chaples,little chaple -1,little hot iron,iron -2,iron wire point,point -1,appropriate thing,appropriate thing -1,slab of yellow potter’s earth,slab -2,little brushes,brush -2,circle of clay,circle -1,clay entredeux,clay entredeux -1,half mold,mold -1,band of clay,band of clay -1,fresh clay,fresh clay -1,iron wire points,point -2,little pincers,pincer -1,clay entredeulx,clay entredeulx -1,strong point,point -1,bronze mortars,mortar -1,smooth wood,wood -1,small points of wood,point -1,little piece of twisted paper,little piece of twisted paper -1,large square filee,large square filee -1,large paintbrush,paintbrush -1,clay closure,clay closure -1,au en bowl,au en bowl -1,long glass,glass -1,clay slabs,clay slab -1,thin thread,thread -1,flat molds,mold -1,points of rather strong iron,point -1,point of hot iron,point -1,entre deulx of clay,entre deulx of clay -1,entredeulx of clay,entredeulx of clay -2,clay contour,contour -2,clay circle,circle -1,"points of hot, thick iron wire",point -1,"latten skillets, which are beaten & forged thinly","latten skillets, which are beaten & forged thinly" -1,handle of a hammer,handle -2,iron case,case -4,small file,file -1,point of a small chisel,point -1,little gouge,gouge -3,small chisel,chisel -1,little round cutting-punch,little round cutting-punch -1,bad linen,linen -1,water mills,mill -1,trip hammers,hammer -1,small gouges,small gouge -1,back of a knife,back of a knife -1,hot iron touching point,point -1,small serrated chisels,chisel -1,end of your finger,end of your finger -2,common lute,lute -1,iron wires,iron wire -1,small cutting-punches,small cutting-punch -1,little small chisels,chisel -3,small chisels,chisel -1,circle of soft clay,circle -1,round cutting-punch,round cutting-punch -1,sparkling hot iron plates,plate -1,very thin comb,very thin comb -1,little candle,candle -1,leather cushionet,cushionet -1,goldsmith’s table,table -1,delicate plate of lead,plate -1,latten wire,latten wire -1,glass or smooth slate,glass -1,rolling pin,rolling pin -1,sheets of lead & copper,sheet -1,small stick of boxwood,stick -1,rolling pins,pin -1,small paintbrush,paintbrush -1,small hot point of iron,point -1,stalk of latten wire,stalk of latten wire -1,ordinary engraving burin,burin -1,hot iron wire point,point -1,hot iron point,point -1,little paintbrush,paintbrush -1,cuttlefish bones,bone -1,cotton cloth,cloth -1,sock from the right d foot that has been worn,sock from the right d foot that has been worn -1,fatty vessel,vessel -1,hot charcoal,charcoal -1,wire brush made of wires of latten.,brush -1,sheets of iron,sheet -1,plates of iron,plate -1,large wooden presses made with screws,press -1,small iron pillars,pillar -1,lighted candle,lighted candle -1,large billet,large billet -1,common vessel,vessel -1,thick stick,stick -1,bread oven,oven -1,long table,table -1,tiler’s oven,oven -1,reddened iron shovel,reddened iron shovel -1,feather quill,quill -1,small silver bowl,bowl -1,silver spoon,spoon -1,pine nut,nut -1,point of a chaple or burin,point -1,side of the burin,side of the burin -1,pieces of plump & thick felt,felt -1,wet sponge,sponge -1,small pieces points of iron or steel wire,point -1,spinet string,string -1,thick cloth,cloth -1,thick canvas,canva -1,knife-like saws,saw -1,little bells,little bell -1,iron peg,peg -1,short hooked peg,short hooked peg -1,gimlets of wheelwrights,gimlet -1,large mallet of wood,mallet -1,iron fork,iron fork -1,large augers,large auger -1,common iron pegs,peg -1,iron rod q made with three claws at the end,iron rod q made with three claws at the end -1,strap hinge,strap hinge -1,fork made like pincers,fork made like pincer -1,large iron pegs,peg -1,"small peg, hooked like the hinge of a door","small peg, hooked like the hinge of a door" -1,iron fork made in the form of pincers of the height of a man,iron fork made in the form of pincers of the height of a man -1,iron fork made like pincers,iron fork made like pincer -1,small iron pincers,pincer -1,stone from istre,stone -1,steeled iron,steeled iron -1,relief puncheons,puncheon -1,thin wire of latten,thin wire of latten -1,delicate straw,straw -1,lateres igniti,lateres igniti diff --git a/thesaurus/weapon.csv b/thesaurus/weapon.csv deleted file mode 100644 index ebeaaeb..0000000 --- a/thesaurus/weapon.csv +++ /dev/null @@ -1,54 +0,0 @@ -freq,verbatim_term,prefLabel_en -1,fireworks,firework -4,grenades,grenade -12,arquebus,arquebus -2,pistol,pistol -3,artillery,artillery -1,cannon-perriers,cannon-perrier -12,cannon,cannon -2,canno,canno -3,falconet,falconet -4,piece,piece -1,field,field -2,pieces,piece -7,cannons,cannon -1,bastardes,bastarde -1,cannon-perrier,cannon-perrier -2,passe-volant,passe-volant -1,culverins,culverin -2,culverin,culverin -1,bastarde,bastarde -2,orgues,orgue -1,gun,gun -3,petards,petard -2,petard,petard -1,grenade,grenade -1,torches,torch -1,cannonball,cannonball -1,musket,musket -1,hackbut,hackbut -1,schioppo,schioppo -1,scimitars,scimitar -1,scimitar,scimitar -1,field piece,piece -1,large cannon,cannon -1,medium pieces,piece -1,pleasure pieces,piece -1,bastard culverin,culverin -1,bastarde piece,piece -1,double musket,musket -1,small pieces,piece -2,arquebus à croc,arquebus à croc -1,field pieces,piece -1,arquebus powder,arquebus powder -1,large culverin,culverin -1,simple musket,musket -1,large culverins,culverin -1,old pieces,piece -1,smaller pieces,piece -1,large pieces,piece -1,large ordinary cannon,cannon -1,double cannon,cannon -1,chambered arquebus,arquebus -1,fowling piece,piece -1,arquebus with hail shot,arquebus