วิธีใดเป็นวิธีที่ดีที่สุดในการอ่านไฟล์ Excel (XLS) ด้วย Python (ไม่ใช่ไฟล์ CSV )
มีแพ็คเกจในตัวที่รองรับโดยค่าเริ่มต้นใน Python เพื่อทำงานนี้หรือไม่
วิธีใดเป็นวิธีที่ดีที่สุดในการอ่านไฟล์ Excel (XLS) ด้วย Python (ไม่ใช่ไฟล์ CSV )
มีแพ็คเกจในตัวที่รองรับโดยค่าเริ่มต้นใน Python เพื่อทำงานนี้หรือไม่
คำตอบ:
ฉันขอแนะนำxlrdสำหรับการอ่าน.xls
ไฟล์
นักเดินทางกล่าวถึงการใช้ COM อัตโนมัติ หลังจากทำสิ่งนี้ด้วยตัวเองเมื่อไม่กี่ปีที่ผ่านมาขอเตือนว่าการทำเช่นนี้เป็น PITA จริง ข้อควรระวังมีจำนวนมากและเอกสารขาดและน่ารำคาญ ฉันพบข้อบกพร่องและ gotchas แปลก ๆ หลายตัวซึ่งบางตัวใช้เวลาหลายชั่วโมงในการคิดออก
อัปเดต: สำหรับ.xlsx
ไฟล์ที่ใหม่กว่าไลบรารีที่แนะนำสำหรับการอ่านและเขียนดูเหมือนจะเป็นopenpyxl (ขอบคุณ Ikar Pohorský)
การใช้แพนด้า:
import pandas as pd
xls = pd.ExcelFile("yourfilename.xls")
sheetX = xls.parse(2) #2 is the sheet number
var1 = sheetX['ColumnName']
print(var1[1]) #1 is the row number...
คุณสามารถเลือกรายการใดก็ได้http://www.python-excel.org/
ฉันขอแนะนำไลบรารี python xlrd
ติดตั้งโดยใช้
pip install xlrd
นำเข้าโดยใช้
import xlrd
เพื่อเปิดสมุดงาน
workbook = xlrd.open_workbook('your_file_name.xlsx')
เปิดแผ่นงานตามชื่อ
worksheet = workbook.sheet_by_name('Name of the Sheet')
เปิดแผ่นงานตามดัชนี
worksheet = workbook.sheet_by_index(0)
อ่านค่าเซลล์
worksheet.cell(0, 0).value
ฉันคิดว่านุ่นเป็นวิธีที่ดีที่สุด มีอยู่แล้วหนึ่งคำตอบที่นี่กับนุ่นโดยใช้ExcelFile
ฟังก์ชั่น แต่มันไม่ได้ทำงานอย่างถูกต้องสำหรับผม จากที่นี่ฉันพบread_excel
ฟังก์ชั่นที่ใช้งานได้ดี:
import pandas as pd
dfs = pd.read_excel("your_file_name.xlsx", sheet_name="your_sheet_name")
print(dfs.head(10))
ปล.คุณต้องมีการxlrd
ติดตั้งเพื่อให้read_excel
ฟังก์ชันทำงานได้
อัปเดต 21-03-2020: ดังที่คุณเห็นที่นี่มีปัญหาเกี่ยวกับxlrd
เครื่องยนต์และกำลังจะเลิกใช้งาน openpyxl
เป็นทดแทนที่ดีที่สุด ดังนั้นตามที่อธิบายไว้ที่นี่ไวยากรณ์ที่ยอมรับควรเป็น:
dfs = pd.read_excel("your_file_name.xlsx", sheet_name="your_sheet_name", engine="openpyxl")
สำหรับ xlsx ผมชอบวิธีการแก้ปัญหาที่โพสต์ก่อนหน้านี้เป็นhttps://web.archive.org/web/20180216070531//programming/4371163/reading-xlsx-files-using-python ฉันใช้โมดูลจากไลบรารีมาตรฐานเท่านั้น
def xlsx(fname):
import zipfile
from xml.etree.ElementTree import iterparse
z = zipfile.ZipFile(fname)
strings = [el.text for e, el in iterparse(z.open('xl/sharedStrings.xml')) if el.tag.endswith('}t')]
rows = []
row = {}
value = ''
for e, el in iterparse(z.open('xl/worksheets/sheet1.xml')):
if el.tag.endswith('}v'): # Example: <v>84</v>
value = el.text
if el.tag.endswith('}c'): # Example: <c r="A3" t="s"><v>84</v></c>
if el.attrib.get('t') == 's':
value = strings[int(value)]
letter = el.attrib['r'] # Example: AZ22
while letter[-1].isdigit():
letter = letter[:-1]
row[letter] = value
value = ''
if el.tag.endswith('}row'):
rows.append(row)
row = {}
return rows
การปรับปรุงที่เพิ่มเข้ามาคือการดึงเนื้อหาตามชื่อแผ่นงานโดยใช้ re เพื่อรับคอลัมน์และตรวจสอบว่ามีการใช้สตริงที่ใช้ร่วมกันหรือไม่
def xlsx(fname,sheet):
import zipfile
from xml.etree.ElementTree import iterparse
import re
z = zipfile.ZipFile(fname)
if 'xl/sharedStrings.xml' in z.namelist():
# Get shared strings
strings = [element.text for event, element
in iterparse(z.open('xl/sharedStrings.xml'))
if element.tag.endswith('}t')]
sheetdict = { element.attrib['name']:element.attrib['sheetId'] for event,element in iterparse(z.open('xl/workbook.xml'))
if element.tag.endswith('}sheet') }
rows = []
row = {}
value = ''
if sheet in sheets:
sheetfile = 'xl/worksheets/sheet'+sheets[sheet]+'.xml'
#print(sheet,sheetfile)
for event, element in iterparse(z.open(sheetfile)):
# get value or index to shared strings
if element.tag.endswith('}v') or element.tag.endswith('}t'):
value = element.text
# If value is a shared string, use value as an index
if element.tag.endswith('}c'):
if element.attrib.get('t') == 's':
value = strings[int(value)]
# split the row/col information so that the row leter(s) can be separate
letter = re.sub('\d','',element.attrib['r'])
row[letter] = value
value = ''
if element.tag.endswith('}row'):
rows.append(row)
row = {}
return rows
คุณสามารถใช้ไลบรารีใดก็ได้ที่ระบุไว้ที่นี่ (เช่นPyxlreaderที่ขึ้นอยู่กับ JExcelApi หรือxlwt ) รวมทั้งระบบอัตโนมัติ COM เพื่อใช้ Excel เองสำหรับการอ่านไฟล์ แต่สำหรับสิ่งนั้นคุณกำลังแนะนำ Office ให้เป็นที่พึ่งพาของซอฟต์แวร์ของคุณ ซึ่งอาจไม่ใช่ทางเลือกเสมอไป
xlwt
ไฟล์ WriTes; ใช้xlrd
กับไฟล์ ReaD
หากคุณต้องการรูปแบบ XLS แบบเก่า ด้านล่างรหัสสำหรับ ansii 'cp1251'
import xlrd
file=u'C:/Landau/task/6200.xlsx'
try:
book = xlrd.open_workbook(file,encoding_override="cp1251")
except:
book = xlrd.open_workbook(file)
print("The number of worksheets is {0}".format(book.nsheets))
print("Worksheet name(s): {0}".format(book.sheet_names()))
sh = book.sheet_by_index(0)
print("{0} {1} {2}".format(sh.name, sh.nrows, sh.ncols))
print("Cell D30 is {0}".format(sh.cell_value(rowx=29, colx=3)))
for rx in range(sh.nrows):
print(sh.row(rx))
Python Excelerator จัดการงานนี้เช่นกัน http://ghantoos.org/2007/10/25/python-pyexcelerator-small-howto/
นอกจากนี้ยังมีใน Debian และ Ubuntu:
sudo apt-get install python-excelerator
คุณอาจลองเรียกใช้โปรแกรม (ไม่ใช่ python) xls2csv ป้อนไฟล์ xls และคุณควรได้รับ csv กลับคืนมา
xls2csv
แล้วแยกวิเคราะห์csv
จาก Python หรือไม่?
สำหรับไฟล์ Excel รุ่นเก่าจะมีโมดูล OleFileIO_PLที่สามารถอ่านรูปแบบการจัดเก็บที่มีโครงสร้าง OLE ที่ใช้
with open(csv_filename) as file:
data = file.read()
with open(xl_file_name, 'w') as file:
file.write(data)
คุณสามารถเปลี่ยน CSV ให้เป็น Excel ได้เหมือนข้างบนด้วยแพ็คเกจที่สร้างขึ้น CSV สามารถจัดการได้ด้วยชุดโปรแกรมอ่านตามคำสั่งและตัวเขียนในตัวซึ่งจะทำงานในลักษณะเดียวกับงานพจนานุกรม python ซึ่งทำให้มันง่ายมากตอนนี้ฉันไม่รู้ว่ามีแพ็คเกจ inbuilt ใด ๆ สำหรับ excel แต่ฉันเจอ openpyxl มันค่อนข้างตรงไปตรงมาและเรียบง่ายคุณสามารถดูข้อมูลโค้ดด้านล่างหวังว่านี่จะช่วยได้
import openpyxl
book = openpyxl.load_workbook(filename)
sheet = book.active
result =sheet['AP2']
print(result.value)
สำหรับรุ่นเก่า .xls
ไฟล์คุณสามารถใช้ไฟล์xlrd
คุณสามารถใช้xlrd
โดยตรงโดยการนำเข้า ชอบด้านล่าง
import xlrd
wb = xlrd.open_workbook(file_name)
หรือจะใช้pd.read_excel()
วิธีแพนด้าก็ได้ แต่อย่าลืมระบุเอ็นจิ้นแม้ว่าค่าดีฟอลต์จะเป็นxlrd
ก็ต้องระบุ
pd.read_excel(file_name, engine = xlrd)
ทั้งสองใช้งานได้กับ.xls
ไฟล์รูปแบบเก่า Infact ฉันเจอสิ่งนี้เมื่อฉันใช้OpenPyXL
ฉันได้รับข้อผิดพลาดด้านล่าง
InvalidFileException: openpyxl does not support the old .xls file format, please use xlrd to read this file, or convert it to the more recent .xlsx file format.