I have a folder full of (so many) TIFF files.
These files are grouped into documents by name. I need to write a script to index these files in a specific comma seperated file format.
For example, a 4 page document consists of 4 TIFF files named as follows;
PS987_021_001_000031868_1.tif PS987_021_001_000031868_2.tif PS987_021_001_000031868_3.tif PS987_021_001_000031868_4.tif
is described my my system as follows:
PS987_021_001_000031868_1,,PS987_021_001_000031868_1.tif,Y,,,4 PS987_021_001_000031868_1_001,,PS987_021_001_000031868_2.tif,,,,, PS987_021_001_000031868_1_002,,PS987_021_001_000031868_3.tif,,,,, PS987_021_001_000031868_1_003,,PS987_021_001_000031868_4.tif,,,,,
A one page document consists of 1 TIFF file and is descibed as follows:
PS987_021_001_000031869.tif
PS987_021_001_000031869_1,,PS987_021_001_000031869.tif,Y,,,1
The I'm trying to create a python script to
1) Find all the TIFF files in my directory 2) Figure out what text to generate 3) Write this to a file.
The file format is comma delimited with a carriage return after each line. The 'Y' field describes if the file is the first in the chain.
So far, I've managed to import the files and get a frequency using the following
import os
tiffs = []
# build list of filenames
for filename in os.listdir("C:\Users\home\Desktop\NativePDFs"):
if filename.endswith('.tif'):
tiffs.append(filename[:23])
word_freq = {}
# create frequency count
for word in tiffs:
word_freq[word] = word_freq.get(word, 0) + 1
keys = sorted(word_freq.keys())
for word in keys:
i print "%-10s %d" % (word, word_freq[word])
I would appreciate some help in dumping the content of word_freq in the above format
thanks!