网络爬虫,,# -*- coding
文章由Byrx.net分享于2019-03-23 05:03:18
网络爬虫,,# -*- coding
# -*- coding: cp936 -*-import WebCrawlerimport timeurl = input('设置入口url(例-->www.baidu.com): \n')thNumber = int(input('设置线程数:')) #之前类型未转换出bugMaxdepth = int(input('最大搜索深度:'))start = time.clock()url = 'http://' + urlwc = WebCrawler.WebCrawler(thNumber, Maxdepth)wc.Craw(url)end = time.clock()print("The function run time is: %0.02f senconds.\n" %(end - start))
相关内容
- python socket 轻量级服务器,pythonsocket,使用非阻塞加多线
- python通过正则获取网页上的全部链接,python获取,impor
- python多线程多队列,python多线程队列,程序大概内容如下
- 使用requests登录V2EX,requests登录v2ex,# coding=utf
- Python爬虫暴漫gif下载,Python爬虫gif下载,#!/usr/bin/e
- 服务器日志清理备份,日志清理备份,#! /usr/bin/
- python 实现选择排序,python实现排序, #coding:
- python 转换数字为钱数,python数字钱数,目标: 输入一串
- python二进制修改bcwav文件,python二进制bcwav,#python二进制
- 一个简单的python读写文件脚本,, #!/usr/b
评论关闭