Popularity
0.3
Declining
Activity
0.0
Stable
0
1
1
Monthly Downloads: 4
Programming language: Elixir
License: Apache License 2.0
Tags:
Third Party APIs
mmExchangeRate alternatives and similar packages
Based on the "Third Party APIs" category.
Alternatively, view mmExchangeRate alternatives based on common mentions on social networks and blogs.
-
Semaphore
Semaphore is an open source CI/CD platform. Self-host Semaphore on your own servers or on a cloud provider. -
MongoosePush
MongoosePush is a simple Elixir RESTful service allowing to send push notification via FCM and/or APNS. -
cashier
Cashier is an Elixir library that aims to be an easy to use payment gateway, whilst offering the fault tolerance and scalability benefits of being built on top of Erlang/OTP
Stream - Scalable APIs for Chat, Feeds, Moderation, & Video.
Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Feeds, Moderation, and Video APIs and SDKs powered by a global edge network and enterprise-grade infrastructure.
Promo
getstream.io

Do you think we are missing an alternative of mmExchangeRate or a related project?
README
MmExchangeRate
A simple exchange rate checker and calculator based on Central Bank of Myanmar Api in elixir. You can find it on hex.
Before you try it, make sure you've install elixir 1.* In mix.exs,
defp deps do
[
{:ibrowse, github: "cmullaparthi/ibrowse", tag: "v4.1.0"},
{:mmExchangeRate, "~> 0.0.1"}
]
end
To check available currency list
MmExchangeRate.currencies()
To check today exchange rate
MmExchangeRate.today("usd") # default currency is usd if paramter is empty
To calculate rate with today exchange rate
MmExchangeRate.calculate(100, "usd") # default currency is usd if paramter is empty
To check exchange rate history
MmExchangeRate.from("dd-mm-yyyy", "usd") # default currency is usd if paramter is empty