1 Star 0 Fork 0

阿笨哥/sitelink

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
utils.py 763 Bytes
一键复制 编辑 原始数据 按行查看 历史
阿笨哥 提交于 2020-11-09 21:18 . init
# -*- coding: utf-8 -*-
"""
# utils.py 网页节点分析工具
# Created on 15:16 2020/9/4
# @author: abanger
# Copyright (c) 2020 abanger. All Rights Reserved.
#
# Ver0.1
"""
import json
import re
import urllib.request
GLOBAL_DOMAIN_NUMBER = 0 #默认为0,不自定义
def get_domain(url):
try:
protol, rest = urllib.request.splittype(url)
domains, rest2 = urllib.request.splithost(rest)
host, port = urllib.request.splitport(domains)
if len(host.split("."))>2:
if GLOBAL_DOMAIN_NUMBER>1: #自定义域名长度
host=".".join(host.split(".")[0-GLOBAL_DOMAIN_NUMBER:])
else:
host=".".join(host.split(".")[1:])
except:
host = None
return host
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/abangercn/sitelink.git
git@gitee.com:abangercn/sitelink.git
abangercn
sitelink
sitelink
main

搜索帮助