In particular [httpoutput](https://github.com/geopython/stetl/blob/master/stetl/outputs/httpoutput.py) uses `httplib` which relies on `urllib` and only supports HTTP/1.0 which causes problems in some setups. Better is to use the [requests](http://docs.python-requests.org/en/master/) package, also has a simpler programming model.
In particular httpoutput uses
httplibwhich relies onurlliband only supports HTTP/1.0 which causes problems in some setups.Better is to use the requests package, also has a simpler programming model.