I\'m new to Python completely and am using Python 3.1 on Windows (pywin). I need to parse some HTML, to essentially extra values between specific HTML tags and am confused a
you might try beautifulsoup4 which is compatible with both python2 and python3 you can use it easily by
from bs4 import BeautifulSoup soup = BeautifulSoup("SomebadHTML")
SomebadHTML")