All pastes #2048534 Raw Edit

Stuff

public text v1 · immutable
#2048534 ·published 2011-04-20 04:58 UTC
rendered paste body
# By Brian Gross #
# Co editor Liz Henry #
# 4/19/11 #
url = raw_input('Please enter a website url: ')
x = raw_input('Please enter a search word: ')
import urllib
html_source = urllib.urlopen(url).read()
if x in html_source:
	print x,'was found in the webpage'
	words = html_source.split()
	y = words.count(x)
	print 'The word,',x,'was found',y,'times.'
if x not in html_source:
	print 'Sorry, the string',x,'was not found in the website contents.'
answer = raw_input('Would you like to see the source code of that webpage? ')
if answer=="yes" or answer=="y" or answer=="sure" or answer=="okay":
	print html_source
if answer=="no" or answer=="n":
	exit()
else:
	print 'Sorry, that command was not recognized.'
exit()
# http://en.wikibooks.org/wiki/Python_Programming/Internet #