(self, key, proxy_url='')
| 66 | https://developer.work.weixin.qq.com/document/path/91770 |
| 67 | """ |
| 68 | def __init__(self, key, proxy_url='') -> None: |
| 69 | self.key = key |
| 70 | self.proxy = {'http': proxy_url, 'https': proxy_url} if proxy_url else {'http': None, 'https': None} |
| 71 | |
| 72 | @staticmethod |
| 73 | def parse_results(results: list): |
nothing calls this directly
no outgoing calls
no test coverage detected