diff options
Diffstat (limited to 'count.py')
-rw-r--r-- | count.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/count.py b/count.py deleted file mode 100644 index e175f2c..0000000 --- a/count.py +++ /dev/null @@ -1,16 +0,0 @@ -import httplib -import urllib - -headers = { - "Host" : "omegle.com", - "Content-type": "application/x-www-form-urlencoded; charset=utf-8", - "Accept": "application/json" -} -conn = httplib.HTTPConnection('www.omegle.com') -conn.request("GET", - "/count", - urllib.urlencode({}), - headers) -print conn.getresponse().read() -conn.close() - |