<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Jean - 记录成长历程 &#187; python</title>
	<atom:link href="http://www.zhangyiqun.net/tag/python/feed" rel="self" type="application/rss+xml" />
	<link>http://www.zhangyiqun.net</link>
	<description>让世界更美好一点儿</description>
	<lastBuildDate>Wed, 07 Dec 2011 14:04:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>python时间戳转换</title>
		<link>http://www.zhangyiqun.net/1106.html</link>
		<comments>http://www.zhangyiqun.net/1106.html#comments</comments>
		<pubDate>Thu, 29 Apr 2010 14:43:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[脚本编程]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://www.zhangyiqun.net/?p=1106</guid>
		<description><![CDATA[升级某管理程序时使用，解决了时间计算方式不统一的问题 import datetime, time s= &#8217;201102111747&#8242; a = datetime.datetime(int(s[0:4]),int(s[4:6]),int(s[6:8]),int(s[8:10]),int(s[10:])) print int(str(time.mktime(a.timetuple()))[:10]) 原型 &#62;&#62;&#62; s = datetime.datetime(2009,1,1) &#62;&#62;&#62; time.mktime(s.timetuple()) 1230739200.0<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F913.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1106.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">python技巧一则：某些情况下str.join比+=效率高</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F919.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1106.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">过滤字符串，小试python速度</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F996.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1106.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">error: command 'gcc' failed with exit status 1的解决方法</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F932.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1106.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">我的第一个开源项目mailkiller</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>升级某管理程序时使用，解决了时间计算方式不统一的问题</p>
<p><span id="more-1106"></span></p>
<blockquote><p>import datetime, time</p>
<p>s= &#8217;201102111747&#8242;</p>
<p>a = datetime.datetime(int(s[0:4]),int(s[4:6]),int(s[6:8]),int(s[8:10]),int(s[10:]))</p>
<p>print int(str(time.mktime(a.timetuple()))[:10])</p></blockquote>
<p>原型</p>
<blockquote><p>&gt;&gt;&gt; s = datetime.datetime(2009,1,1)<br />
&gt;&gt;&gt; time.mktime(s.timetuple())<br />
1230739200.0</p></blockquote>
<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F913.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1106.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">python技巧一则：某些情况下str.join比+=效率高</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F919.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1106.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">过滤字符串，小试python速度</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F996.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1106.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">error: command 'gcc' failed with exit status 1的解决方法</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F932.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1106.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">我的第一个开源项目mailkiller</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.zhangyiqun.net/1106.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>error: command &#8216;gcc&#8217; failed with exit status 1的解决方法</title>
		<link>http://www.zhangyiqun.net/996.html</link>
		<comments>http://www.zhangyiqun.net/996.html#comments</comments>
		<pubDate>Sat, 30 Jan 2010 11:10:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux系统]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://www.zhangyiqun.net/?p=996</guid>
		<description><![CDATA[_mysql.c: In function ‘_mysql_ResultObject_row_tell’: _mysql.c:2082: error: ‘MYSQL_ROW_OFFSET’ undeclared (first use in this function) _mysql.c:2082: error: expected ‘;’ before ‘r’ _mysql.c:2084: error: ‘_mysql_ConnectionObject’ has no member named ‘open’ _mysql.c:2085: error: ‘_mysql_ResultObject’ has no member named ‘use’ _mysql.c:2090: error: ‘r’ undeclared (first use in this function) _mysql.c:2090: error: ‘_mysql_ResultObject’ has no member named ‘result’ _mysql.c:2091: error: ‘_mysql_ResultObject’ [...]<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F1106.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F996.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">python时间戳转换</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F919.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F996.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">过滤字符串，小试python速度</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F913.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F996.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">python技巧一则：某些情况下str.join比+=效率高</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F932.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F996.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">我的第一个开源项目mailkiller</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>_mysql.c: In function ‘_mysql_ResultObject_row_tell’:<br />
_mysql.c:2082: error: ‘MYSQL_ROW_OFFSET’ undeclared (first use in this function)<br />
_mysql.c:2082: error: expected ‘;’ before ‘r’<br />
_mysql.c:2084: error: ‘_mysql_ConnectionObject’ has no member named ‘open’<br />
_mysql.c:2085: error: ‘_mysql_ResultObject’ has no member named ‘use’</p>
<p>_mysql.c:2090: error: ‘r’ undeclared (first use in this function)<br />
<span id="more-996"></span>_mysql.c:2090: error: ‘_mysql_ResultObject’ has no member named ‘result’<br />
_mysql.c:2091: error: ‘_mysql_ResultObject’ has no member named ‘result’<br />
_mysql.c: In function ‘_mysql_ResultObject_dealloc’:<br />
_mysql.c:2099: warning: implicit declaration of function ‘mysql_free_result’<br />
_mysql.c:2099: error: ‘_mysql_ResultObject’ has no member named ‘result’<br />
_mysql.c: At top level:<br />
_mysql.c:2330: error: ‘_mysql_ConnectionObject’ has no member named ‘open’<br />
_mysql.c:2337: error: ‘_mysql_ConnectionObject’ has no member named ‘converter’<br />
_mysql.c:2344: error: ‘_mysql_ConnectionObject’ has no member named ‘connection’<br />
_mysql.c:2351: error: ‘_mysql_ConnectionObject’ has no member named ‘connection’<br />
_mysql.c:2358: error: ‘_mysql_ConnectionObject’ has no member named ‘connection’<br />
_mysql.c:2421: error: ‘_mysql_ResultObject’ has no member named ‘converter’<br />
_mysql.c:2421: error: initializer element is not constant<br />
_mysql.c:2421: error: (near initialization for ‘_mysql_ResultObject_memberlist[0].offset’)<br />
_mysql.c: In function ‘_mysql_ConnectionObject_getattr’:<br />
_mysql.c:2443: error: ‘_mysql_ConnectionObject’ has no member named ‘open’</p>
<p>解决方法：</p>
<p>1.该编译安装mysql 同时修改# vim site.cfg</p>
<blockquote><p>mysql_config = /path/to/mysql_config</p></blockquote>
<p>2.使用# yum install MySQL-p*</p>
<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F1106.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F996.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">python时间戳转换</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F919.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F996.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">过滤字符串，小试python速度</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F913.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F996.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">python技巧一则：某些情况下str.join比+=效率高</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F932.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F996.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">我的第一个开源项目mailkiller</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.zhangyiqun.net/996.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>我的第一个开源项目mailkiller</title>
		<link>http://www.zhangyiqun.net/932.html</link>
		<comments>http://www.zhangyiqun.net/932.html#comments</comments>
		<pubDate>Sun, 10 Jan 2010 04:15:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[脚本编程]]></category>
		<category><![CDATA[mailkiller]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://www.zhangyiqun.cn/?p=932</guid>
		<description><![CDATA[我刚看python不超过10天，它难免会有BUG。不过在今后的学习当中将继续完善。预计在加入几个实用的功能并提供图形界面。 它能作什么？ 读取用户指定的密码文件对邮箱（如yahoo）进行密码检索。 注意：这不是一个对指定用户名进行密码暴力猜解的程序。它通过已存在字典中的用户名和密码对邮箱进行检索。 成功率有多少？ 这取决于字典好坏，有一部分人在网络上通通使用固定的密码和用户名 密码文件从哪来？ 依靠谱程度分为：1.某网站用户数据库 2.网上搜集 3.有人发布 密码文件的格式是什么样的？ 用户名:密码 zeus222:bond007 zgonzo:hy7T90 zhobby:boinger zhuiyun:nudelamb ZIADMA:HIZIAD ziggler:pastword zimbo11:sesamo zinky1:939240 zkks2w3:skkd22 zLKxXLn7:2Mqxd47s zMdFProZDV:58CRd7iwZa zoe12345:12345zoe zolushka1:natasha zontsich:zontsich 怎么用？ [jean@jeantoe mailkiller]$ python mail.killer.py -j yahoo -f 密码文件 -w 检索结果 -s 休眠时间 帮助说明？ [jean@jeantoe mailkiller]$ python mail.killer.py -h Usage: -j [yahoo,hotmail,gmail] -f [pw file] -w [result file] Options: [...]<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F913.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F932.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">python技巧一则：某些情况下str.join比+=效率高</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F919.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F932.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">过滤字符串，小试python速度</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F1106.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F932.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">python时间戳转换</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F996.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F932.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">error: command 'gcc' failed with exit status 1的解决方法</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>我刚看python不超过10天，它难免会有BUG。不过在今后的学习当中将继续完善。预计在加入几个实用的功能并提供图形界面。</p>
<p><span style="font-family: Courier,Monospaced;">它能作什么？<br />
</span></p>
<p><span style="font-family: Courier,Monospaced;">读取用户指定的密码文件对邮箱（如yahoo）进行密码检索。<br />
注意：这不是一个对指定用户名进行密码暴力猜解的程序。它通过已存在字典中的用户名和密码对邮箱进行检索。<br />
</span></p>
<p><span style="font-family: Courier,Monospaced;">成功率有多少？<br />
</span></p>
<p><span style="font-family: Courier,Monospaced;">这取决于字典好坏，有一部分人在网络上通通使用固定的密码和用户名</span></p>
<p><span style="font-family: Courier,Monospaced;"><span id="more-932"></span><br />
</span></p>
<p><span style="font-family: Courier,Monospaced;">密码文件从哪来？<br />
</span></p>
<p><span style="font-family: Courier,Monospaced;">依靠谱程度分为：1.某网站用户数据库 2.网上搜集 3.有人发布<br />
</span></p>
<p><span style="font-family: Courier,Monospaced;">密码文件的格式是什么样的？<br />
</span></p>
<p><span style="font-family: Courier,Monospaced;">用户名:密码<br />
zeus222:bond007<br />
zgonzo:hy7T90<br />
zhobby:boinger<br />
zhuiyun:nudelamb<br />
ZIADMA:HIZIAD<br />
ziggler:pastword<br />
zimbo11:sesamo<br />
zinky1:939240<br />
zkks2w3:skkd22<br />
zLKxXLn7:2Mqxd47s<br />
zMdFProZDV:58CRd7iwZa<br />
zoe12345:12345zoe<br />
zolushka1:natasha<br />
zontsich:zontsich<br />
</span></p>
<p><span style="font-family: Courier,Monospaced;">怎么用？<br />
</span></p>
<p><span style="font-family: Courier,Monospaced;">[jean@jeantoe mailkiller]$ python mail.killer.py -j yahoo -f 密码文件 -w 检索结果 -s 休眠时间<br />
</span></p>
<p><span style="font-family: Courier,Monospaced;">帮助说明？<br />
</span></p>
<p><span style="font-family: Courier,Monospaced;">[jean@jeantoe mailkiller]$ python mail.killer.py -h<br />
Usage: -j [yahoo,hotmail,gmail] -f [pw file] -w [result file]<br />
</span></p>
<p><span style="font-family: Courier,Monospaced;">Options:<br />
-h, &#8211;help            show this help message and exit<br />
-j JETTY, &#8211;jetty=JETTY<br />
指定要检索的邮箱，目前支持yahoo,hotmail,gmail<br />
-f FILE, &#8211;file=FILE  username and password file<br />
-w WRITE, &#8211;write=WRITE<br />
将检索结果写入到什么位置<br />
-s SLEEP, &#8211;sleep=SLEEP<br />
间隔多少秒进行一次登录尝试，短时间内制造大量的登录失败会被封掉ip。默认是15s<br />
</span></p>
<p><span style="font-family: Courier,Monospaced;">在哪能够下载？<br />
</span></p>
<p><span style="font-family: Courier,Monospaced;">svn checkout <a rel="nofollow" href="http://mailkiller.googlecode.com/svn/trunk/" target="_blank">http://mailkiller.googlecode.com/svn/trunk/</a><br />
</span></p>
<p><span style="font-family: Courier,Monospaced;">作者主页 : <a rel="nofollow" href="http://www.zhangyiqun.cn" target="_blank">www.zhangyiqun.cn</a> </span></p>
<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F913.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F932.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">python技巧一则：某些情况下str.join比+=效率高</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F919.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F932.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">过滤字符串，小试python速度</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F1106.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F932.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">python时间戳转换</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F996.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F932.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">error: command 'gcc' failed with exit status 1的解决方法</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.zhangyiqun.net/932.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>过滤字符串，小试python速度</title>
		<link>http://www.zhangyiqun.net/919.html</link>
		<comments>http://www.zhangyiqun.net/919.html#comments</comments>
		<pubDate>Wed, 06 Jan 2010 13:59:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[脚本编程]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://www.zhangyiqun.cn/?p=919</guid>
		<description><![CDATA[测试方法：用python过滤出指定字符串，并和sed与grep执行时间对比 [root@jeantoe MyPy]# cat speed.py import os, sys testfile = open(&#8216;/etc/passwd&#8217;) for line in testfile: if &#8216;root&#8217; in line: print line [root@jeantoe MyPy]# time python speed.py root:x:0:0:root:/root:/bin/bash operator:x:11:0:operator:/root:/sbin/nologin real    0m0.033s user    0m0.024s sys    0m0.009s [root@jeantoe MyPy]# time grep root /etc/passwd root:x:0:0:root:/root:/bin/bash operator:x:11:0:operator:/root:/sbin/nologin real    0m0.003s user    0m0.000s sys    0m0.003s [root@jeantoe MyPy]# time sed -n &#8216;/root/p&#8217; /etc/passwd [...]<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F913.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F919.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">python技巧一则：某些情况下str.join比+=效率高</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F1106.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F919.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">python时间戳转换</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F996.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F919.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">error: command 'gcc' failed with exit status 1的解决方法</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F932.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F919.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">我的第一个开源项目mailkiller</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>测试方法：用python过滤出指定字符串，并和sed与grep执行时间对比</p>
<blockquote><p>[root@jeantoe MyPy]# cat speed.py<br />
import os, sys</p>
<p>testfile = open(&#8216;/etc/passwd&#8217;)<br />
for line in testfile:<br />
if &#8216;root&#8217; in line:<br />
print line</p></blockquote>
<p>[root@jeantoe MyPy]# time python speed.py<br />
root:x:0:0:root:/root:/bin/bash</p>
<p>operator:x:11:0:operator:/root:/sbin/nologin</p>
<p><strong>real    0m0.033s<br />
user    0m0.024s<br />
sys    0m0.009s</strong><br />
[root@jeantoe MyPy]# time grep root /etc/passwd<br />
root:x:0:0:root:/root:/bin/bash<br />
operator:x:11:0:operator:/root:/sbin/nologin</p>
<p><strong>real    0m0.003s<br />
user    0m0.000s<br />
sys    0m0.003s</strong><br />
[root@jeantoe MyPy]# time sed -n &#8216;/root/p&#8217; /etc/passwd<br />
root:x:0:0:root:/root:/bin/bash<br />
operator:x:11:0:operator:/root:/sbin/nologin</p>
<p><strong>real    0m0.003s<br />
user    0m0.001s<br />
sys    0m0.001s</strong></p>
<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F913.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F919.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">python技巧一则：某些情况下str.join比+=效率高</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F1106.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F919.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">python时间戳转换</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F996.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F919.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">error: command 'gcc' failed with exit status 1的解决方法</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F932.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F919.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">我的第一个开源项目mailkiller</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.zhangyiqun.net/919.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>python技巧一则：某些情况下str.join比+=效率高</title>
		<link>http://www.zhangyiqun.net/913.html</link>
		<comments>http://www.zhangyiqun.net/913.html#comments</comments>
		<pubDate>Mon, 28 Dec 2009 14:51:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[脚本编程]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://www.zhangyiqun.cn/?p=913</guid>
		<description><![CDATA[If s and t are both strings, some Python implementations such as CPython can usually perform an in-place optimization for assignments of the form s = s + t or s += t. When applicable, this optimization makes quadratic run-time much less likely. This optimization is both version and implementation dependent. For performance sensitive code, [...]<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F919.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F913.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">过滤字符串，小试python速度</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F1106.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F913.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">python时间戳转换</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F932.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F913.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">我的第一个开源项目mailkiller</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F996.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F913.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">error: command 'gcc' failed with exit status 1的解决方法</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>If <em>s</em> and <em>t</em> are both strings, some Python implementations such as CPython can usually perform an in-place optimization for assignments of the form <tt><span>s</span> <span>=</span> <span>s</span> <span>+</span> <span>t</span></tt> or <tt><span>s</span> <span>+=</span> <span>t</span></tt>.  When applicable, this optimization makes quadratic run-time much less likely.  This optimization is both version and implementation dependent.  For performance sensitive code, it is preferable to use the <a title="str.join" href="http://docs.python.org/library/stdtypes.html#str.join"><tt><span>str.join()</span></tt></a> method which assures consistent linear concatenation performance across versions and implementations.</p>
<p>文中的s和t是什么？</p>
<p>There are six sequence types: strings, Unicode strings, lists, tuples, buffers, and xrange objects.</p>
<p>For other containers see the built in <a title="dict" href="http://docs.python.org/library/stdtypes.html#dict"><tt><span>dict</span></tt></a> and <a title="set" href="http://docs.python.org/library/stdtypes.html#set"><tt><span>set</span></tt></a> classes, and the <a title="High-performance datatypes" href="http://docs.python.org/library/collections.html#module-collections"><tt><span>collections</span></tt></a> module.</p>
<p>代码片段。不言自明。</p>
<blockquote>
<pre id="ObpLovelyPython.2BAC8-LpyAttach3answer.2BAC8-CDays.CA-317f9887c92c4dde3b9f58e549403e86758c713c" dir="ltr" lang="en"><span><span>   </span><span>for</span> <span>root</span><span>,</span> <span>dirs</span><span>,</span> <span>files</span> <span>in</span> <span>os</span><span>.</span><span>walk</span><span>(</span><span>'/media/cdrom0'</span><span>)</span><span>:</span></span>
<span><span>    </span>  <span>export</span><span>+=</span><span>"\n %s;%s;%s"</span> <span>%</span> <span>(</span><span>root</span><span>,</span><span>dirs</span><span>,</span><span>files</span><span>)</span></span>
<span><span>   </span><span>open</span><span>(</span><span>'TokyoHot1'</span><span>,</span> <span>'w'</span><span>)</span><span>.</span><span>write</span><span>(</span><span>export</span><span>)</span></span></pre>
</blockquote>
<blockquote>
<pre id="ObpLovelyPython.2BAC8-LpyAttach3answer.2BAC8-CDays.CA-e5268689e8062f6b4ba1b6becdd8b4a3f2d7d9e6" dir="ltr" lang="en"><span><span>   </span><span>for</span> <span>root</span><span>,</span> <span>dirs</span><span>,</span> <span>files</span> <span>in</span> <span>os</span><span>.</span><span>walk</span><span>(</span><span>'/media/cdrom0'</span><span>)</span><span>:</span></span>
<span><span>    </span>    <span>export</span><span>.</span><span>append</span><span>(</span><span>"\n %s;%s;%s"</span> <span>%</span> <span>(</span><span>root</span><span>,</span><span>dirs</span><span>,</span><span>files</span><span>)</span><span>)</span></span>
<span><span>    </span><span>open</span><span>(</span><span>'TokyoHot2'</span><span>,</span> <span>'w'</span><span>)</span><span>.</span><span>write</span><span>(</span><span>''</span><span>.</span><span>join</span><span>(</span><span>export</span><span>)</span><span>)</span></span></pre>
</blockquote>
<p style="margin:0;padding:0;height:1px;overflow:hidden;">
    <script type="text/javascript"><!--
        var wumiiSitePrefix = "http://www.zhangyiqun.net";
        var wumiiEnableCustomPos = false;
        var wumiiParams = "&#038;num=4&#038;mode=3&#038;displayInFeed=1&#038;version=1.0.5.5&#038;pf=WordPress3.2.1";
    //--></script><script type="text/javascript" src="http://widget.wumii.com/ext/relatedItemsWidget.htm"></script><a href="http://www.wumii.com/widget/relatedItems.htm" style="border:0;"><img src="http://static.wumii.com/images/pixel.png" alt="无觅相关文章插件，快速提升流量" style="border:0;padding:0;margin:0;" /></a></p>
<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F919.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F913.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">过滤字符串，小试python速度</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F1106.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F913.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">python时间戳转换</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F932.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F913.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">我的第一个开源项目mailkiller</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F996.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F913.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">error: command 'gcc' failed with exit status 1的解决方法</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.zhangyiqun.net/913.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced

Served from: www.zhangyiqun.net @ 2012-02-07 22:47:26 -->
