Skip to content

Commit

Permalink
Initial commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alard committed Jun 3, 2012
0 parents commit 54ea679
Show file tree
Hide file tree
Showing 16 changed files with 2,103 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -0,0 +1 @@
*.pyc
11 changes: 11 additions & 0 deletions README.md
@@ -0,0 +1,11 @@
WARC proxy for browsing the contents of a WARC file.

(This must become much easier.)

1. Find a WARC file.
2. Install the Python Twisted library (http://twistedmatrix.com/trac/wiki/Downloads). On Ubuntu or Debian: <code>sudo apt-get install python-twisted</code>
3. Check out the code: <code>git clone https://github.com/alard/warc-proxy</code>
4. Run the proxy: <code>python warcproxy.py ${THEWARCFILE}</code>
5. Set the HTTP proxy of your browser to <code>localhost</code> port <code>8000</code>
6. Visit <code>http://warc/</code> and click on an URL

1 change: 1 addition & 0 deletions hanzo/__init__.py
@@ -0,0 +1 @@
__import__('pkg_resources').declare_namespace(__name__)
7 changes: 7 additions & 0 deletions hanzo/httptools/__init__.py
@@ -0,0 +1,7 @@
from hanzo.httptools.messaging import RequestMessage, ResponseMessage


__all__ = [
"RequestMessage",
"ResponseMessage",
]

0 comments on commit 54ea679

Please sign in to comment.