代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Python
】
根据Dell的服务编号批量查询设备出厂日期
作者:
PlutonJi
/ 发布于
2014/10/8
/
843
此脚本利用python的HTML解析器BeautifulSoup抓取Dell网站上的设备出厂日期,通过多线程的方式可以高效的进行批量查询。
#!/usr/bin/env python # -*- coding: utf-8 -*- ''' Please install "BeautifulSoup 4" & "progressbar" via pip first: [user@localhost ~]$ pip install beautifulsoup4 progressbar Before running this script, a file 'delltags.txt' with one tag each line is required. Results will be exported to 'delldate.txt'. ''' from __future__ import division import urllib2 import re import threading from bs4 import BeautifulSoup from progressbar import ProgressBar, Percentage, Bar, ETA # Create a class inherited from threading.Thread class Dell(threading.Thread): def __init__(self): threading.Thread.__init__(self) # Redefine run() def run(self): while len(taglist) > 0: #RLock mutex.acquire() self.tag = taglist[0] del taglist[0] mutex.release() #Get Dell's page url = "http://www.dell.com/support/home/cn/zh/cndhs1/product-support/servicetag/" + \ self.tag + "/configuration?s=BSD" content_stream = urllib2.urlopen(url) content = content_stream.read() soup = BeautifulSoup(content) date = soup.find(text=re.compile('20\d\d\/')).strip() # Regular expression matches "20xx/" tagdict[self.tag] = date # Add a key:value(tag:date) pair to tagdict # Next two lines are for progressbar percent = len(tagdict) / len(taglistkey) pbar.update(percent) if __name__ == '__main__': global mutex, taglist, tagdict, pbar with open('delltags.txt') as tagfile: taglist = [ tag.strip() for tag in tagfile ] taglistkey = tuple(taglist) tagdict = {} max_conn = 10 # Max threads number mutex = threading.RLock() threads = [ Dell() for i in xrange(0,max_conn) ] # pbar is a progressbar object pbar = ProgressBar(widgets=[Percentage(),Bar('>'),ETA()], maxval=1.0).start() for i in xrange(0,max_conn): threads[i].start() for i in xrange(0,max_conn): threads[i].join() pbar.finish() # After all threads ended, write tag:date each line into 'delldate.txt' with open('delldate.txt','w') as datefile: for i in taglistkey: datefile.write(i + ": " + tagdict[i] + "\n") print "Complete!"
试试其它关键字
查询设备
出厂日期
Dell
同语言下
.
比较两个图片的相似度
.
过urllib2获取带有中文参数的url内容
.
不下载获取远程图片的宽度和高度及文件大小
.
通过qrcode库生成二维码
.
通过httplib发送GET和POST请求
.
Django下解决小文件下载
.
遍历windows的所有窗口并输出窗口标题
.
根据窗口标题调用窗口
.
python 抓取搜狗指定公众号
.
pandas读取指定列
可能有用的
.
实现测量程序运行时间及cpu使用时间
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
PlutonJi
贡献的其它代码
(
1
)
.
根据Dell的服务编号批量查询设备出厂日期
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3