Skip to content

Latest commit

 

History

History
53 lines (41 loc) · 1.5 KB

README.md

File metadata and controls

53 lines (41 loc) · 1.5 KB



GLIP

GLIP: Geographic Location for IP Address with MaxmindDB.

glipTraviscodecovRust DocsMIT License

   

Usage

The first time you download Data for GeoIP from MaxmindDB.

$ glip 128.101.101.101
🇺🇸  United States -- Saint Paul, Minnesota

Specify format:

$ glip 118.105.100.30 -f json | jq '.'
{
  "flag": "🇯🇵",
  "contry": "Japan",
  "city": "Kasugai",
  "subdivision": "Aichi"
}

$ glip 46.171.60.118 -f yaml
---
flag: 🇵🇱
country: Poland
city: Warsaw
subdivision: Mazovia

Installation

$ cargo install glip

Author

linyows