removed get_playwright_instructions

This commit is contained in:
Paul Gauthier 2024-07-14 20:04:27 +01:00
parent a522b2fd85
commit c5d93d7f0c
2 changed files with 0 additions and 7 deletions

View file

@ -482,10 +482,6 @@ class GUI:
if not self.state.scraper:
self.scraper = Scraper(print_error=self.info)
instructions = self.scraper.get_playwright_instructions()
if instructions:
self.info(instructions)
content = self.scraper.scrape(url) or ""
if content.strip():
content = f"{url}\n\n" + content

View file

@ -134,9 +134,6 @@ class Scraper:
return content
def get_playwright_instructions(self):
return
def scrape_with_httpx(self, url):
import httpx