18143453325 在线咨询 在线咨询
18143453325 在线咨询
所在位置: 首页 > 营销资讯 > 建站知识 > python添加域名host

python添加域名host

时间:2023-02-02 01:52:01 | 来源:建站知识

时间:2023-02-02 01:52:01 来源:建站知识

# -*- coding: utf-8 -*-
import sys


# window下hosts路径
HOSTS_PATH = r'C:/WINDOWS/system32/drivers/etc/HOSTS'

# mac/linux系统hosts路径为/private/etc/hosts
# HOSTS_PATH = r'/private/etc/hosts'


def set_env_hosts():
hosts_detail = D:/xxx/resources/test_hosts (把域名配置放在txt文件加下的)
content = open(hosts_detail, 'r')
lines = content.readlines()
content.close()

output = open(HOSTS_PATH, 'w')
for line in lines:
output.write(line)
http://logger.info("环境hosts已配置")
output.close()


def clear_hosts():
with open(HOSTS_PATH, 'w') as hosts_files:
hosts_files.truncate(0)


if __name__ == "__main__":
set_env_hosts()
# clear_hosts()

关键词:

74
73
25
news

版权所有© 亿企邦 1997-2025 保留一切法律许可权利。

为了最佳展示效果,本站不支持IE9及以下版本的浏览器,建议您使用谷歌Chrome浏览器。 点击下载Chrome浏览器
关闭