diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index 858e631..4d658fb 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -4,9 +4,7 @@
-
-
-
+
@@ -35,11 +33,11 @@
- {
- "keyToString": {
- "last_opened_file_path": "C:/Users/71332/PycharmProjects/c22712"
+
+}]]>
@@ -142,7 +140,14 @@
1679839777822
-
+
+ 1680206771744
+
+
+
+ 1680206771744
+
+
@@ -162,7 +167,8 @@
-
+
+
diff --git a/Задания/task1/Prokhorova/pars.py b/Задания/task1/Prokhorova/pars.py
new file mode 100644
index 0000000..6732d15
--- /dev/null
+++ b/Задания/task1/Prokhorova/pars.py
@@ -0,0 +1,15 @@
+from bs4 import BeautifulSoup
+from selenium import webdriver
+from selenium.webdriver.chrome.service import Service
+
+s = Service('D:\data\chromedriver.exe')
+browser = webdriver.Chrome(service=s)
+browser.get('https://www.kfc.ru/')
+html_text = browser.page_source
+soup = BeautifulSoup(html_text, 'lxml')
+
+prices = soup.find_all(attrs={"class": "GFmMCzZoYv"})
+titles = soup.find_all(attrs={"class": "_14ZQf5wtqx c-description"})
+
+for price, title in zip(prices, titles):
+ print(f" название {title.text} ; цена: {price.text}")
\ No newline at end of file