In [10]:
import urllib2

search_address = "http://lernpython.de/21-machine-learning-pythonmodule-auf-github"
response = urllib2.urlopen(search_address)
html = response.read()

html2 = html.split('"')

htmllist2=[]
for i in html2:
    if i.startswith("https://"):
        htmllist2.append(i)

for i in htmllist2:
    print i

print htmllist2
https://github.com/scikit-learn/scikit-learn
https://github.com/numenta/nupic
https://github.com/machinalis/iepy
https://github.com/machinalis/quepy
https://github.com/machinalis/featureforge
https://github.com/jaberg/skdata
https://github.com/rasbt/mlxtend
https://github.com/awslabs/machine-learning-samples
https://github.com/yandex/rep
https://github.com/dclambert/Python-ELM
https://github.com/mila-udem/fuel
https://github.com/nilearn/nilearn
https://github.com/idiap/bob
https://github.com/pybrain/pybrain
https://github.com/clips/pattern
https://github.com/lisa-lab/pylearn2
https://github.com/luispedro/milk
https://github.com/numenta/nupic
https://github.com/kvh/ramp
https://github.com/dnouri/nolearn
https://github.com/Theano/Theano
https://wordpress.org/
https://twitter.com/LernPython
https://plus.google.com/u/0/b/113953830726006933556/113953830726006933556/about/p/pub
https://www.youtube.com/channel/UCDAyGmoqHuntjme879CpDxA
https://de.linkedin.com/in/lorenzsteinbock
https://s7.addthis.com/js/300/addthis_widget.js
https://platform.twitter.com/widgets.js
['https://github.com/scikit-learn/scikit-learn', 'https://github.com/numenta/nupic', 'https://github.com/machinalis/iepy', 'https://github.com/machinalis/quepy', 'https://github.com/machinalis/featureforge', 'https://github.com/jaberg/skdata', 'https://github.com/rasbt/mlxtend', 'https://github.com/awslabs/machine-learning-samples', 'https://github.com/yandex/rep', 'https://github.com/dclambert/Python-ELM', 'https://github.com/mila-udem/fuel', 'https://github.com/nilearn/nilearn', 'https://github.com/idiap/bob', 'https://github.com/pybrain/pybrain', 'https://github.com/clips/pattern', 'https://github.com/lisa-lab/pylearn2', 'https://github.com/luispedro/milk', 'https://github.com/numenta/nupic', 'https://github.com/kvh/ramp', 'https://github.com/dnouri/nolearn', 'https://github.com/Theano/Theano', 'https://wordpress.org/', 'https://twitter.com/LernPython', 'https://plus.google.com/u/0/b/113953830726006933556/113953830726006933556/about/p/pub', 'https://www.youtube.com/channel/UCDAyGmoqHuntjme879CpDxA', 'https://de.linkedin.com/in/lorenzsteinbock', 'https://s7.addthis.com/js/300/addthis_widget.js', 'https://platform.twitter.com/widgets.js']