I have a list of item like this: (the number of item lists can vary)
<h3>My title</h3>
<a href="http://myurl.com">http://myurl.com</a>
<span class="t">text</span>
<h3>My title</h3>
<a href="http://myurl.com">http://myurl.com</a>
<span class="t">text</span>
...
How with beautiful soup I could get all these data so I can put all of them is a list to have a result like this : [{'title': h3, 'url': url, 'title': title}, {'title': h3, 'url': url, 'title': title}, ...] ?
thank you