IP2Country
IP2Country is a simple geolocating module (IP -> Country Code) with built-in database.
Installation
The package can be installed
by adding ip2country to your list of dependencies in mix.exs:
def deps do
[{:ip2country, "~> 1.0.0"}]
endUsage
iex> IP2Country.whereis("51.254.116.38")
:FR
iex> IP2Country.whereis("176.9.20.99")
:DE
iex> IP2Country.whereis("83.144.118.166")
:PLDatabase
Database is provided by https://db-ip.com, and it is compiled into the module. Compilation time is about 20 seconds on 2-core machine.
To update the database, download it from https://db-ip.com/db/download/country, unzip and replace the file
located in lib/db.
The free IP-to-country database by DB-IP is licensed under a Creative Commons Attribution 4.0 International License.
Contact
(c)2017 Tomek "Grych" Gryszkiewicz, grych@tg.pl