├── README.md └── code /README.md: -------------------------------------------------------------------------------- 1 | # Web-Scraping-Wizard -------------------------------------------------------------------------------- /code: -------------------------------------------------------------------------------- 1 | import requests 2 | from bs4 import BeautifulSoup 3 | 4 | # Пример веб-скрапинга с использованием BeautifulSoup 5 | url = 'https://example.com' 6 | response = requests.get(url) 7 | soup = BeautifulSoup(response.text, 'html.parser') 8 | 9 | print(soup.title) 10 | --------------------------------------------------------------------------------