Go to file
2016-01-11 08:10:36 +01:00
netlib Simplified setting the source_address in the TCPClient constructor 2016-01-11 08:10:36 +01:00
test Add test for empty header field value. 2015-11-17 06:51:22 +11:00
tools cleanup code with autopep8 2015-05-27 11:19:11 +02:00
.appveyor.yml update appveyor 2015-09-21 01:13:59 +02:00
.coveragerc always use py.test 2015-09-21 01:08:19 +02:00
.env update .env 2015-09-01 18:58:18 +02:00
.gitignore python3++ 2015-09-20 19:40:09 +02:00
.landscape.yml synchronize metadata files across projects 2015-06-26 23:43:08 +02:00
.travis.yml always use py.test 2015-09-21 01:08:19 +02:00
check_coding_style.sh improve meta code 2015-06-15 11:58:24 +02:00
CONTRIBUTORS bump version 2015-12-25 16:00:50 +01:00
LICENSE Add an explicit license file. 2014-02-26 10:09:36 +13:00
MANIFEST.in README: mkd -> rst 2015-11-29 19:04:19 +01:00
README.rst README: mkd -> rst 2015-11-29 19:04:19 +01:00
requirements.txt remove pathod as dependency 2015-09-13 14:33:45 +02:00
setup.py update ssl_match_hostname dependency, refs #868 2015-12-25 15:56:26 +01:00

|travis| |coveralls| |downloads| |latest-release| |python-versions|

Netlib is a collection of network utility classes, used by the pathod and
mitmproxy projects. It differs from other projects in some fundamental
respects, because both pathod and mitmproxy often need to violate standards.
This means that protocols are implemented as small, well-contained and flexible
functions, and are designed to allow misbehaviour when needed.


Hacking
-------

If you'd like to work on netlib, check out the instructions in mitmproxy's README_.

.. |travis| image:: https://img.shields.io/travis/mitmproxy/netlib/master.svg
    :target: https://travis-ci.org/mitmproxy/netlib
    :alt: Build Status

.. |coveralls| image:: https://img.shields.io/coveralls/mitmproxy/netlib/master.svg
    :target: https://coveralls.io/r/mitmproxy/netlib
    :alt: Coverage Status

.. |downloads| image:: https://img.shields.io/pypi/dm/netlib.svg?color=orange
    :target: https://pypi.python.org/pypi/netlib
    :alt: Downloads

.. |latest-release| image:: https://img.shields.io/pypi/v/netlib.svg
    :target: https://pypi.python.org/pypi/netlib
    :alt: Latest Version

.. |python-versions| image:: https://img.shields.io/pypi/pyversions/netlib.svg
    :target: https://pypi.python.org/pypi/netlib
    :alt: Supported Python versions

.. _README: https://github.com/mitmproxy/mitmproxy#hacking