http_stream
http_stream copied to clipboard
A tiny tiny Elixir library to stream big big files
To me it seems odd to pass query params as an enum since they are already in the URL we sent to the lib. My problem is that I have...
Could the deps on mint and httpoison be relaxed a bit to work with mint 1.4 and httpoison 1.8 without overriding? Thanks
I have tried following the examples, e.g. ``` iex> url = "https://foo.com/large_file.gz" iex> HTTPStream.get(url) |> Stream.into(File.stream!("large_file.gz")) |> Stream.run() ``` Expected result: the file downloads into the specified target file. Actual...
Why: * `on_exit` callbacks run in a separate process, which means that between tests the server might actually still be running. * This is leading to stochastic builds on CI....