Currently only supports Excel reading It seems that we will be able to write ...
excel.py
from excel import OpenExcel
#File reading
f = OpenExcel('test.xls')
#Read column A
f.read('A')
#Read the first line
f.read(1)
#A5 cell read
f.read('A5')
Recommended Posts