Skip to content

Instantly share code, notes, and snippets.

@js2854
js2854 / webserver.py
Last active August 29, 2015 14:08
webserver example do POST and parser xml content of POST data
#!/usr/bin/python
#-*- coding: UTF-8 -*-
import sys
import string,cgi,time
import xml.etree.ElementTree as ET
from BaseHTTPServer import BaseHTTPRequestHandler, HTTPServer
URL_ROUTE = {
'/baidu/' : 'http://baidu.com/',
#!/usr/bin/env python
"""
Very simple HTTP server in python.
Usage::
./dummy-web-server.py [<port>]
Send a GET request::
curl http://localhost
## Google全球IP地址库
=====>> [宽屏查看](./README.md) <<=====
+短地址①:<http://tinyurl.com/Google-IPs>
+短地址②:<http://dwz.cn/Google-IPs>
<table>
<tbody>
<tr>
@js2854
js2854 / rewrite.py
Created September 9, 2013 07:28 — forked from binux/rewrite.py
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
# vim: set et sw=4 ts=4 sts=4 ff=unix fenc=utf8:
# Author: Binux<[email protected]>
# http://binux.me
# Created on 2012-09-06 22:22:21
import urlparse
import re