I'm trying to Tokenize tweets, but am running into a problem with looping through them. For example, this works fine:
tweet = """This is an example Tweet!"""
# tokenize the sentence
print text
print list(token[1] for token in tokenize.generate_tokens(cStringIO.StringIO(text).readline)if token[1])
But, this does not:
for tweet in tweets:
text = tweet['tweet']
# tokenize the sentence
print text
print list(token[1] for token in tokenize.generate_tokens(cStringIO.StringIO(text).readline)if token[1])
I get this list back:
Sickipedia is hilarious xD
['S', '\x00', 'i', '\x00', 'c', '\x00', 'k', '\x00', 'i', '\x00', 'p', '\x00', 'e', '\x00', 'd', '\x00', 'i', '\x00', 'a', '\x00', ' ', '\x00', 'i', '\x00', 's', '\x00', ' ', '\x00', 'h', '\x00', 'i', '\x00', 'l', '\x00', 'a', '\x00', 'r', '\x00', 'i', '\x00', 'o', '\x00', 'u', '\x00', 's', '\x00', ' ', '\x00', 'x', '\x00', 'D', '\x00']
When it should read something like:
Sikipedia is hilarious xD
['Sikipedia', 'is', 'hilarious', 'xD']
Any ideas? I'm using Python by the way w/ Mongo. Thanks in advance