#!/usr/bin/env python3
"""批量拉取MCP客户所属人 — get_workitem_brief
用法: python3 pull_customer_owners.py
输出: customer_owners.json  {客户名: 所属人,...}
"""
import json, subprocess, time, os, urllib.request

DATA_DIR = os.path.dirname(os.path.abspath(__file__)) if '__file__' in dir() else '/Users/liuxinyuan/Desktop/Hermes输出-工作类/数据'
...[truncated]