This works well in pulling down the HTML/Text from the requested page:
However, I need help converting the print urlopen().read output to plain text rather than HTML/Text.
Your help is appreciated.
Code:
# -*- coding: utf-8 -*-
# Python
from urllib import urlopen
print urlopen('[URL unfurl="true"]http://www.fsmb.org').read()[/URL]
However, I need help converting the print urlopen().read output to plain text rather than HTML/Text.
Your help is appreciated.