diff options
author | yvesf <yvesf@d0e8fea9-7529-0410-93fb-d39fd5b9c1dd> | 2009-05-28 15:10:49 +0000 |
---|---|---|
committer | yvesf <yvesf@d0e8fea9-7529-0410-93fb-d39fd5b9c1dd> | 2009-05-28 15:10:49 +0000 |
commit | f3a07bcf2fc2bcaae96a6b6f7b8d07c804515cf4 (patch) | |
tree | 42e88a0baa4d0c452ca5401b7204fce913449a7f /count.py | |
parent | f1c42c2190eafbf043dc16e51bb956e0dba0e2b8 (diff) | |
download | omegle-f3a07bcf2fc2bcaae96a6b6f7b8d07c804515cf4.tar.gz omegle-f3a07bcf2fc2bcaae96a6b6f7b8d07c804515cf4.zip |
blah
git-svn-id: http://xapek.org/svn/common/omegle@1028 d0e8fea9-7529-0410-93fb-d39fd5b9c1dd
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() - |