I am using Google App Engine for hosting my website which is mostly static pages. But there is a part where I need to get a list of images from a folder in the server and dynamically add those images to the page using JavaScript.
I got it working in my local machine using os.walk("static/images/temp/1.jpg")
in a python script. But after deploying the site, it doesn't work. The python script return empty. Should there be a different approach for getting list of static files in Google App Engine?