Popularity
1.8
Declining
Activity
0.0
Stable
8
1
4
Monthly Downloads: 11
Programming language: Elixir
License: MIT License
Tags:
Third Party APIs
forecast_io alternatives and similar packages
Based on the "Third Party APIs" category.
Alternatively, view forecast_io 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
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai

Do you think we are missing an alternative of forecast_io or a related project?
README
ForecastIO
Simple wrapper for Forecast.IO
Usage
export FORECAST_IO_KEY=yourkey
Include forecast_io
defp deps do
[
{:forecast_io, "~> 0.2.2"},
]
end
Start and use
ForecastIO.start()
{:ok, result } = ForecastIO.forecast("28.6353","-106.0889")
current = ForecastIO.current(result)
Use ForecastIO Time API
{mega, secs, _ } = :os.timestamp
now = mega * 1000000 + secs
ForecastIO.start()
{:ok, result } = ForecastIO.forecast_time("28.6353","-106.0889", now)
current = ForecastIO.current(result)