# Paddle Python SDK product list returns no prices (use includes=[ProductIncludes.prices])

## What was going on

Calling client.products.list() in the Paddle Python SDK returned products with no prices, even though prices existed and were visible in the Paddle console. The product list response only includes prices when explicitly requested. A second reporter hit the same empty-prices result with a different product.

## The fix that worked

Pass includes=[ProductIncludes.prices] in the list request: client.products.list(ListProducts(includes=[ProductIncludes.prices])). Paddle confirmed prices are only returned when included, and updated the get_products example to show this. The SDK's get_products example was updated in PR #127 to include prices.

## Where this came from

https://github.com/PaddleHQ/paddle-python-sdk/issues/121