Loading 1 - Overview.ipynb +18 −0 Original line number Diff line number Diff line %% Cell type:markdown id: tags: # Free Stuff For Devs **Use Images, Text, Webarchive and Catalogue Data from the Austrian National Library in Jupyter Notebooks** **Workshop 2019-05-03 - PyDays19** [https://labs.onb.ac.at](https://labs.onb.ac.at) *Georg Petz, Stefan Karner - Austrian National Library* %% Cell type:markdown id: tags: # 1 - Overview [https://labs.onb.ac.at](https://labs.onb.ac.at) %% Cell type:markdown id: tags: ### What's gonna happen here? * Part 1: Overview * What's this all about? * Who are these clowns? * What do I need? * Part 2: Metadata and Catalogue * Part 3: Images and Text * Part 4: Webarchive %% Cell type:markdown id: tags: **TODO** * Im Workshop oder nach dem Workshop erschaffene Dinge beim Symposium präsentieren? * Erwähnung "Bring Your Project" %% Cell type:markdown id: tags: ## Used Libraries * **requests** - HTTP for humans [https://2.python-requests.org/en/master/](https://2.python-requests.org/en/master/) * **pandas** - spreadsheets for Python on steroids [https://pandas.pydata.org/](https://pandas.pydata.org/) * **jsonpath** - xpath for json [https://github.com/h2non/jsonpath-ng](https://github.com/h2non/jsonpath-ng) * **lxml** - xml parser and xpath (version 1) implementation [https://lxml.de/](https://lxml.de/) * **sickle** - OAI-PMH for humans [https://sickle.readthedocs.io/en/latest/](https://sickle.readthedocs.io/en/latest/) * **pyswagger** - dynamic OpenAPI / Swagger client [https://github.com/pyopenapi/pyswagger](https://github.com/pyopenapi/pyswagger) %% Cell type:code id: tags: ``` python ``` Loading
1 - Overview.ipynb +18 −0 Original line number Diff line number Diff line %% Cell type:markdown id: tags: # Free Stuff For Devs **Use Images, Text, Webarchive and Catalogue Data from the Austrian National Library in Jupyter Notebooks** **Workshop 2019-05-03 - PyDays19** [https://labs.onb.ac.at](https://labs.onb.ac.at) *Georg Petz, Stefan Karner - Austrian National Library* %% Cell type:markdown id: tags: # 1 - Overview [https://labs.onb.ac.at](https://labs.onb.ac.at) %% Cell type:markdown id: tags: ### What's gonna happen here? * Part 1: Overview * What's this all about? * Who are these clowns? * What do I need? * Part 2: Metadata and Catalogue * Part 3: Images and Text * Part 4: Webarchive %% Cell type:markdown id: tags: **TODO** * Im Workshop oder nach dem Workshop erschaffene Dinge beim Symposium präsentieren? * Erwähnung "Bring Your Project" %% Cell type:markdown id: tags: ## Used Libraries * **requests** - HTTP for humans [https://2.python-requests.org/en/master/](https://2.python-requests.org/en/master/) * **pandas** - spreadsheets for Python on steroids [https://pandas.pydata.org/](https://pandas.pydata.org/) * **jsonpath** - xpath for json [https://github.com/h2non/jsonpath-ng](https://github.com/h2non/jsonpath-ng) * **lxml** - xml parser and xpath (version 1) implementation [https://lxml.de/](https://lxml.de/) * **sickle** - OAI-PMH for humans [https://sickle.readthedocs.io/en/latest/](https://sickle.readthedocs.io/en/latest/) * **pyswagger** - dynamic OpenAPI / Swagger client [https://github.com/pyopenapi/pyswagger](https://github.com/pyopenapi/pyswagger) %% Cell type:code id: tags: ``` python ```