Popularity
0.8
Declining
Activity
0.0
Stable
4
2
0

Description

Elixir OTP application wrapper for the World Population API (more information here http://api.population.io/)

Monthly Downloads: 26
Programming language: Elixir
License: MIT License
Tags: Miscellaneous     OTP     Statistics     Data     Population     Demographics    

Population alternatives and similar packages

Based on the "Statistics" category.
Alternatively, view Population alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of Population or a related project?

Add another 'Statistics' Package

README

Population

Elixir OTP application library for the World Population API.

Public API

See the full online documentation here.

Countries: list available countries

Life Expectancy: calculate life expectancy

Mortality Distribution: retrieve mortality distribution tables

World Population Rank: determine world population rank

Population : retrieve population tables

Installation

  1. Add population to your list of dependencies in mix.exs:
def deps do
  [{:population, "~> 0.1.0"}]
end
  1. Ensure population is started before your application:
def application do
  [applications: [:population]]
end