{ "cells": [ { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "from lxml import etree\n", "import requests\n", "import pandas as pd" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "To get the MMS ID for a given barcode, get the metadata via `https://obv-at-oenb.alma.exlibrisgroup.com/view/sru/43ACC_ONB?version=1.2&query=alma.barcode=startRecord=0&maximumRecords=1&operation=searchRetrieve&recordSchema=dc` and extract the MMS ID with `/srw:searchRetrieveResponse/srw:records/srw:record/srw:recordIdentifier/text()`.\n", "\n", "Linked Data from ALMA (library management system) can be retrieved in \n", "\n", "* BIBFRAME via `https://open-na.hosted.exlibrisgroup.com/alma//bf/entity/instance/`\n", "* JSON-LD via `https://open-na.hosted.exlibrisgroup.com/alma//bibs/.jsonld`\n", "* RDA/RDF via `https://open-na.hosted.exlibrisgroup.com/alma//rda/entity/manifestation/.rdf`\n", "\n", "For a Network Zone MMS ID the institution code is 43ACC_NETWORK and for the Institution MMS ID it is 43ACC_ONB.\n", "\n", "The following xpath `/rdf:RDF/bf:Instance/bf:hasItem/bf:Item/bf:electronicLocator/rdfs:Resource/bflc:locator/@rdf:resource` selects URLs of the Viewer. We use the + sign (URL encoded %2B) to spilt the URL in order to extract the Barcode." ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "def getMMS_ID(barcode):\n", " cont=requests.get('https://obv-at-oenb.alma.exlibrisgroup.com/view/sru/43ACC_ONB?version=1.2&query=alma.barcode=%2BZ' + barcode + '&startRecord=0&maximumRecords=1&operation=searchRetrieve&recordSchema=dc').content\n", " e = etree.XML(cont)\n", " namespaces = {\n", " 'srw': 'http://www.loc.gov/zing/srw/'\n", " }\n", " result = e.xpath('/srw:searchRetrieveResponse/srw:records/srw:record/srw:recordIdentifier/text()', namespaces=namespaces)\n", " return result[0]\n", "\n", "def getLinksAndBarcodes(local_mms_id):\n", " cont=requests.get('https://open-na.hosted.exlibrisgroup.com/alma/43ACC_ONB/bf/entity/instance/' + local_mms_id).content\n", " e = etree.XML(cont)\n", " namespaces = {\n", " 'rdf': 'http://www.w3.org/1999/02/22-rdf-syntax-ns#',\n", " 'bf': 'http://id.loc.gov/ontologies/bibframe/',\n", " 'rdfs': 'http://www.w3.org/2000/01/rdf-schema#',\n", " 'bflc': 'http://id.loc.gov/ontologies/bflc/'\n", " }\n", " result = e.xpath('/rdf:RDF/bf:Instance/bf:hasItem/bf:Item/bf:electronicLocator/rdfs:Resource/bflc:locator/@rdf:resource', namespaces=namespaces)\n", " barcodes = []\n", " for link in result:\n", " splits = link.split('%2B')\n", " if len(splits) >= 2:\n", " barcodes.append('+' + link.split('%2B')[1])\n", " print(local_mms_id + ': ' + \", \".join(barcodes))\n", " linksJoined = \", \".join(result)\n", " barcodesJoined = \", \".join(barcodes)\n", " #returns a list with URLs and Barcodes\n", " return [linksJoined, barcodesJoined]" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "990035648370603338: +Z219890307, +Z255756803\n" ] }, { "data": { "text/plain": [ "['http://data.onb.ac.at/ABO/%2BZ219890307, http://data.onb.ac.at/ABO/%2BZ255756803',\n", " '+Z219890307, +Z255756803']" ] }, "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], "source": [ "mms_id = getMMS_ID(str(255756803))\n", "getLinksAndBarcodes(str(mms_id))" ] }, { "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.6.7" } }, "nbformat": 4, "nbformat_minor": 1 }