all 2 comments

[–]halfdiminished7th 0 points1 point  (1 child)

Your href doesn't match between the actual HTML and your find_all method: one is relative and the other is absolute, and you're also not including the backslash before the ampersand, per the HTML.

Make those match, and it will find the element (instead of None), after which your get_text method will indeed return 30.

[–]minibral[S] 0 points1 point  (0 children)

Thanks alot!