diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index ea3ac47..cc64d58 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -5,8 +5,8 @@
+
-
@@ -91,7 +91,21 @@
1675931967836
-
+
+ 1676532721150
+
+
+
+ 1676532721150
+
+
+ 1676532798232
+
+
+
+ 1676532798232
+
+
diff --git a/Задания/task1/Lahin/parsing.py b/Задания/task1/Lahin/parsing.py
new file mode 100644
index 0000000..42c83eb
--- /dev/null
+++ b/Задания/task1/Lahin/parsing.py
@@ -0,0 +1,14 @@
+from bs4 import BeautifulSoup
+from selenium import webdriver
+from selenium.webdriver.chrome.service import Service
+from time import sleep
+s = Service("С:\DATA\ChromeDriver\chromedriver.exe")
+browser = webdriver.Chrome(service=s)
+browser.get("https://www.kinopoisk.ru/lists/movies/top250/")
+sleep(15)
+html_text = browser.page_source
+soup = BeautifulSoup(html_text, 'lxml')
+films = soup.find_all('div', class_="desktop-list-main-info_secondaryTitleSlot__mc0mI")
+for film in films:
+ print(film.text)
+ print("--------")