Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to mine social media data, such as tweets. However, social media data have a lot of noise- for example people discussing celebrities or quoting a movie/TV/song, that is something most generally that is not about themselves or somebody they actually know personally.

So, is: are there any dynamic (i.e., automatically updated) databases on the most popular current celebrities? Movie quotes that they are in or song lyrics that they sing would also be relevant.

share|improve this question
Many sociology departments (e.g. Chicago & Illinois) and some libraries http://popculture.abc-clio.com/Authentication/LogOn?returnUrl=%2F have paid online resources one could scrape. – mac389 Dec 24 '12 at 3:19
Related: stackoverflow.com/questions/3484878/… – mac389 Dec 25 '12 at 19:30

1 Answer

up vote 1 down vote accepted

I don't think such a curated list exists. Smaller ones do exist, for example the 100 top movies quotes on Wikipedia. However, these are not updated.

One possibility is to filter out the aspects of your input that appear on another social media site that tracks trends, such as Delicious. Unless you are looking for trends, something that rises to the top of two trending sites likely ... is just a trend.

Delicious has a nice Python wrapper for its API.

In Pythonic pseudocode,

 data = social-media.content
 data = filter(lambda datum: datum not in delicious.content-list,data)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.