一、通過網路爬蟲從網上擼到xml小檔案,現將檔案合併並轉換為txt檔案。
#coding=utf-8
import os
from bs4 import beautifulsoup
#1、放xml檔案的資料夾路徑
filepath = "g:\\datacenter\\stoke_critic_data\\"
#2獲取資料夾下的所以檔案目錄
files = os.listdir(path = filepath)
outf = open('g:\datacenter\comment_data.txt','a',encoding='utf-8')
for i in range(len(files)):
xmlf = open(filepath+files[i],'r',encoding='utf-8')
xmlcontent = beautifulsoup(xmlf,"xml")
xmlf.close()
itemslist = xmlcontent.find_all("item")
#遍歷寫入每乙個xml檔案中的內容
for items in itemslist:
time = items.time.text
comment = items.comment.text
like = items.like.text
if like.strip() == '點讚':
like = "0"
else:
like = like.strip()
outcontent = time.strip() + ',' + comment.strip() + ',' + like + '\n'
outf.write(outcontent)
outf.close()
print("all done!")
ini檔案轉換為 xml檔案
config.ini檔案 config of network 有關網路的配置資訊 network ip 192.168.11.6 port 8000 home path home admin config of database有關資料庫的配置資訊 database server oracle us...
python讀取TXT檔案資料並轉換為對應的矩陣
from numpy import a zeros 4,4 dtype float 先建立乙個全零方陣a,並且資料的型別設定為float浮點型 f open d b.txt 開啟資料檔案檔案 lines f.readlines 把全部資料檔案讀到乙個列表lines中 a row 0 表示矩陣的行,從...
用C 把檔案轉換為XML
using system using system.drawing using system.collections using system.componentmodel using system.windows.forms using system.io using system.xml pub...