Shopify Python API : How to serialize products list to JSON?

You can use jsonpickle for this.

import jsonpickle

products = shopify.Product.find()
products_page_json  =jsonpickle.encode(products)