René Schwabe
René Schwabe
If we use the scraper for every other Amazon Marketplace, like Amazon.de we get the following error: ``` Downloading https://www.amazon.de/s?k=laptop Traceback (most recent call last): File "searchresults.py", line 43, in...
We use Amazon S3 as a CDN for our images. We have added a "site_logo" via Settings.py: "site_logo": "/static/images/XXX.png", I can see the image in the S3 bucket and it...
The correct one is: # Get All Products @app.route('/product', methods=['GET']) def get_products(): all_products = Product.query.all() result = products_schema.dump(all_products) return jsonify(result) Wrong syntax: return jsonify(result.data)
## Actual behaviour Shopware.woff2 is loaded, although a different font was embedded in the template. This leads to the following message at Google Pagespeed Insights: Make sure that the text...
# Implement Automatic Partial Order Shipping for Mollie Integration ## Problem Currently, when only part of an order is shipped, the entire order remains fully open in Mollie. This can...