6 lines
230 B
Python
6 lines
230 B
Python
from auction_items import get_items_twk
|
|
|
|
# Replace "35563" with a real auction ID from troostwijkauctions.com
|
|
lots = get_items_twk(display_id="35563")
|
|
for lot in lots:
|
|
print(lot['lot_number'], lot['title'], lot['current_bid']) |