Requests.jl
Requests.jl copied to clipboard
[DEPRECATED in favor of https://github.com/JuliaWeb/HTTP.jl] HTTP for Julians
https://github.com/JuliaWeb/Requests.jl/issues/166 ```julia julia> using Requests julia> html = "https://github.com/johnmyleswhite/RDatasets.jl/raw/master/data/MASS/SP500.csv.gz" "https://github.com/johnmyleswhite/RDatasets.jl/raw/master/data/MASS/SP500.csv.gz" julia> Requests.read(get(html)) 24348-element Array{UInt8,1}: 0x1f 0x8b 0x08 0x08 0xc7 0x80 0xcb 0x52 0x02 0x03 0x53 0x50 0x35 0x30 0x30 0x2e...
Closing a `ResponseStream` would still allow you to continue reading content from the buffer. I've updated the code to work similarly to how `IOStream`'s behave.
`print` calls `write` multiple times which results in unnecessary fragmentation on the stream. Try to insure that the entire request is sent out in as few packets as possible by...
This pull request adds HTTP/2 support for Requests.jl. Help on testing and code review are highly appreciated! To use it, you need to checkout `master` of [HPack.jl](http://github.com/sorpaas/HPack.jl) (header compression implementation),...
I ran into this error and was able to solve it by using the example from the Codecs docs to get the string. Weirdly I've not been able to get...
Added support for no_proxy settings from env var. Also modified tunnel setting to support both https and http.