I'm doing a scrapy for a page where I'm looking for a label. I do it with BeautifulSoup. I look for all the links that start with them, but end up differently.
Example:
for url in soup.find_all('a', href=("/es/nds/*******")):
Where the asterisks represent that I look for an end of any string. I do not know how to look for it. I've tried:
href=("/es/nds/"+""), href=("/es/nds/\*") y similares.
Can you help me out with it?
Thanks. Greetings.