Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
mustafamuratcoskun
GitHub Repository: mustafamuratcoskun/Sifirdan-Ileri-Seviyeye-Python-Programlama
Path: blob/master/İleri Seviye Modüller/Videolarda Kullanılan Kodlar/requests,beautifulsoup,json/requestsvebeautifulsoup.py
765 views
1
import requests
2
3
from bs4 import BeautifulSoup
4
5
url = "https://yellowpages.com.tr/ara?q=Ankara"
6
response = requests.get(url)
7
8
html_icerigi = response.content
9
10
soup = BeautifulSoup(html_icerigi,"html.parser")
11
12
13
print(soup.find_all("div",{"class":"yp-poi-box-2"}))
14
15
16
17
18
19
20
21