Globs for INTERNAL_IPS

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
from fnmatch import fnmatch
class glob_list(list):
    def __contains__(self, key):
        for elt in self:
            if fnmatch(key, elt): return True
        return False

INTERNAL_IPS = glob_list([
    '127.0.0.1',
    '18.85.*.*'
    ])

Comments

pmclanahan (on October 14, 2009):

Brilliant. Thanks for sharing!!

#

(Forgotten your password?)

You may use Markdown syntax here, but raw HTML will be removed.