Keyword Extraction In Python_rake
I am a novice user and puzzled over the following otherwise simple 'loop' problem. I have a local dir with x number of files (about 500 .txt files). I would like to extract the cor
Solution 1:
Create a list of filenames you want to process:
filenames = [
'data/docs/fao_test/w2167e.txt',
'some/other/folder/filename.txt',
etc...
]
If you don't want to hardcode all the names, you can use the glob
module to collect filenames by wildcards.
Create a dictionary for storing the results:
results = {}
Loop through each filename, reading the contents and storing the Rake results in the dictionary, keyed by filename:
for filename in filenames:
withopen(filename, 'r') as fp:
results[filename] = rake_object.run(fp.read())
Post a Comment for "Keyword Extraction In Python_rake"