You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
playwright does not exist on freebsd (its releases are binary only and there are no binaries for freebsd). I was able to work around this by the following change in scrape.py:
# stub implements the with protocol, but does nothing
class stub(object):
def __enter__(self):
pass
def __exit__(self, *args):
pass
def sync_playwright():
return stub()
ideally, scrape.py should contain a conditional import and automatically disable scraping if playwright is not found.
hello, I want to report that
aiderworks fine on FreeBSD, modulo two changes:scrape.py:ideally,
scrape.pyshould contain a conditional import and automatically disable scraping if playwright is not found.https://discord.com/channels/1131200896827654144/1131200896827654149/1225121706809626766