This library reads the IP2Location DB format for both IP2Location and IP2Proxy and returns geo information for the given IP.
Rust 1.60.0
and above (edition 2021)bash
cargo b
bash
cargo b --release
bash
cargo t -v
```bash cargo b --example
./target/debug/examples/lookup data/IP2LOCATION-LITE-DB1.IPV6.BIN 2a01:cb08:8d14:: Db Path: data/IP2LOCATION-LITE-DB1.IPV6.BIN |- Db Type: 1 |- Db Column: 2 |- Db Date (YY/MM/DD): 20/12/28
Ok( Record { ip: "2a01:cb08:8d14::", latitude: None, longitude: None, country: Some( Country { shortname: "FR", longname: "France", }, ), region: None, city: None, isp: None, domain: None, zipcode: None, timezone: None, netspeed: None, iddcode: None, areacode: None, weatherstationcode: None, weatherstationname: None, mcc: None, mnc: None, mobilebrand: None, elevation: None, usagetype: None, addresstype: None, category: None, }, )
./target/debug/examples/lookup data/sample.bin.px11/IP2PROXY-IP-PROXYTYPE-COUNTRY-REGION-CITY-ISP-DOMAIN-USAGETYPE-ASN-LASTSEEN-THREAT-RESIDENTIAL-PROVIDER.BIN 194.59.249.19 Db Path: data/sample.bin.px11/IP2PROXY-IP-PROXYTYPE-COUNTRY-REGION-CITY-ISP-DOMAIN-USAGETYPE-ASN-LASTSEEN-THREAT-RESIDENTIAL-PROVIDER.BIN |- Db Type: 11 |- Db Column: 13 |- Db Date (YY/MM/DD): 21/5/28
ProxyDb( Record { ip: 194.59.249.19, country: Some( Country { shortname: "FR", longname: "France", }, ), region: Some( "Ile-de-France", ), city: Some( "Paris", ), isp: Some( "M247 Europe SRL", ), domain: Some( "m247.com", ), isproxy: Some( IsAProxy, ), proxytype: Some( "FR", ), asn: Some( "9009", ), as: Some( "M247 Ltd", ), lastseen: Some( "1", ), threat: Some( "SPAM", ), provider: Some( "ProtonVPN", ), usage_type: Some( "DCH", ), }, )
Add this to your Cargo.toml
:
toml
[dependencies]
ip2location = "0.2.0"
This is free software, licensed under the MIT license.
Sriram