每日归档: 2022年11月15日

3 篇文章

sqlite 命令行查看数据库
查看工具下载 下载地址:SQLite Download Page。 按照平台下载对应的工具即可。 工具文档 文档地址:SQLite Documentation。 工具的基本使用 sqlite3命令进入sqlite命令行模式: ➜ sqlite-tools sqlite3 SQLite version 3.37.0 2021-12-09 01:34:…
python解析html获取节点的内容
[video url="" /] 在爬取网页的时候,爬下的数据需要解析html。如下代码。 使用python3.x from bs4 import BeautifulSoup as bs html = '''<html> <head> <title class='ceshi'>super 哈哈 star</…