#elixir #scraper #httpoison #alchemist #programming
Elixir , httpoison, floki scrapper
https://medium.com/@miprio101/elixir-httpoison-floki-scrapper-22bc4267b99a
Elixir , httpoison, floki scrapper
https://medium.com/@miprio101/elixir-httpoison-floki-scrapper-22bc4267b99a
Medium
Elixir , Httpoison, Floki Scrapper
I started to work with elixir language short times ago. And as people says there are no other way better than creating a small or two side…
#elixir #httpoison
Download large files with httpoison async requests
https://medium.com/@asusmel/download-large-files-with-httpoison-async-requests-61c24a27021a
Download large files with httpoison async requests
https://medium.com/@asusmel/download-large-files-with-httpoison-async-requests-61c24a27021a
Medium
Download Large Files with HTTPoison Async Requests
With HTTPoison is really easy to do HTTP requests in Elixir. If we need to get the latest BTC-USD exchange rate from the Coinbase API, we just use the HTTPoison.get! passing the url and query…
#concurrency #elixir #httpoison #receive #send
The primitives of elixir concurrency: a full example
https://medium.com/@asusmel/the-primitives-of-elixir-concurrency-full-example-f328f60519
The primitives of elixir concurrency: a full example
https://medium.com/@asusmel/the-primitives-of-elixir-concurrency-full-example-f328f60519
Medium
The Primitives of Elixir Concurrency: a Full Example
Let’s put in practice what we’ve seen in the last few articles about concurrency. In this article we see how to fully make our initial cryptocurrency example, using just HTTPoison module and spawn…
#async #elixir #httpoison #stream
Elixir streams to process large http responses on the fly
https://medium.com/@asusmel/elixir-streams-to-process-large-http-responses-on-the-fly-9063507f9e
Elixir streams to process large http responses on the fly
https://medium.com/@asusmel/elixir-streams-to-process-large-http-responses-on-the-fly-9063507f9e
Medium
Elixir Streams to process large HTTP responses on the fly
Why should we handle HTTP responses with Streams, when we can just simply use something like HTTPoison.get to receive a response with the data we need? We already saw how HTTPoison, by default, saves…
#elixir #httpoison #stream
Elixir stream and large http responses: processing text
https://medium.com/@asusmel/elixir-stream-and-large-http-responses-processing-text-c8f759c72602
Elixir stream and large http responses: processing text
https://medium.com/@asusmel/elixir-stream-and-large-http-responses-processing-text-c8f759c72602
Medium
Elixir Stream and large HTTP responses: processing text
You find the code, of this and the previous article, on poeticoding/httpstream_articles GitHub repo. The code at this repo is not meant for production use, is just part of the experiments of these…