import urllib
f = urllib.urlopen("http://www.mahiti.in")
word = "Software"
for line in f:
if word in line:
print line
:cheesy:
import urllib
f = urllib.urlopen("http://www.mahiti.in")
word = "Software"
for line in f:
if word in line:
print line
:cheesy:
Once you indent it correctly it works just fine.
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.