Hello, my Python application has deployed successfully. I have an app.py and requirements.txt file, but when viewing the app - I see everything except a page that loads a picture using the following code:
pic = filtered['image.asset.url'].iloc[0]
response = requests.get(pic)
img = Image.open(BytesIO(response.content))
An image is supposed to populate and be filtered based on a selection from a dropdown menu. However, nothing shows up on the page - there are a few more things that are supposed to load, but this is definitely the most compute-intensive thing on the page. When I check the logs, it looks pretty clean with the exception of this line:
[INFO] Worker exiting (pid: 64)
Is this something I can fix while still using the free version of Render?
Thank you!