
Python
iteye_10692
这个作者很懒,什么都没留下…
展开
-
WOL之python实现
[code="python"]#!/usr/bin/env python# Wake on Lan import socketimport structdef wake_on_lan(mac): """ Switches on remote computers using WOL. """ # Check mac format and try to ...原创 2011-01-27 18:08:36 · 778 阅读 · 0 评论 -
生产消费者简单实现
[code="python"]#!/usr/bin/pythonimport threadingfrom time import ctime, sleepfrom Queue import Queuefrom random import randintclass WadeThread(threading.Thread): def __init__(self...原创 2011-03-10 21:19:45 · 123 阅读 · 0 评论 -
编译python需要注意的
[code="C"]python依赖的:yum -y install gcc gdbm-devel readline-devel ncurses-devel zlib-devel bzip2-develsqlite-devel db4-devel openssl-devel tk-devel bluez-libs-devel makeconfigure;make;make inst...原创 2011-03-26 13:14:54 · 146 阅读 · 0 评论 -
提高Python脚本的运行速度
[code="python"]// 源代码#!/usr/bin/pythonimport psycoimport timeitdef slow_func(): for a in range(320): for b in range(320): for c in range(320): if 320 == (a + b + ...原创 2011-04-27 11:05:34 · 480 阅读 · 0 评论