2019 Spring 網際內容管理期末報告示範網站

  • Home
    • Site Map
    • reveal
    • blog
  • 各組期末報告說明
  • 近端配置與管理
    • 網路連線設定
    • 配置可攜程式環境
  • 倉儲改版
  • 系統開發
    • 程式開發要件
    • Mobile 網站內容
      • CMSimfly 架構
      • bs4 應用
      • 套用模板一
    • Virtual Host
    • CMSimfly 問題
  • 期末報告
CMSimfly 架構 << Previous Next >> 套用模板一

bs4 應用

import bs4

filename = "index.html"
with open(filename, "r", encoding="utf-8") as f:
    file_content = f.read()

soup = bs4.BeautifulSoup(file_content, "lxml")

new_content = soup.prettify()
print(new_content)

with open(filename, "w", encoding="utf-8") as f:
    f.write(new_content)

#print(soup.prettify())

CMSimfly 架構 << Previous Next >> 套用模板一

Copyright © All rights reserved | This template is made with by Colorlib