(urls)
| 9 | class SpiderNotify(): |
| 10 | @staticmethod |
| 11 | def baidu_notify(urls): |
| 12 | try: |
| 13 | data = '\n'.join(urls) |
| 14 | result = requests.post(settings.BAIDU_NOTIFY_URL, data=data) |
| 15 | logger.info(result.text) |
| 16 | except Exception as e: |
| 17 | logger.error(e) |
| 18 | |
| 19 | @staticmethod |
| 20 | def notify(url): |