- wholesale 패키지 연동 (SooinSession, GeoYoungSession) - Flask Blueprint 분리 (sooin_api.py, geoyoung_api.py) - order_context 스키마 확장 (wholesaler_id, internal_code 등) - 수인약품 개별 취소 기능 (cancel_item, restore_item) - 문서 추가: WHOLESALE_API_INTEGRATION.md - 테스트 스크립트들
22 lines
593 B
Python
22 lines
593 B
Python
# -*- coding: utf-8 -*-
|
|
"""HTML 전체 분석"""
|
|
from sooin_api import SooinSession
|
|
|
|
session = SooinSession()
|
|
session.login()
|
|
|
|
resp = session.session.get('http://sooinpharm.co.kr/Service/Order/Bag.asp?currVenCd=50911')
|
|
|
|
# 전체 저장해서 분석
|
|
with open('bag_page.html', 'w', encoding='utf-8') as f:
|
|
f.write(resp.text)
|
|
|
|
print('bag_page.html 저장됨')
|
|
print(f'길이: {len(resp.text)}')
|
|
|
|
# 현재 장바구니 상태
|
|
cart = session.get_cart()
|
|
print(f'장바구니: {cart.get("total_items", 0)}개')
|
|
for item in cart.get('items', []):
|
|
print(f' - {item.get("product_name")}')
|