我尝试使用Python编写脚本,该脚本从存储在文件夹层次结构中的所有.csv文件中获取一些特定值。这些值将复制到已创建的目标文件(.xlsx)中的某些特定单元格中。目标文件还有一些现有的空图表(在单独的表格中),这些图表将填充脚本提供的值。
不幸的是,在我运行脚本之后,虽然它有效并且我在单元格中复制了所需的值,但由于某种原因,图表会消失。我无法理解为什么,因为我没有使用任何暗示在我的脚本中操纵图表的事情。
看到我无法找到解决这个问题的方法,我得出的结论是,我应该使用我拥有的值在我的脚本中实现图表的绘图。但是,我想知道你是否知道为什么会这样。
以下是我的代码。我必须提到我是Python的新手。 任何关于问题或更好地编写代码的建议都将不胜感激。
# -*- coding: utf-8 -*-
import os
import glob
import csv
import openpyxl
from openpyxl import load_workbook
#getting the paths
def get_filepaths(directory):
file_paths = [] # array that will contain the path for each file
# going through the folder hierarchy
for root, directories, files in os.walk(directory):
for filename in files:
if filename.endswith('.csv'):
filepath = os.path.join(root, filename) #concatenation
file_paths.append(filepath) # filling the array
print filepath
#print file_paths[0]
return file_paths
#extraction of the value of interest from every .csv file
def read_cell(string, paths):
with open(paths, 'r') as f:
reader = csv.reader(f)
for n in reader:
if string in n:
cell_value = n[1]
return cell_value
#array containing the path extracted for each file
paths_F = get_filepaths('C:\Dir\mystuff\files')
#destination folder
dest = r'C:\Dir\mystuff\destination.xlsx'
#the value of interest
target = "something"
#array that will contain the value for each cell
F30 = [];
#obtaining the values
for selection_F in paths_F:
if '30cm' in selection_CD:
val_F30 = read_cell(target, selection_F); F30.append(val_F30)
#print val_F30
wb = load_workbook(dest)
#the sheet in which I want to write the values extracted from the files
ws3EV = wb.get_sheet_by_name("3EV")
cell_E6 = ws10EV.cell( 'E6' ).value = int(F30[0])
cell_E7 = ws10EV.cell( 'E7' ).value = int(F30[1])
答案 0 :(得分:2)
我能够重现你的问题。在使用openpyxl简单地加载和保存现有xlsx文件后,我的图表丢失而没有进行任何更改。
不幸的是,根据documentation for openpyxl:
警告
Openpyxl目前仅支持在工作表中创建图表。 现有工作簿中的图表将丢失。
它确实支持创建有限数量的图表:
您可以使用这些来重新创建所需的图表。