Shopify Python API : How to serialize products list to JSON?
I want to fetch Products list and return as JSON using the Shopify Python API. I tried the .to_json() function products=shopify.Product.find().to_json() Got the error 'PaginatedCollection' object has no attribute 'to_json' I tried doing products=shopify.Product.find() js=json.dumps(products) Error: Object of type Product…