Example #1
0
def cleanfile(infilename,outfilename):
#read file and find the research keywords of the given author
  f1 = open(infilename,'r+',encoding='utf-8')
  rawdata=csv.reader(f1)
  Analyze.cleanfile(rawdata,outfilename)
  f1.close()