├── .github ├── dependabot.yml └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── .travis.yml ├── .uncrustify.cfg ├── ChangeLog.md ├── LICENSE ├── MANIFEST.in ├── README.rst ├── examples ├── city.py ├── city_charset.py ├── country.py ├── domain.py ├── netspeed.py ├── netspeedcell.py ├── org.py ├── region.py └── v6.py ├── py_GeoIP.c ├── setup.py └── tests ├── data ├── GeoIP.dat ├── GeoIPASNum.dat ├── GeoIPCity.dat ├── GeoIPDomain.dat ├── GeoIPISP.dat ├── GeoIPNetSpeedCell.dat ├── GeoIPOrg.dat ├── GeoIPRegion.dat ├── GeoIPv6.dat └── GeoLiteCityIPv6.dat ├── test_charset.py ├── test_city.py ├── test_country.py ├── test_domain.py ├── test_errors.py ├── test_netspeedcell.py ├── test_org.py ├── test_region.py └── test_v6.py /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/geoip-api-python/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/geoip-api-python/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/geoip-api-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/geoip-api-python/HEAD/.travis.yml -------------------------------------------------------------------------------- /.uncrustify.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/geoip-api-python/HEAD/.uncrustify.cfg -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/geoip-api-python/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/geoip-api-python/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/geoip-api-python/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/geoip-api-python/HEAD/README.rst -------------------------------------------------------------------------------- /examples/city.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/geoip-api-python/HEAD/examples/city.py -------------------------------------------------------------------------------- /examples/city_charset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/geoip-api-python/HEAD/examples/city_charset.py -------------------------------------------------------------------------------- /examples/country.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/geoip-api-python/HEAD/examples/country.py -------------------------------------------------------------------------------- /examples/domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/geoip-api-python/HEAD/examples/domain.py -------------------------------------------------------------------------------- /examples/netspeed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/geoip-api-python/HEAD/examples/netspeed.py -------------------------------------------------------------------------------- /examples/netspeedcell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/geoip-api-python/HEAD/examples/netspeedcell.py -------------------------------------------------------------------------------- /examples/org.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/geoip-api-python/HEAD/examples/org.py -------------------------------------------------------------------------------- /examples/region.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/geoip-api-python/HEAD/examples/region.py -------------------------------------------------------------------------------- /examples/v6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/geoip-api-python/HEAD/examples/v6.py -------------------------------------------------------------------------------- /py_GeoIP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/geoip-api-python/HEAD/py_GeoIP.c -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/geoip-api-python/HEAD/setup.py -------------------------------------------------------------------------------- /tests/data/GeoIP.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/geoip-api-python/HEAD/tests/data/GeoIP.dat -------------------------------------------------------------------------------- /tests/data/GeoIPASNum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/geoip-api-python/HEAD/tests/data/GeoIPASNum.dat -------------------------------------------------------------------------------- /tests/data/GeoIPCity.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/geoip-api-python/HEAD/tests/data/GeoIPCity.dat -------------------------------------------------------------------------------- /tests/data/GeoIPDomain.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/geoip-api-python/HEAD/tests/data/GeoIPDomain.dat -------------------------------------------------------------------------------- /tests/data/GeoIPISP.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/geoip-api-python/HEAD/tests/data/GeoIPISP.dat -------------------------------------------------------------------------------- /tests/data/GeoIPNetSpeedCell.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/geoip-api-python/HEAD/tests/data/GeoIPNetSpeedCell.dat -------------------------------------------------------------------------------- /tests/data/GeoIPOrg.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/geoip-api-python/HEAD/tests/data/GeoIPOrg.dat -------------------------------------------------------------------------------- /tests/data/GeoIPRegion.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/geoip-api-python/HEAD/tests/data/GeoIPRegion.dat -------------------------------------------------------------------------------- /tests/data/GeoIPv6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/geoip-api-python/HEAD/tests/data/GeoIPv6.dat -------------------------------------------------------------------------------- /tests/data/GeoLiteCityIPv6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/geoip-api-python/HEAD/tests/data/GeoLiteCityIPv6.dat -------------------------------------------------------------------------------- /tests/test_charset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/geoip-api-python/HEAD/tests/test_charset.py -------------------------------------------------------------------------------- /tests/test_city.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/geoip-api-python/HEAD/tests/test_city.py -------------------------------------------------------------------------------- /tests/test_country.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/geoip-api-python/HEAD/tests/test_country.py -------------------------------------------------------------------------------- /tests/test_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/geoip-api-python/HEAD/tests/test_domain.py -------------------------------------------------------------------------------- /tests/test_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/geoip-api-python/HEAD/tests/test_errors.py -------------------------------------------------------------------------------- /tests/test_netspeedcell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/geoip-api-python/HEAD/tests/test_netspeedcell.py -------------------------------------------------------------------------------- /tests/test_org.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/geoip-api-python/HEAD/tests/test_org.py -------------------------------------------------------------------------------- /tests/test_region.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/geoip-api-python/HEAD/tests/test_region.py -------------------------------------------------------------------------------- /tests/test_v6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxmind/geoip-api-python/HEAD/tests/test_v6.py --------------------------------------------------------------------------------