Skip to content

ipipdotnet/datx-python

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 

重要提示

datx格式将全面升级为ipdb格式 IPDB格式解析代码

ipdb 格式优点

  • 可同时支持IPv4与IPv6
  • 可同时支持中文与英文
  • 查询性能大幅度提高

Python Parse datx file

Installing

pip install ipip-datx

Code Example


import datx
c = datx.City("/path/to/mydata4vipday2.datx")
print(c.find("8.8.8.258"))
print(c.find("255.255.255.255"))
  

Output for IP 8.8.8.8 Results


[
"GOOGLE.COM", // country_name
"GOOGLE.COM", // region_name
"",             // city_name
"google.com", // owner_domain
"level3.com", // isp_domain
"", // latitude
"", // longitude
"", // timezone
"", // utc_offset
"", // china_admin_code
"", // idd_code
"", // country_code
"", // continent_code
"IDC", // idc
"", // base_station
"", // country_code3
"", // european_union
"", // currency_code
"", // currency_name
"ANYCAST" // anycast
]
  


# For China district datx file
d = datx.District("/path/to/quxian.datx")
print(d.find("123.121.117.72"))

# For China Base Station datx file
d = datx.BaseStation("/path/to/station_ip.datx")
print(d.find("223.221.121.0"))

About

IPIP.net官方支持的解析datx格式的Python代码

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages