netrc alternatives and similar packages
Based on the "Miscellaneous" category.
Alternatively, view netrc alternatives based on common mentions on social networks and blogs.
-
ex_rated
ExRated, the Elixir OTP GenServer with the naughty name that allows you to rate-limit calls to any service that requires it. -
ecto_autoslug_field
Automatically create slugs for Ecto schemas. -
countriex
All sorts of useful information about every country. A pure elixir port of the ruby Countries gem -
gen_task
Generic Task behavior that helps encapsulate errors and recover from them in classic GenStage workers. -
exprint
A printf / sprintf library for Elixir. It works as a wrapper for :io.format. -
Jisho-Elixir
A Japanese dictionary API; a wrapper around Jisho's API (http://jisho.org) -
egaugex
A simple egauge parser to retrieve and parse data from egauge devices -
mixstar
Elixir Mix task to starring GitHub repository with `mix deps.get`ting dependent library -
presentex
Elixir -> HTML/JavaScript based presentation framework intended for showing Elixir code
Collect and Analyze Billions of Data Points in Real Time
Do you think we are missing an alternative of netrc or a related project?
Popular Comparisons
README
Netrc - Reads netrc files implemented in Elixir
Installation
Add :netrc
library to your project's dependencies in mix.exs
:
defp deps do
[
{:netrc, "~> 0.0.1"}
]
end
And fetch:
$ mix deps.get
Usage
Read netrc files
Read the user's default netrc file:
iex> Netrc.read
%{"api.github.com" => %{"login" => "username", "password" => "pass"}}
Read the specific file path:
iex> Netrc.read("test/data/sample.netrc")
%{"m" => %{"login" => "l", "password" => "p"}}
License
Copyright © 2014-2015 Takayuki Matsubara, released under the MIT license.
*Note that all licence references and agreements mentioned in the netrc README section above
are relevant to that project's source code only.