User:Lidia.Pereira/PNM/Fluffying: Difference between revisions
< User:Lidia.Pereira | PNM
No edit summary |
No edit summary |
||
Line 17: | Line 17: | ||
for i in topRated: | for i in topRated: | ||
print i['title'] | print i['title'] | ||
url = "http://gdata.youtube.com/feeds/api/videos/"+i['id']+"/comments?alt=json" | url = "http://gdata.youtube.com/feeds/api/videos/"+i['id']+"/comments?alt=json" #url generator | ||
feed2 = urllib2.urlopen(url) | feed2 = urllib2.urlopen(url) | ||
data2 = json.load(feed2) | data2 = json.load(feed2) | ||
for c in data2 ['feed']['entry']: | for c in data2 ['feed']['entry']: | ||
content = c['content']['$t'] | content = c['content']['$t'] | ||
if "fucking" in content: | if "fucking" in content: |
Revision as of 15:03, 27 September 2013
Replacing "fucking" with fluffy verbs on the comments for the Top Rated YouTube videos.
import urllib2
import json
import random
feed = urllib2.urlopen("http://gdata.youtube.com/feeds/api/standardfeeds/top_rated?v=2&alt=jsonc")
data = json.load(feed)
topRated = data['data'] ['items']
fluffyVerbs = ["baking","combing","cuddling","babysitting","fluffing","braiding"]
for i in topRated:
print i['title']
url = "http://gdata.youtube.com/feeds/api/videos/"+i['id']+"/comments?alt=json" #url generator
feed2 = urllib2.urlopen(url)
data2 = json.load(feed2)
for c in data2 ['feed']['entry']:
content = c['content']['$t']
if "fucking" in content:
print content.replace("fucking",fluffyVerbs[random.randint(0,5)])
Here are some of my favourites:
Evolution of Dance - By Judson Laipply he babysitting rocks the robot dance omg
Jeff Dunham - Achmed the Dead Terrorist If you want to see her babysitting check out : rihanna-new-sextape.eu.pn
Nicki Minaj - Super Bass The girl was baking a black NBA player.
To do next: Add more innapropriate words to a list and replace them with innocuous ones.