
python
前进的蜗牛啊
一个程序员,现在依然在路上~
欢迎讨论技术问题,及对博客文章提意见
展开
-
python网络基础编程笔记(一)
感觉上python 和c,c++对网络的处理流程上是一样的。记录如下供以后参考import socket, traceback, os, sys, select class stateclass: stdmask = select.POLLERR | select.POLLHUP | select.POLLNVAL def __init__(self, mastersock): se原创 2015-07-11 23:51:20 · 529 阅读 · 0 评论 -
python struct 详解
python struct from http://blog.youkuaiyun.com/jgood/article/details/4290158 struct.pack struct.pack用于将Python的值根据格式符,转换为字符串(因为Python中没有字节(Byte)类型,可以把这里的字符串理解为字节流,或字节数组)。其函数原型为:struct.pack(fmt, v转载 2013-09-04 13:54:32 · 14420 阅读 · 2 评论 -
python 创建httpserver
from: http://www.lifeba.org/arch/python_http_simplehttpserver_basehttpserver_cgihttpserver.html Python的“Web服务器模块”有如下三种 一、SimpleHTTPServer:包含执行GET和HEAD请求的SimpleHTTPRequestHandler类。 通过下面命令我们创建了HT转载 2016-04-22 11:13:07 · 3005 阅读 · 0 评论