This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
dongxiaoyan-tsg-autotest/04-CustomLibrary/ExtensionPackages/ExtensionLibrary/mytool.py

16 lines
298 B
Python
Raw Normal View History

#coding=utf-8
import socket
""" 获取主机信息 """
class mytool():
def __init__(self):
pass
def get_host_IP(self):
try:
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
s.connect(('8.8.8.8', 80))
ip = s.getsockname()[0]
finally:
s.close()
return ip