Spaces:
Runtime error
Runtime error
File size: 796 Bytes
5d052d8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
from flask import Flask, render_template, request
from webscout import WEBS
import arrow
app = Flask(__name__)
@app.route('/', methods=['GET'])
def home():
keywords = request.args.get('keywords', 'india')
image_list = []
with WEBS() as webs_instance:
WEBS_images_gen = webs_instance.images(
keywords,
region="wt-wt",
safesearch="off",
size=None,
type_image=None,
layout=None,
license_image=None,
max_results=100
)
for r in WEBS_images_gen:
image_list.append(r)
print(r['image']) # Print the image URL to check if it's valid
return render_template('image.html', image=image_list, keywords=keywords)
if __name__ == '__main__':
app.run(debug=True) |