Metadata-Version: 1.1
Name: warp-proxy
Version: 0.1.0
Summary: Simple http transparent proxy made in Python 3.4
Home-page: https://github.com/devunt/warp
Author: JuneHyeon Bae
Author-email: devunt@gmail.com
License: MIT License
Description: WARP
        ====
        
        Simple http transparent proxy made in python 3.4
        
        This is proof-of-concept code.
        
        
        Dependency
        ----------
        
        * python >= 3.4.0
        
        How to install
        --------------
        
        You can install **warp** using ``pip``:
        
        .. code-block:: console
        
           $ pip install warp-proxy
        
        Or if you're interested in bleeding edge of the master branch give it a try:
        
        .. code-block:: console
        
           $ git clone git://github.com.devunt/warp.git
           $ cd warp/
           $ pip install -e .
        
        
        How to use
        ----------
        
        1. run ``warp`` command (or you might need to run ``warp.py`` instead
           if setuptools isn't installed in your system)
        
           .. code-block:: console
        
              $ warp
        
        2. set browser's proxy setting to 
        
           http proxy
              host: 127.0.0.1
              port: 8800
        
           https proxy
              host: 127.0.0.1
              port: 8800
              (https proxy is not recommended)
        
        3. ???
        
        4. PROFIT!
        
        Command help
        ------------
        
        .. code-block:: console
        
           $ python warp.py --help
        
        License
        -------
        
        MIT License (included in ``warp.py``)
        
        면책조항
        --------
        
        1. WARP를 사용함으로써 생기는 모든 책임은 사용자에게 있습니다.
        2. WARP의 코드 기여자들은 사용에 관한 책임을 지지 않습니다.
        
        Notice
        ------
        
        1. may not work in
        
           * some ISPs
           * some company firewalls
           * some school firewalls
           * some browers (will fix it later)
        
        Special thanks to
        -----------------
        
        * peecky (https://github.com/peecky) for lots of improvement code contributes.
        * Young-Ho Cha (https://github.com/ycha) for randomize feed hostname code.
        * Hong Minhee (https://github.com/dahlia) for python syntax and optparse implementaion.
        * Park Jeongmin (https://github.com/pjm0616) for dummy header ideas.
        * EJ Lee (https://github.com/hdformat) for firefox support code.
        * Inseok Lee (https://github.com/dlunch) for english grammers :p
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Internet :: Proxy Servers
Classifier: Topic :: Internet :: WWW/HTTP
