diff --git a/OAI-PMH.ipynb b/OAI-PMH.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..681c147131feb70f95c1353269ae53d7f07835dc --- /dev/null +++ b/OAI-PMH.ipynb @@ -0,0 +1,76 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "from sickle import Sickle" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "sickle = Sickle('https://eu02.alma.exlibrisgroup.com/view/oai/43ACC_ONB/request')\n", + "records = sickle.ListRecords(metadataPrefix='oai_dc', set='ABODC')\n", + "meta = records.next().metadata\n", + "ids = meta.get('identifier')" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'9957805251203338'" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "mms = [i for i in ids if i.startswith('alma:43ACC_ONB/bibs/')]\n", + "mms[0].strip('alma:43ACC_ONB/bibs/')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 2", + "language": "python", + "name": "python2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +}