1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | class IPList(list):
def __init__(self, ips):
try:
#http://software.inl.fr/trac/wiki/IPy
#ubuntu: apt-get install python-ipy
from IPy import IP
for ip in ips:
self.append(IP(ip))
except ImportError:
pass
def __contains__(self, ip):
try:
for net in self:
if ip in net:
return True
except:
pass
return False
INTERNAL_IPS = IPList(['127.0.0.1', '192.168.1.0/24'])
|
More like this
- Globs for INTERNAL_IPS by kcarnold 2 years, 10 months ago
- Support IP ranges in INTERNAL_IPS by jdunck 2 years, 1 month ago
- Persistent Session Debugging with Django Debug Toolbar by brianjaystanley 3 months, 3 weeks ago
- Template Query Debug by insin 4 years, 11 months ago
- Tags & filters for rendering search results by exogen 3 years, 10 months ago
Comments
If pulling in another external dependency is a bother, try #1380.
#
kcarnold: That one is excellent for the most common case. I'll be using it. Thanks for the tip!
#