so my problem is that I'm not really into programming, the only thing I do is making websites and selling them.
I learned a little bit of python but not much and here is where my problem comes in. I startet a program because I want to learn the language while it is usefull... So as I said early I sell websites and there is a website in my country where almost every company is listed. I want a scraper that looks for all the Number on the website.
Currently it only works for the first number but every on every page only ten are listed, here is my code:
from requests import get
def starting():
keyword = input("Suchbegriff: ")
URL = "https://www.herold.at/gelbe-seiten/" + keyword + "/"
print("Targing... : " + URL)
data = get(URL)
print(data.text[:100000000000000000000000])
tel = data.text.find('"tel:')
print(tel)
print(data.text[tel:tel + 19])
starting()
Currently if I enter a branche niche name like "friseur" i get only the first number as output:
"39820 "tel:+4315124367" t"
How can I make it that the crawler continues and gets the other 9.
Already thanks for your anwsers!