diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index ff25148..4af5b6a 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -4,9 +4,7 @@
-
-
-
+
@@ -106,7 +104,14 @@
1676532798232
-
+
+ 1676934066947
+
+
+
+ 1676934066947
+
+
@@ -125,7 +130,8 @@
-
+
+
diff --git a/Задания/task1/Kulikov/main.py b/Задания/task1/Kulikov/main.py
new file mode 100644
index 0000000..8bcd915
--- /dev/null
+++ b/Задания/task1/Kulikov/main.py
@@ -0,0 +1,25 @@
+# pip install selenium bs4
+
+
+from bs4 import BeautifulSoup
+from selenium import webdriver
+from selenium.webdriver.chrome.service import Service
+from time import sleep
+
+
+s = Service("C:\\Users\\Alex\\PycharmProjects\\pythonProject\\chromedriver.exe")
+brow = webdriver.Chrome(service=s)
+
+# brow.get("https://www.kinopoisk.ru/lists/movies/top250/")
+brow.get("https://www.revshells.com/")
+sleep(10)
+
+html = brow.page_source
+
+soup = BeautifulSoup(html, "lxml")
+
+# films = soup.find_all(attrs={"class": "styles_mainTitle__IFQyZ styles_activeMovieTittle__kJdJj"})
+buttons = soup.find_all(attrs={"class": "list-group-item list-group-item-action"})
+
+for button in buttons:
+ print(button.text)
\ No newline at end of file