diff --git a/CommitTest.txt b/CommitTest.txt deleted file mode 100644 index 28f409f..0000000 --- a/CommitTest.txt +++ /dev/null @@ -1 +0,0 @@ -test content for git tutorial diff --git a/HTTPy.py b/HTTPy.py new file mode 100644 index 0000000..2a3bcd5 --- /dev/null +++ b/HTTPy.py @@ -0,0 +1,8 @@ +#!/bin/python2.7 + +import httplib +conn = httplib.HTTPSConnection("www.python.org") +conn.request("GET", "/") +r1 = conn.getresponse() + +print r1.read() diff --git a/test.py b/test.py deleted file mode 100644 index 646530d..0000000 --- a/test.py +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/python2.7 - -print "I hope this works :D"