From efb25f723f5160a9fa674d9c498d6041d5fe10be Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Fri, 20 Dec 2013 01:35:59 +0900 Subject: [PATCH] Update README.rst in python dir --- python/README.rst | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/python/README.rst b/python/README.rst index e6232240..dbb1fb21 100644 --- a/python/README.rst +++ b/python/README.rst @@ -6,9 +6,9 @@ header compressor and decompressor are implemented in extension using cython. This is experimental and adds some dependencies which is a bit hard to -check, so this extension module does not built with usual ``make -install`` in the top directory. Instead, a user has to run ``make -build_ext`` in this directory. +check, so this extension module does not built with usual ``make`` in +the top directory. Instead, a user has to run ``make build_ext`` in +this directory. The build extension module is called ``nghttp2``. @@ -37,3 +37,6 @@ decompressor:: data = deflater.deflate([(b'foo', b'bar'), (b'baz', b'buz')]) print(binascii.b2a_hex(data)) + + hdrs = inflater.inflate(data) + print(hdrs)