This depends on #1 and #2. Once we have the list of everyone mentioned or retweeted by our seed nodes we need to create the following files:
A dictionary of all usernames or twitter IDs to investigate from layer0's mentions
A dictionary of all usernames or twitter IDs to investigate from layer0's tweets
These should be pickled dictionaries, of the form (layer0username -> layer1username). They should be put in the workdir folder (default is "./work") and named layer0mentionedUsers.dict and layer0retweetedUsers.dict, respectively.
Implemented and pushed. I chose to use JSON instead of pickling, since we're already saving tweets as JSON. Filenames changed to "foo.json" accordingly.
This depends on #1 and #2. Once we have the list of everyone mentioned or retweeted by our seed nodes we need to create the following files:
A dictionary of all usernames or twitter IDs to investigate from layer0's mentions
A dictionary of all usernames or twitter IDs to investigate from layer0's tweets
These should be pickled dictionaries, of the form (layer0username -> layer1username). They should be put in the
workdir
folder (default is "./work") and namedlayer0mentionedUsers.dict
andlayer0retweetedUsers.dict
, respectively.