Slides: http://www.slideshare.net/azaroth42/community-challenges-for-practical-linked-open-data-linked-pasts-keynote This file: http://bit.ly/usable_lod
Comments very welcome below!
Approximately what I said during the keynote.
| def remove_umlaut(string): | |
| """ | |
| Removes umlauts from strings and replaces them with the letter+e convention | |
| :param string: string to remove umlauts from | |
| :return: unumlauted string | |
| """ | |
| u = 'ü'.encode() | |
| U = 'Ü'.encode() | |
| a = 'ä'.encode() | |
| A = 'Ä'.encode() |
Slides: http://www.slideshare.net/azaroth42/community-challenges-for-practical-linked-open-data-linked-pasts-keynote This file: http://bit.ly/usable_lod
Comments very welcome below!
Approximately what I said during the keynote.
| import logging | |
| from traceback import format_exc | |
| import datetime | |
| from schedule import Scheduler | |
| logger = logging.getLogger('schedule') | |