I have a Python script that scrapes data from a webpage.
It works on my local but not on AWS Lambda because it only allows writes new file to /tmp
directory.
I tried to go through request_html
render
API and it seems like it's not possible to change the file location. It default take current working directory by default. It's causing error as below
Error detail Read-only file system: '/home/sbx_user123'
Thank you in advance.