⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 util.py

📁 Network Administration Visualized 网络管理可视化源码
💻 PY
字号:
# -*- coding: ISO8859-1 -*-## Copyright 2005 Norwegian University of Science and Technology# Copyright 2007 UNINETT AS## This file is part of Network Administration Visualized (NAV)## NAV is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either version 2 of the License, or# (at your option) any later version.## NAV is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the# GNU General Public License for more details.## You should have received a copy of the GNU General Public License# along with NAV; if not, write to the Free Software# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA### $Id: util.py 3818 2007-01-24 13:04:28Z mortenv $# Authors: Morten Brekkevold <morten.brekkevold@uninett.no>#"""General utility functions for Network Administration Visualized"""import IPydef gradient(start, stop, steps):    """Create and return a sequence of steps representing an integer    gradient from the start value to the stop value.    The more steps, the smoother the gradient."""    distance = (stop - start)    # Reduce by 1 step to include both endpoints, but never reduce it    # to zero (we always want at least to values)    steps = steps > 1 and steps-1 or 1    increment = distance / float(steps)    grad = []    for i in xrange(steps):        grad.append(int(round(start + i*increment)))    grad.append(stop)    return graddef color_gradient(start, stop, steps):    """Does the same as the gradient function, but the start and    stop values are RGB triplets (3-element tuples)"""    r = gradient(start[0], stop[0], steps)    g = gradient(start[1], stop[1], steps)    b = gradient(start[2], stop[2], steps)    grad = zip(r, g, b)    return graddef colortohex(triplet):    """Returns a hexadecimal string representation of a 3-tuple RGB    color triplet.    Useful for converting internal color triplets to web    representation."""    return ('%02x'*3) % tripletdef isValidIP(ip):    """Verifies that a string is a single, valid IPv4 or IPv6 address.    A cleaned up version of the IP address string is returned if it is    verified, otherwise a false value is returned.    Uses the IPy library to verify addresses.    """    if isinstance(ip, (str, unicode)) and not ip.isdigit():        try:            validIP = IPy.IP(ip)            if len(validIP) == 1:                return str(validIP)        except ValueError:            pass    return False

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -