import httplib connection = httplib.HTTPSConnection('api.github.com') connection.request('GET', 'https://api.github.com/repos/mojombo/jekyll/issues/624', '') antwort = connection.getresponse() inhalt = antwort.read() print inhalt