An open API service indexing awesome lists of open source software.

https://github.com/raphexion/httpoisons

Minimal helper library to do many httpoison get in parallel
https://github.com/raphexion/httpoisons

Last synced: 2 months ago
JSON representation

Minimal helper library to do many httpoison get in parallel

Awesome Lists containing this project

README

        

# Httpoisons

```
alias Httpoisons.Example.Server

Server.start_link
url = "https://jsonplaceholder.typicode.com/todos/1"
for _ <- 1..100, do: spawn(fn -> Server.get url end)
```