I have a Python script, that uses requests_html to request HTML content from a website, parse it, read some data and write the relevant parts to a file.
I try to move the script to a Google Cloud Function, which is triggered by a Google Cloud Scheduler cronjob.
During this I encounter a problem: I cannot import the requests_html package in my script, even though it is imported through requirements.txt. Everytime I try saving, the script resets to the old state.
Has someone any experience with Google Cloud Function and requests_html or encountered a similar problem?
Thanks in advance & best regards!