
Python
jasonwang178
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
安装试用基于HTTP协议的开源中文分词系统“HTTPCWS”
安装在ubuntu9.10上: cd /usr/local sudo wget http://httpcws.googlecode.com/files/httpcws-1.0.0-i386-bin.tar.gz sudo su tar zxvf httpcws-1.0.0-i386-bin.tar.gz cd httpcws-1.0.0-i386-bin ulimit -SH...原创 2010-01-29 10:52:02 · 151 阅读 · 0 评论 -
Python:文件操作技巧(File operation)
读写文件 # ! /usr/bin/python # -*- coding: utf8 -*- spath = " D:/download/baa.txt " f = open(spath, " w " ) # Opens file for writing.Creates this file doe...原创 2010-08-24 13:52:24 · 186 阅读 · 0 评论 -
用nginx和uwsgi部署 Django
This post attempts to be a complete guide to setting up a production-ready Django deployment. I’m publishing it because I hope it will help someone. It is subject to revision, as I get feedback fr...原创 2011-04-21 12:17:03 · 132 阅读 · 0 评论 -
QrenCode : 命令行下生成二维码图片
对于二维码大家应该并不陌生,英文名为 2-dimensional bar code 或 QR Code,是一种用图形记载信息的技术,最常见的是应用在手机应用上。用户通过手机摄像头扫描二维码或输入二维码下面的号码、关键字即可实现快速手机上网,快速便捷地浏览网页、下载图文、音乐、视频等等。 在 Ubuntu / Linux 上,有一个名为 QrenCode 的命令行工...原创 2011-04-25 10:59:28 · 509 阅读 · 0 评论 -
Python日期时间格式化字符串
Python格式化日期时间的函数为datetime.datetime.strftime();由字符串转为日期型的函数为:datetime.datetime.strptime(),两个函数都涉及日期时间的格式化字符串,列举如下: %a Abbreviated weekday name %A Full weekday name %b Abbre...原创 2011-04-26 16:06:24 · 150 阅读 · 0 评论 -
Python版 数据结构与算法
http://www.brpreiss.com/books/opus7/html/book.html原创 2011-04-08 10:43:46 · 122 阅读 · 0 评论