上一页 1 ··· 15 16 17 18 19
摘要: # Makefile for Sphinx documentation## You can set these variables from the command line.SPHINXOPTS ?=SPHINXBUILD ?= sphinx-buildPAPER ?=B... 阅读全文
posted @ 2015-05-08 12:00 白云辉 阅读(667) 评论(0) 推荐(0) 编辑
摘要: #encoding=utf-8#客户端import zmqc = zmq.Context()s = c.socket(zmq.REQ)s.connect('tcp://127.0.0.1:10001')while True: s.send(raw_input('客户端输入:'), copy=F... 阅读全文
posted @ 2015-04-21 20:59 白云辉 阅读(577) 评论(2) 推荐(0) 编辑
摘要: PYTHON-进阶-ITERTOOLS模块小结这货很强大, 必须掌握文档链接pymotw链接基本是基于文档的翻译和补充,相当于翻译了itertools用于高效循环的迭代函数集合组成总体,整体了解无限迭代器迭代器 参数 结果 ... 阅读全文
posted @ 2015-04-16 21:33 白云辉 阅读(819) 评论(0) 推荐(0) 编辑
摘要: 1 @ECHO OFF 2 ECHO "clean start please wait........." 3 DEL /f /s /q %systemdrive%\*.tmp 4 DEL /f /s /q %systemdrive%\*._mp 5 DEL /f /s /q %systemdri... 阅读全文
posted @ 2015-04-14 17:15 白云辉 阅读(2199) 评论(0) 推荐(0) 编辑
摘要: Django 1.6 基于类的通用视图 最初 django 的视图都是用函数实现的,后来开发出一些通用视图函数,以取代某些常见的重复性代码。通用视图就像是一些封装好的处理器,使用它们的时候只须要给出特定的参数集即可,不必关心具体的实现。各种通用视图的参考参见:https://docs.django... 阅读全文
posted @ 2015-04-14 10:49 白云辉 阅读(361) 评论(0) 推荐(0) 编辑
摘要: Generic editing views¶The following views are described on this page and provide a foundation for editing content:django.views.generic.edit.FormViewdj... 阅读全文
posted @ 2015-04-14 10:34 白云辉 阅读(3047) 评论(0) 推荐(0) 编辑
摘要: # encoding=utf-8import osimport socketSITE_ID = 1# 项目的根目录# 简化后面的操作PROJECT_ROOT = os.path.dirname(os.path.dirname(__file__))# 加载应用# 把应用添加到INSTALLED_APP... 阅读全文
posted @ 2015-04-13 23:49 白云辉 阅读(9892) 评论(0) 推荐(0) 编辑
摘要: import groovy.swing.* import javax.swing.* import java.awt.*def swing = new SwingBuilder()swing.frame(title:"hello",show:true){ panel(){ def mm=... 阅读全文
posted @ 2015-04-13 23:42 白云辉 阅读(319) 评论(0) 推荐(0) 编辑
摘要: The BasicsFieldsFields are the most fundamental unit of construction: theyparse(read data from the stream and return an object) andbuild(take an objec... 阅读全文
posted @ 2015-04-10 21:20 白云辉 阅读(1789) 评论(2) 推荐(0) 编辑
上一页 1 ··· 15 16 17 18 19