Coder Social home page Coder Social logo

ip2loc's Introduction

IP2Loc

Godoc Reference Build Status Coverage Status MIT License

An IP2Location binary data query engine that only works with the DB1 (Country) database.

There are a few major differences between this and the official library, ip2location/ip2location-go:

  • It only supports the DB1 (Country) database;
  • Every function can return an error;
  • No print statements;
  • It's faster and consumes less memory.

Installation

go get -u github.com/tserkov/ip2loc

Usage

It's all in the godoc.

Example

import "github.com/tserkov/ip2loc"
db, err := ip2loc.New("/path/to/db.bin")
if err != nil {
	// handle it
}
defer db.Close()

result, err := db.Query("8.8.8.8")
if err != nil {
	// handle it
}

fmt.Printf(
	"Country Code: %s\nCountry Name: %s\n",
	result.CountryCode,
	result.CountryName,
)

Bonus: A binary!

If you happen to be on Linux, this repository contains an executable that accepts space-delimited IPs via arguments or stdin and spits out results in {IP} {Country Name} ({Country Code}) format to stdout.

It does require that the environment variable IP2LOC_DB be set to the path to the ip2location db1 bin.

License

The super permissive MIT License.

Contributing

While I don't plan on supporting databases beyond DB1, I will gladly take any performance-enhancing contributions.

ip2loc's People

Contributors

tserkov avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.