I am using the code below to get the following
<p>Ibn Umar reported: I passed by the Messenger of Allah, peace and blessings be
upon him, while my garment was trailing. The Prophet said, ÔÇ£<b>O Abdullah, ra
ise your garment</b>.ÔÇØ I lifted it up and he told me to raise it higher and I
did so. Some of the people said, ÔÇ£To where should it be raised?ÔÇØ The Prophet
said, ÔÇ£<b>In the middle of the shins</b>.ÔÇØ</p>
I am wondering if you would be able to help me get rid of the <p>, </p> and <b>
Code:
url1 = "http://www.dailyhadithonline.com/2013/07/21/hadith-on-clothing-the-lower-garment-should-be-hallway-between-the-shins/"
content1 = urllib2.urlopen(url1).read()
soup = BeautifulSoup(content1)
english_hadith = soup.findAll('p')[0]
print english_hadith