tychxn / jd-assistant

京东抢购助手:包含登录,查询商品库存/价格,添加/清空购物车,抢购商品(下单),查询订单等功能
MIT License
5.18k stars 1.92k forks source link

code 优化 #185

Open adrielliu opened 3 years ago

adrielliu commented 3 years ago

https://github.com/tychxn/jd-assistant/blob/92bcd4f6d5b10bc92a5ee9b0000e0a2e15e34a73/jd_assistant.py#L48

这里 if not self.eid or not self.fp or not self.track_id or not self.risk_control: raise AsstException('请在 config.ini 中配置 eid, fp, track_id, risk_control 参数,具体请参考 wiki-常见问题') 可以改成 if not all([self.eid, self.fp, self.track_id, self.risk_control]): raise AsstException('请在 config.ini 中配置 eid, fp, track_id, risk_control 参数,具体请参考 wiki-常见问题') 没有对与错, 看起来更简洁,