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. -
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.
InfluxDB - Purpose built for real-time analytics at any scale.
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.