初始化mmonth

This commit is contained in:
2026-06-30 16:10:34 +08:00
commit e491e33719
31 changed files with 4877 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
from bs4 import BeautifulSoup
with open('1.html','r',encoding='utf-8') as fp:
data = fp.read()
soup = BeautifulSoup(data,"lxml")
#print(soup)
#print(soup.head,type(soup.head))
#print(soup.title)
print(soup.a.attrs)
#tag = BeautifulSoup(data,"lxml")
#print()