├── .deepsource.toml ├── .gitattributes ├── .github └── workflows │ ├── create-release.yml │ ├── push-to-gitee.yml │ └── update.yml ├── .gitignore ├── Auto_Update.bat ├── IP_Sync ├── __init__.py ├── collegeUpdate.py ├── convert.py ├── dat2mysql.py ├── dat2sqlite3.py ├── dat2txt.py ├── file_set.py ├── ipSearch.py ├── ipUpdate.py ├── ip_Sync.py └── ipv6Update.py ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── README.md ├── configs.py ├── data ├── college_info.sql.gz ├── correct.json ├── czipdata.dat ├── czipdata.txt ├── czipdata_version.bin ├── ipdata.db.gz ├── ipdatabase.sql.gz └── iprange_info.sql.gz ├── database.py ├── pic ├── api.png ├── ip.png ├── ipv6_range.png ├── mysql.png ├── sql.png ├── txt.png └── v6api.png ├── requirements.txt └── tmp ├── college.json ├── copywrite.rar ├── ip-20210511.7z └── qqwry.rar /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/create-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/.github/workflows/create-release.yml -------------------------------------------------------------------------------- /.github/workflows/push-to-gitee.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/.github/workflows/push-to-gitee.yml -------------------------------------------------------------------------------- /.github/workflows/update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/.github/workflows/update.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/.gitignore -------------------------------------------------------------------------------- /Auto_Update.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/Auto_Update.bat -------------------------------------------------------------------------------- /IP_Sync/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/IP_Sync/__init__.py -------------------------------------------------------------------------------- /IP_Sync/collegeUpdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/IP_Sync/collegeUpdate.py -------------------------------------------------------------------------------- /IP_Sync/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/IP_Sync/convert.py -------------------------------------------------------------------------------- /IP_Sync/dat2mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/IP_Sync/dat2mysql.py -------------------------------------------------------------------------------- /IP_Sync/dat2sqlite3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/IP_Sync/dat2sqlite3.py -------------------------------------------------------------------------------- /IP_Sync/dat2txt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/IP_Sync/dat2txt.py -------------------------------------------------------------------------------- /IP_Sync/file_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/IP_Sync/file_set.py -------------------------------------------------------------------------------- /IP_Sync/ipSearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/IP_Sync/ipSearch.py -------------------------------------------------------------------------------- /IP_Sync/ipUpdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/IP_Sync/ipUpdate.py -------------------------------------------------------------------------------- /IP_Sync/ip_Sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/IP_Sync/ip_Sync.py -------------------------------------------------------------------------------- /IP_Sync/ipv6Update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/IP_Sync/ipv6Update.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/README.md -------------------------------------------------------------------------------- /configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/configs.py -------------------------------------------------------------------------------- /data/college_info.sql.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/data/college_info.sql.gz -------------------------------------------------------------------------------- /data/correct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/data/correct.json -------------------------------------------------------------------------------- /data/czipdata.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/data/czipdata.dat -------------------------------------------------------------------------------- /data/czipdata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/data/czipdata.txt -------------------------------------------------------------------------------- /data/czipdata_version.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/data/czipdata_version.bin -------------------------------------------------------------------------------- /data/ipdata.db.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/data/ipdata.db.gz -------------------------------------------------------------------------------- /data/ipdatabase.sql.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/data/ipdatabase.sql.gz -------------------------------------------------------------------------------- /data/iprange_info.sql.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/data/iprange_info.sql.gz -------------------------------------------------------------------------------- /database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/database.py -------------------------------------------------------------------------------- /pic/api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/pic/api.png -------------------------------------------------------------------------------- /pic/ip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/pic/ip.png -------------------------------------------------------------------------------- /pic/ipv6_range.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/pic/ipv6_range.png -------------------------------------------------------------------------------- /pic/mysql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/pic/mysql.png -------------------------------------------------------------------------------- /pic/sql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/pic/sql.png -------------------------------------------------------------------------------- /pic/txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/pic/txt.png -------------------------------------------------------------------------------- /pic/v6api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/pic/v6api.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/requirements.txt -------------------------------------------------------------------------------- /tmp/college.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/tmp/college.json -------------------------------------------------------------------------------- /tmp/copywrite.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/tmp/copywrite.rar -------------------------------------------------------------------------------- /tmp/ip-20210511.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/tmp/ip-20210511.7z -------------------------------------------------------------------------------- /tmp/qqwry.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a76yyyy/ipdata/HEAD/tmp/qqwry.rar --------------------------------------------------------------------------------