Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 477 Bytes

README.markdown

File metadata and controls

16 lines (10 loc) · 477 Bytes

hs-GeoIP: Geolocation in Haskell using MaxMind GeoIPCity

This library provides fast, pure Haskell bindings to the MaxMind GeoIPCity database and the C library.

The workflow mirrors the various MaxMind bindings to other languages with a flavor of Haskell introduced for safe operation.

Here is an example session:

geoLookup = do
  g <- openGeoDB  "GeoLiteCity.dat" memory_cache
  geoLocateByIPAddress g "5.5.5.5"

Please see haddocks for additional details.