这是我的CSV文件:
Simon,/home/user/Desktop/simon.jpeg
这是我的Python代码:
#! /usr/bin/python3
import csv
import subprocess
LatexContent = '''\\documentclass[12pt, twocolumn, letterpaper]{report}
\\usepackage[utf8]{inputenc}
\\usepackage{graphicx}
\\renewcommand{\familydefault}{\\sfdefault}
\\begin{document}
Run Satus: \\textsc{%(sampleid)s}
%(sampleid)s
\\includegraphics[width=20cm]{%(coveragegraph)s}
\\end{document}'''
###== Look at the database ==##
# open the database into python
my_db_file = open('automate.testing.csv', 'r')
# read the database
my_db = csv.reader(my_db_file, delimiter=',',skipinitialspace=True)
###== TeX files processing and generating ==###
#skip the header of the database
next(my_db)
#then for each row of the database
for row in my_db :
## Assign the items of the row to the variables that will fill up the
## blanks of the LaTeX code
sampleid = str(row[0]) #caution, first item of a row = index '0'
coveragegraph = str(row[1])
#define the TeX file name
TexFileName = sampleid + '.tex'
## create a new LaTeX file with the blanks filled
#create a new file
TexFile = open(TexFileName,'w')
#fill the blanks with the previously read informations
TexFile.write(LatexContent %{"sampleid" : sampleid, "coveragegraph" : coveragegraph})
#close the file
TexFile.close()
## compile the file you've just created with LaTeX
subprocess.Popen(['pdflatex',TexFileName],shell=False)
##repeat for each row
#close the database file
my_db_file.close()
我希望能够执行Python脚本,将其读入CSV文件,然后将值放入latexcontent
部分,然后将其与pdflatex
执行。
当我按下Enter键时,它似乎执行得很好,没有错误代码。但是目录中没有创建.tex
文件。
我应该对Python进行哪些更改才能使其运行,我知道我已经接近了...
答案 0 :(得分:1)
好吧,我看到的第一个问题是.csv
文件中只有一行,但是您使用了next()
函数来“跳过标题”。您提供的.csv
中没有标题,因此您将跳过仅有的数据。
然后,当您到达for row in my_db :
行时,没有任何行可以迭代,因此该代码实际上从未进入任何写语句。
尝试删除代码中的next()
或修改.csv
以包含标头,然后使用新的输出发布更新。