#!/usr/bin/env python # -*- coding: utf-8 -*- # @Time : 2019/1/22 17:11 # @Email : [email protected] from filiter_infomation.template_filiter import template re_temp = '<div class="xxxq_text_left">(.*?)<div class="fenx_con">' website = "技术壁垒资源网" if __name__ == '__main__': template(table="criterion2018", re_temp=re_temp, website=website)
from filiter_infomation.template_filiter import template re_temp = '<div class="zwdabox">(.*?)</table>' website = "中国技术性贸易措施网" if __name__ == '__main__': template(table="recall2018", re_temp=re_temp, website=website)
from filiter_infomation.template_filiter import template re_temp = '<div id="content">(.*?)<!-- /end #content -->' website = "疾病控制保护中心" if __name__ == '__main__': template(table="epidemic2018", re_temp=re_temp, website=website)