├── .gitignore ├── LICENSE ├── README.md ├── data ├── alibaba.txt ├── aws.txt ├── azure-gov.txt ├── azure.txt ├── cloudflare.txt ├── digitalocean.txt ├── gcp.txt ├── ibm.txt ├── linode.txt ├── oracle.txt └── rackspace.txt ├── ip2provider.py ├── lists ├── __init__.py ├── asns.py ├── aws.py ├── azure.py ├── cloudflare.py ├── gcp.py └── oracle.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrho/ip2provider/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrho/ip2provider/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrho/ip2provider/HEAD/README.md -------------------------------------------------------------------------------- /data/alibaba.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrho/ip2provider/HEAD/data/alibaba.txt -------------------------------------------------------------------------------- /data/aws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrho/ip2provider/HEAD/data/aws.txt -------------------------------------------------------------------------------- /data/azure-gov.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrho/ip2provider/HEAD/data/azure-gov.txt -------------------------------------------------------------------------------- /data/azure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrho/ip2provider/HEAD/data/azure.txt -------------------------------------------------------------------------------- /data/cloudflare.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrho/ip2provider/HEAD/data/cloudflare.txt -------------------------------------------------------------------------------- /data/digitalocean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrho/ip2provider/HEAD/data/digitalocean.txt -------------------------------------------------------------------------------- /data/gcp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrho/ip2provider/HEAD/data/gcp.txt -------------------------------------------------------------------------------- /data/ibm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrho/ip2provider/HEAD/data/ibm.txt -------------------------------------------------------------------------------- /data/linode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrho/ip2provider/HEAD/data/linode.txt -------------------------------------------------------------------------------- /data/oracle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrho/ip2provider/HEAD/data/oracle.txt -------------------------------------------------------------------------------- /data/rackspace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrho/ip2provider/HEAD/data/rackspace.txt -------------------------------------------------------------------------------- /ip2provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrho/ip2provider/HEAD/ip2provider.py -------------------------------------------------------------------------------- /lists/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lists/asns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrho/ip2provider/HEAD/lists/asns.py -------------------------------------------------------------------------------- /lists/aws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrho/ip2provider/HEAD/lists/aws.py -------------------------------------------------------------------------------- /lists/azure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrho/ip2provider/HEAD/lists/azure.py -------------------------------------------------------------------------------- /lists/cloudflare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrho/ip2provider/HEAD/lists/cloudflare.py -------------------------------------------------------------------------------- /lists/gcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrho/ip2provider/HEAD/lists/gcp.py -------------------------------------------------------------------------------- /lists/oracle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrho/ip2provider/HEAD/lists/oracle.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oldrho/ip2provider/HEAD/requirements.txt --------------------------------------------------------------------------------