I am stuck with a scraping problem:
So I have this html code.. and I need to get the value of the telephone number
<body>
<p class="tel">telephone :</p>
<p class="val">+123456789</p>
<p class="fax">Fax :</p>
<p class="val">+33 3 86 32 42 91</p>
<p class="email">Email :</p>
<p class="valeur">[email protected]</p>
</body>
How can I get the telephone number using python? I tried using bs4 but i don't know how to find the second <p> element from the element with class tel.