# -*- coding: utf-8 -*- """지오영 장바구니 아이템 키 확인""" import sys; sys.path.insert(0, '.'); import wholesale_path from wholesale import GeoYoungSession import json g = GeoYoungSession() g.login() cart = g.get_cart() print(f"장바구니: {cart['total_items']}개\n") if cart['items']: print("첫 번째 아이템 키:") item = cart['items'][0] print(json.dumps(item, indent=2, ensure_ascii=False, default=str))