I'm a beginner at this but I'd like to create a folder where I have many texts (lets say novels saved as .txt). I'd then like to ask the user to select one of these novels and then automatically have the part-of-speech-tagger analize the entire text. Is this possible? I've been trying with:
text = nltk.word_tokenize("And now for something completely different")
nltk.pos_tag(text)
How do I make it analyse the text the user has selected instead of this sentence? And how do I import these texts?
There's a couple of ways to read a directory of textfiles.
Let's try the native python way first, from the terminal/console/command prompt:
The other solution is using
PlaintextCorpusReader
in NLTK, then runword_tokenize
andpos_tag
on the corpus see Creating a new corpus with NLTK: