Mar-24-2020, 09:32 AM
Hello guys, I', trying to extract a text/info from a button in one webpage.
The button have a number (inside the button) and is always changing the number depending the number of items.
https://www.flickr.com/photos/187583127@...ed-public/
the link is the information from the html
I already try to use "a"... but I can´t find the number from the buttom.
please guys help.
The button have a number (inside the button) and is always changing the number depending the number of items.
https://www.flickr.com/photos/187583127@...ed-public/
the link is the information from the html
import requests r=requests.get("link") from bs4 import BeautifulSoup soup= BeautifulSoup(r.text, "html.parser") soup.find_all("/span") print(soup.find_all("/span")) quit()
I already try to use "a"... but I can´t find the number from the buttom.
please guys help.