i have extracted a long web source code and within the long source code what i want to extract is the content within the span tag.
<span class="a-size-medium a-color-base a-text-normal">
Apple iPhone 6S, GSM Unlocked, 16GB - Rose Gold (Renewed)
</span>
i.e. i want to retrieve 'Apple iPhone 6S, GSM Unlocked, 16GB - Rose Gold (Renewed)'
How can I use re.findall to extract the relevant contact within the tags? or any other easier way to do so? thanks.