DannyK
DannyK
As doc here: https://requests-html.kennethreitz.org/ ``` from requests_html import HTMLSession def main() -> None: session = HTMLSession() r = session.get('https://python.org/') print(f"all links = {r.html.absolute_links}") if __name__ == '__main__': main() ``` Traceback...
FIXED: I will leave this here in case anyone else has this issue. The problem is that Windows uses \r\n as an end of line, whereas unix only uses \n....
Followed the readme with first time only After running docker compose, the app container exists with just this one line in the log 2024-05-03 15:18:43 /usr/bin/env: ‘bash\r’: No such file...