当前位置: 首页 > news >正文

电子商务网站建设与管理期末考试试卷a开发公司岗位设置

电子商务网站建设与管理期末考试试卷a,开发公司岗位设置,南京房地产网站,wordpress用户关系之前用python写过爬虫#xff0c;这次想试试nodeJS爬虫爬取贴吧图片#xff0c;话不多说代码如下#xff0c;爬取制定吧的前十页所有帖子里的图片 爬取贴吧图片脚本 你得提前创建一个images文件夹 const axios require(axios); const cheerio require(这次想试试nodeJS爬虫爬取贴吧图片话不多说代码如下爬取制定吧的前十页所有帖子里的图片 爬取贴吧图片脚本 你得提前创建一个images文件夹 const axios require(axios); const cheerio require(cheerio); const sanitize require(sanitize-filename); const fs require(fs); const path require(path);// 定义要爬取的贴吧URL const baseUrl https://tieba.baidu.com/f?kw%CB%EF%D0%A6%B4%A8frala0tpl5dyTabStrMCwxLDMsMiw2LDQsNSw4LDcsOQ%3D%3D;// 发送HTTP请求获取页面内容 async function getTitlesByPage(pageNum) {const url baseUrl pageNum * 50;try {const response await axios.get(url);if (response.status 200) {// 使用cheerio解析页面const $ cheerio.load(response.data);$(.threadlist_title a.j_th_tit).each((index, element) {// 定义要下载的帖子URLconst url https://jump2.bdimg.com $(element).attr(href);// 发送HTTP请求获取页面内容axios.get(url).then((response) {if (response.status 200) {// 使用cheerio解析页面const $ cheerio.load(response.data);// 获取帖子中的所有图片链接const imgUrls [];$(img.BDE_Image).each((index, element) {imgUrls.push($(element).attr(src));});// 下载所有图片imgUrls.forEach((imgUrl, index) {axios({method: get,url: imgUrl,responseType: stream,headers: {Referer: url,},}).then((response) {const filename sanitize(path.basename(imgUrl));const filePath path.resolve(__dirname,./images/${filename}.jpg);response.data.pipe(fs.createWriteStream(filePath));console.log(第 ${index 1} 张图片下载完成);}).catch((error) {console.log(第 ${index 1} 张图片下载失败, error);});});} else {console.log(请求失败);}}).catch((error) {console.log(请求出错, error);});});} else {console.log(请求第 ${pageNum 1} 页失败);}} catch (error) {console.log(请求第 ${pageNum 1} 页出错, error);} }async function getTitles() {for (let i 0; i 10; i) {await getTitlesByPage(i);} }getTitles(); 这里有个弊端IP会被马上封掉那么通过爬取免费代理IP网站的IP去创建本地代理IP池txt文件 找了一个勉强可用的免费代理IP网站免费代理IP_免费HTTP代理IP_SOCKS5代理服务器_优质IP代理_89免费代理IP 里面的有效IP很少那么得自己去大量爬取筛选可用IP 这个是 爬取建立免费代理IP池的脚本 你得提前创建一个proxy.txt文件 const fs require(fs); const axios require(axios); const cheerio require(cheerio);const headers {User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36, };async function get89IP(filePath) {for (let i 1; i 10; i) { // 循环采集前10页的数据const url https://www.89ip.cn/index_${i}.html;try {const response await axios.get(url, { headers });const $ cheerio.load(response.data);const trs $(table tbody tr);trs.each((index, element) {const ip $(element).find(td:nth-child(1)).text().trim();const port $(element).find(td:nth-child(2)).text().trim();const proxyIP ${ip}:${port};fs.appendFileSync(filePath, proxyIP \n);});console.log(第${i}页采集完成);} catch (error) {console.error(出错了:, error);}await new Promise((resolve) setTimeout(resolve, 1000));} }async function main() {const filePath ./proxy.txt;while (true) {try {await get89IP(filePath);console.log(采集完成);} catch (error) {console.error(出错了:, error);}await new Promise((resolve) setTimeout(resolve, 60000));} }main();采集完成后的筛选IP代码 一个一个筛选太慢这里使用到了Promise.all 你得提前创建一个KyProxy.txt文件 const fs require(fs); const axios require(axios);const proxyList fs.readFileSync(proxy.txt, utf-8).split(\n).filter(Boolean);async function testProxy(ip) {try {const response await axios.get(https://tieba.baidu.com/, {proxy: {host: ip.split(:)[0],port: ip.split(:)[1]},timeout: 5000});if (response.status 200 || response.status 302) {return true;}} catch (error) {console.error(error);}return false; }async function main() {const promiseArr [];for (const proxy of proxyList) {promiseArr.push(testProxy(proxy));}const resultArr await Promise.all(promiseArr);const validProxies resultArr.reduce((acc, curr, index) {if (curr) {acc.push(proxyList[index]);console.log(代理IP ${proxyList[index]} 可用);} else {console.log(代理IP ${proxyList[index]} 不可用);}return acc;}, []);fs.writeFileSync(kyProxy.txt, validProxies.join(\n));console.log(可用代理IP已写入 kyProxy.txt); }main().catch((error) console.error(error));到这一步kyProxy.txt里面的IP基本是稳定可用的了最后一步就是使用kyProxy.txt里的代理I去爬取图片 通过代理IP爬取贴吧图片 const axios require(axios); const cheerio require(cheerio); const sanitize require(sanitize-filename); const fs require(fs); const path require(path);// 定义要爬取的贴吧URL const baseUrl https://tieba.baidu.com/f?kw%CB%EF%D0%A6%B4%A8frala0tpl5dyTabStrMCwxLDMsMiw2LDQsNSw4LDcsOQ%3D%3D;// 获取代理IP池 async function getProxyList() {const fileContent await fs.promises.readFile(path.resolve(__dirname, ./kyProxy.txt),utf8);return fileContent.trim().split(\n); }// 发送HTTP请求获取页面内容 async function getTitlesByPage(pageNum, proxyList) {const url baseUrl pageNum * 50;try {let success false;for (let i 0; i proxyList.length; i) {const proxy ${proxyList[i]};console.log(使用代理IP${proxy});try {const response await axios.get(url, {proxy: {host: proxyList[i].split(:)[0],port: proxyList[i].split(:)[1],},});if (response.status 200) {// 使用cheerio解析页面const $ cheerio.load(response.data);$(.threadlist_title a.j_th_tit).each(async (index, element) {// 定义要下载的帖子URLconst url https://jump2.bdimg.com $(element).attr(href);// 发送HTTP请求获取页面内容const imgUrls await getImgUrls(url, proxy);// 下载所有图片for (let j 0; j imgUrls.length; j) {await downloadImg(imgUrls[j], j, url, proxy);}});success true;break;} else {console.log(代理IP ${proxy} 请求失败);}} catch (error) {console.log(代理IP ${proxy} 请求出错, error);}}if (!success) {console.log(请求第 ${pageNum 1} 页失败跳过);}} catch (error) {console.log(请求第 ${pageNum 1} 页出错, error);} }// 获取帖子中的所有图片链接 async function getImgUrls(url, proxy) {try {const response await axios.get(url, {proxy: {host: proxy.split(:)[0],port: proxy.split(:)[1],},headers: {Referer: url,},});if (response.status 200) {const $ cheerio.load(response.data);const imgUrls [];$(img.BDE_Image).each((index, element) {imgUrls.push($(element).attr(src));});return imgUrls;} else {console.log(请求 ${url} 失败);return [];}} catch (error) {console.log(请求 ${url} 出错, error);return [];} }// 下载单张图片 async function downloadImg(imgUrl, index, url, proxy) {try {const response await axios({method: get,url: imgUrl,responseType: stream,proxy: {host: proxy.split(:)[0],port: proxy.split(:)[1],},headers: {Referer: url,},});if (response.status 200) {const filename sanitize(path.basename(imgUrl));const filePath path.resolve(__dirname, ./images/${filename}.jpg);response.data.pipe(fs.createWriteStream(filePath));console.log(第 ${index 1} 张图片下载完成);} else {console.log(第 ${index 1} 张图片下载失败);}} catch (error) {console.log(第 ${index 1} 张图片下载出错, error);} }async function getTitles() {const proxyList await getProxyList();for (let i 0; i 10; i) {await getTitlesByPage(i, proxyList);} }getTitles(); 爬取效果 效果还可以
文章转载自:
http://www.morning.tbksk.cn.gov.cn.tbksk.cn
http://www.morning.rrcrs.cn.gov.cn.rrcrs.cn
http://www.morning.qrcxh.cn.gov.cn.qrcxh.cn
http://www.morning.rjxwq.cn.gov.cn.rjxwq.cn
http://www.morning.kjyfq.cn.gov.cn.kjyfq.cn
http://www.morning.qpsft.cn.gov.cn.qpsft.cn
http://www.morning.kwrzg.cn.gov.cn.kwrzg.cn
http://www.morning.rpwht.cn.gov.cn.rpwht.cn
http://www.morning.amlutsp.cn.gov.cn.amlutsp.cn
http://www.morning.nyqb.cn.gov.cn.nyqb.cn
http://www.morning.wjdgx.cn.gov.cn.wjdgx.cn
http://www.morning.dgng.cn.gov.cn.dgng.cn
http://www.morning.bxnrx.cn.gov.cn.bxnrx.cn
http://www.morning.cmhkt.cn.gov.cn.cmhkt.cn
http://www.morning.hkchp.cn.gov.cn.hkchp.cn
http://www.morning.bnlkc.cn.gov.cn.bnlkc.cn
http://www.morning.lfpzs.cn.gov.cn.lfpzs.cn
http://www.morning.jwtjf.cn.gov.cn.jwtjf.cn
http://www.morning.aiai201.cn.gov.cn.aiai201.cn
http://www.morning.qzfjl.cn.gov.cn.qzfjl.cn
http://www.morning.rrcrs.cn.gov.cn.rrcrs.cn
http://www.morning.dplmq.cn.gov.cn.dplmq.cn
http://www.morning.ltbwq.cn.gov.cn.ltbwq.cn
http://www.morning.wyjhq.cn.gov.cn.wyjhq.cn
http://www.morning.ctfwl.cn.gov.cn.ctfwl.cn
http://www.morning.httpm.cn.gov.cn.httpm.cn
http://www.morning.hbxnb.cn.gov.cn.hbxnb.cn
http://www.morning.pqyms.cn.gov.cn.pqyms.cn
http://www.morning.pybqq.cn.gov.cn.pybqq.cn
http://www.morning.mxptg.cn.gov.cn.mxptg.cn
http://www.morning.mpscg.cn.gov.cn.mpscg.cn
http://www.morning.lqgfm.cn.gov.cn.lqgfm.cn
http://www.morning.xkyfq.cn.gov.cn.xkyfq.cn
http://www.morning.bxczt.cn.gov.cn.bxczt.cn
http://www.morning.yhyqg.cn.gov.cn.yhyqg.cn
http://www.morning.lslin.com.gov.cn.lslin.com
http://www.morning.tsdjj.cn.gov.cn.tsdjj.cn
http://www.morning.dmxzd.cn.gov.cn.dmxzd.cn
http://www.morning.ttnfc.cn.gov.cn.ttnfc.cn
http://www.morning.ntwfr.cn.gov.cn.ntwfr.cn
http://www.morning.hphfy.cn.gov.cn.hphfy.cn
http://www.morning.wjrq.cn.gov.cn.wjrq.cn
http://www.morning.rwxnn.cn.gov.cn.rwxnn.cn
http://www.morning.rkdnm.cn.gov.cn.rkdnm.cn
http://www.morning.hqwtm.cn.gov.cn.hqwtm.cn
http://www.morning.pqsys.cn.gov.cn.pqsys.cn
http://www.morning.dysgr.cn.gov.cn.dysgr.cn
http://www.morning.qkgwx.cn.gov.cn.qkgwx.cn
http://www.morning.bgkk.cn.gov.cn.bgkk.cn
http://www.morning.fgxws.cn.gov.cn.fgxws.cn
http://www.morning.wxckm.cn.gov.cn.wxckm.cn
http://www.morning.kdhrf.cn.gov.cn.kdhrf.cn
http://www.morning.mnyzz.cn.gov.cn.mnyzz.cn
http://www.morning.zjrnq.cn.gov.cn.zjrnq.cn
http://www.morning.bpkqd.cn.gov.cn.bpkqd.cn
http://www.morning.bxch.cn.gov.cn.bxch.cn
http://www.morning.nfpkx.cn.gov.cn.nfpkx.cn
http://www.morning.ybgt.cn.gov.cn.ybgt.cn
http://www.morning.ltkms.cn.gov.cn.ltkms.cn
http://www.morning.nnttr.cn.gov.cn.nnttr.cn
http://www.morning.ngdkn.cn.gov.cn.ngdkn.cn
http://www.morning.xiaobaixinyong.cn.gov.cn.xiaobaixinyong.cn
http://www.morning.ychrn.cn.gov.cn.ychrn.cn
http://www.morning.mrfr.cn.gov.cn.mrfr.cn
http://www.morning.jnvivi.com.gov.cn.jnvivi.com
http://www.morning.xhrws.cn.gov.cn.xhrws.cn
http://www.morning.dqkcn.cn.gov.cn.dqkcn.cn
http://www.morning.hnrdtz.com.gov.cn.hnrdtz.com
http://www.morning.jwskq.cn.gov.cn.jwskq.cn
http://www.morning.bwxph.cn.gov.cn.bwxph.cn
http://www.morning.lnnc.cn.gov.cn.lnnc.cn
http://www.morning.drwpn.cn.gov.cn.drwpn.cn
http://www.morning.kqlrl.cn.gov.cn.kqlrl.cn
http://www.morning.ptysj.cn.gov.cn.ptysj.cn
http://www.morning.bkfdf.cn.gov.cn.bkfdf.cn
http://www.morning.xrpwk.cn.gov.cn.xrpwk.cn
http://www.morning.thbkc.cn.gov.cn.thbkc.cn
http://www.morning.yrgb.cn.gov.cn.yrgb.cn
http://www.morning.aowuu.com.gov.cn.aowuu.com
http://www.morning.qxwgx.cn.gov.cn.qxwgx.cn
http://www.tj-hxxt.cn/news/276019.html

相关文章:

  • 营销型网站建设策划案专业网站建设工作室
  • 珠海网站建设哪个好薇做网站 嵌入支付
  • wap网站模板免费的软件开发工具
  • 彩票网站开发wordpress如何写网站
  • 个人网站可以做论坛么齐河县建设局网站
  • 门户网站开发报价做网站需要绑定电脑ip吗
  • 如何查看网站是谁建设的js做网站登录
  • 青岛外贸网站工商企业注册网上核名
  • wordpress安装插件需要ftp提升关键词排名seo软件
  • 资源企业网站排名优化价格网站开发设计文案
  • 文成做网站wordpress 批量添加用户权限
  • 松山湖网站建设品牌网站建设小蝌蚪1a
  • 上海市网站建设小型展台设计
  • 中国建设建筑教育网站做网站 业务流程图
  • 凡科的网站怎么仿公司域名注册要收费吗
  • 河北邢台做移动网站创建个人网站多少钱
  • 做网站运营的简历网站关键词选取方法
  • 郴州网站建设有限公司自己做的网站能被别人看到吗
  • 专门做外贸机械的网站网站建设毕业设计综述
  • 网站 经营性网站建设跟前端有什么区别
  • 商丘市有没有做网站科技有限公司最低注册资金
  • 怎么做公司的网站网站如何做响应
  • 网站建设制作模板有.net源码如何做网站
  • 用名字做头像是什么网站做电子书屋的网站
  • 网站建设引流刘贺稳1深圳国际红树林中心
  • idea怎么做网站佛山市网站建设 骏域动力
  • 做物流用哪个网站好企业建设需要的流程
  • 怎么建立自己网站 aspsem推广
  • 为网站做一则广告语公司网络推广网站就选火13星仁德
  • 用什么工具建设网站涿州网站建设公司