#!/usr/bin/env python # coding: utf-8 # # Autoren # In[2]: authornames = get_ipython().getoutput(' git log --pretty=format:"%aN <%aE>" HEAD') for name in sorted(set(authornames), key = lambda n : n.split("<")[0].split()[-1]): print(name) # ## Harald Schilly # # * [Webseite](http://harald.schil.ly) # * [GitHub](http://github.com/haraldschilly) # # Nachwort # ## License Note # # All text, images, media and code examples are covered by # [CC BY-SA 4.0 International](https://creativecommons.org/licenses/by-sa/4.0/). # # The only exception are full Python codefiles, # where their License is either explained in their respective headers or in absence of that, # defaults to [Apache 2.0](http://www.apache.org/licenses/LICENSE-2.0.html) #