Lqlsoftware / iputil

Provide some useful util functions and a tool (ip2region) for ip processing.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

iputil

Provide some useful util functions and a tool (ip2region) for ip processing.

Install

pip3 install iputil

Python usage

import iputil

# Get Region by IP
iputil.get_region("60.30.1.1")
# return string '**|0|天津|天津|联通'

Although region data in this program will update with the @ip2region repo, or your can specify your own data source:

import iputil

# Set Region source
iputil.set_region_source(data_file="ip2region.db")

# Get Region by IP
iputil.get_region("60.30.1.1")
# return string '**|0|天津|天津|联通'

Tools

An independent tool named ip2region will be install in your path.

Typing ip2region will start a prompt:

$ ip2region
ip> 192.168.0.1
[192.168.0.1]   0|0|0|内网IP|内网IP

ip> 60.30.1.1
[60.30.1.1]     **|0|天津|天津|联通

ip> 120.100.0.1
[120.100.0.1]   **|0|**|台北|0

ip> 8.8.8.8
[8.8.8.8]       美国|0|0|0|谷歌

ip> 
$ ip2region -h
usage: ip2region [-h] [-ip IP]

IP to Region

optional arguments:
  -h, --help       show this help message and exit
  -ip IP, --ip IP  Search specify IP

Reflink

Thanks to @ip2region.

About

Provide some useful util functions and a tool (ip2region) for ip processing.

License:Apache License 2.0


Languages

Language:Python 100.0%