def is_http_url(s):
regex = re.compile(
r'^(?:http|ftp)s?://' # http:// or https://
r'(?:(?:[A-Z0-9](?:[A-Z...
yekong
4年前 (2021-04-23)
喜欢
import requests
url = 'https://www.wanjunshijie.com/wp-includes/js/wp-embed.min.js?ver=5.6.3'
r= requests.get(url)
w...
yekong
4年前 (2021-04-23)
喜欢
str = 'jquery.js?1234556'
head, center, end = str.partition('(')
print(head)
字符被切分成三个部分,输出头部,就会输出
jquery.js
...
yekong
4年前 (2021-04-23)
喜欢
原因是只指定了文件路径,而没有指定文件名和后缀名。
...
yekong
4年前 (2021-04-23)
喜欢
url = "https://www.wanjunshijie.com/"
res = urllib.request.urlopen(url)
file = open('web/index.html', 'w...
yekong
4年前 (2021-04-21)
喜欢
from urllib import request
import ssl
#ssl免验证
#创建一个不需要验证的上下文
ssl._create_default_https_context=ssl._create_unverified_context
#而不是ssl._crea...
yekong
4年前 (2021-04-20)
喜欢
修改Dns
sudo networksetup -setdnsservers "Wi-Fi" 223.5.5.5 223.6.6.6
刷新dns
sudo dscacheutil -flushcache
...
yekong
4年前 (2021-02-10)
喜欢
from datetime import datetime
str_date = '2021-10-10 13:13:13'
date_obj = datetime.strptime(str_date, '%Y-%m-%d %H:%M:%S')
p...
yekong
4年前 (2021-01-16)
喜欢
获取当前时间
from datetime import datetime
print(datetime.now())
获取时间间隔
获取三天后
from datetime import datetime
from datetime import timedelta
now ...
yekong
4年前 (2021-01-16)
喜欢
使用pip
pip install ipython
设置pip源地址
pip install --trusted-host http://pypi.douban.com/simple/ ipython
删除第三方包
pip uninstall ipython
...
yekong
4年前 (2021-01-16)
喜欢