Socialmetrica/Socialmetrica.package/NitterUser.class/instance/writeWordsFile.st

16 lines
546 B
Smalltalk
Raw Normal View History

2022-04-05 21:39:07 +00:00
accessing
writeWordsFile
| rawTweets rawWords collectionsWords count |
2022-04-05 21:39:07 +00:00
self tweets ifNil: [ ^ self ].
rawTweets := self tweets tweets.
rawWords := OrderedCollection new.
collectionsWords := ((rawTweets select:
2022-04-06 18:09:38 +00:00
[ :tweet | tweet user userName = self userName ])
collect: [ :tweet | (tweet words
reject: [ :w | w includesSubstring: 'nitter42lfr' ]) ]).
2022-04-06 18:09:38 +00:00
collectionsWords do: [ :word | rawWords addAll: word ].
rawWords := ' ' join:rawWords.
2022-04-06 18:09:38 +00:00
^ MarkupFile exportAsFileOn: (self folder / 'words', 'txt') containing: rawWords.