KinoCurl 


cURL integration with Kino for Livebook.
Automatically converts curl commands in a Livebook into executable Elixir code.
Installation
To install KinoCurl in a Livebook, you can use Mix.install/2:
Mix.install([
{:kino_curl, "~> 0.2.0"}
])See also
If you're using Req in your Livebook you may also be interested in Merquery and curl_req.
Notes
- parse-curl.js is currently being used for parsing cURL commands including the flags/arguments.
- ex_curl is being used for executing requests using native libcurl code. This means libcurl must be present in the runtime environment.