摘要:
阅读全文
摘要:
第一步: 使用Ctrl+`快捷键或者通过View->Show Console菜单打开命令行,粘贴如下代码: import urllib.request,os; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packag 阅读全文
摘要:
代码奉上: <!DOCTYPE html> <html> <head> <title>阿森音乐播放器</title> <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> <style type="text/css" 阅读全文
摘要:
待补充 http://www.gaoxiaowang.cn/duanzi/g/fIT2y6HSQN 这个是还没有完成,所以待会要来搞 阅读全文
摘要:
基本用法: # 高性能之协程爬虫 import asyncio # async def fun(url): # print(f"正在请求{url}") # print(f"{url}请求完毕") # return f"{url}你爸爸已经搞定了" # f = fun("http://www.baid 阅读全文
摘要:
arr = ["http://music.163.com/song/media/outer/url?id=1820550501.mp3", "http://music.163.com/song/media/outer/url?id=1820550501.mp3", "http://music.163 阅读全文
摘要:
<div class="video"> <iframe height=180 width=10% src='https://player.youku.com/embed/XMzQzNjc2MTYwNA==' frameborder=0 allowfullscreen=1></iframe> </di 阅读全文
摘要:
# os.path.exists(path) 判断一个目录是否存在 # 2、os.makedirs(path) 多层创建目录 # 3、os.mkdir(path) 创建目录 import os def mkdirs(url): url = "D:/4KSite/fengjing/" if not o 阅读全文
摘要:
基本语法: 属性定位: #找到class属性值为song的div标签 //div[@class="song"] 层级&索引定位: #找到class属性值为tang的div的直系子标签ul下的第二个子标签li下的直系子标签a //div[@class="tang"]/ul/li[2]/a 逻辑运算: 阅读全文
摘要:
爬取小说水浒传 代码例子: # # 先下载需要的包 # pip install bs4 # pip install lxml from bs4 import BeautifulSoup # 小说网 水浒传 url = "http://book.zongheng.com/showchapter/681 阅读全文