9 lines
158 B
Python
9 lines
158 B
Python
|
|
# coding: utf-8
|
||
|
|
import os
|
||
|
|
from itertools import cycle
|
||
|
|
|
||
|
|
def es_local(ip='127.0.0.1'):
|
||
|
|
from netaddr import IPAddress
|
||
|
|
return IPAddress(ip).is_private()
|
||
|
|
|