有关FP的一切都能在这边讨论。
最近更新文章
第一部分
Writing your first Django app, part 1编写你的第一个Django程序,第一部分 Let’s learn by example.从示例程序开始吧。 Throughout this tutorial, we’ll walk you through the creation of a basic poll application.通过这本新手入门,我们会从头至尾向你介绍 ...
第二部分(1)
Writing your first Django app, part 2 编写你的第一个Django程序,第二部分 This tutorial begins where Tutorial 1 left off. We’re continuing the Web-poll application and will focus on Django’s automatically-generated ...
第二部分(2)
Customize the admin form 定制管理表单 Take a few minutes to marvel at all the code you didn't have to write. When you call admin.site.register(Poll), Django just lets you edit the object and "guess&qu ...
第三部分(1)
Writing your first Django app, part 3 编写你的第一个Django程序,第三部分 This tutorial begins where Tutorial 2 left off. We’re continuing the Web-poll application and will focus on creating the public interface – ...
第三部分(2)
A shortcut: render_to_response() 快捷方法:render_to_response() It's a very common idiom to load a template, fill a context and return an HttpResponse object with the result of the rendered template. Djan ...
第四部分
Writing your first Django app, part 4 编写你的第一个Django程序,第四部分 This tutorial begins where Tutorial 3 left off. We’re continuing the Web-poll application and will focus on simple form processing and cut ...
第四部分(2)
Use generic views: Less code is better 使用通用视图:代码越少越好 The detail() (from Tutorial 3) and results() views are stupidly simple -- and, as mentioned above, redundant. The index() view (also from Tutorial ...
django debug toolbar自定义面板分析重复的SQL语句
django debug toolbar可以说是Django最好的app之一了,在实际开发中用来查看变量,分析性能等各方面都有不错的效果。 实际上 django debug toolbar 有两个主要版本: 一个是原版: http://github.com/robhudson/django-debug-toolbar/tree/master 还有一个不太为人知的分支版本: http://gith ...
使用 CherryPy 作为Django的Development Server
Django自带的Development Server作为调试开发时的临时服务器是一个非常方便的工具,因为避免了在还没有代码之前就需要配置一大堆环境的麻烦。 但是此服务器也有一个不足的地方就是它是单线程模式的,也就是同时只能处理一个请求,当需要调试ajax应用时,这就显得非常麻烦了,因为这经常需要同时处理多个请求。 经过搜索,查找,简单的解决方法有以下两种: 1、修改Django自带的Develop ...
Django Ajax 文件上传及进度显示
在Django 1.0 版本后,文件上传的处理做了很大的改变,其中很重要的一点就是引入了 Upload Handlers 的概念。 Upload Handlers 这是个和Django中的Middleware差不多的东西,可以通过在 settings.py 文件中设置 FILE_UPLOAD_HANDLERS 定义一系列Upload Handlers, 和Middleware相似的地方主要表现为以下 ...
混合使用django模板和jinja模板
Django一直广受争论的地方就是它的模板功能,其中印象最深的一次是在python-cn上最初由一个与模板不太相关的主题引起的大讨论。 见 《听一个turbogears的家伙讲django该向zope学什么》 http://groups.google.com/group/python-cn/browse_thread/thread/c32a8ba1b2e1f5f3 争论的焦点主要集中在djan ...
非profile方式扩展Django User Model
今天终于在javaeye开通了Django Cookbook的专栏(http://www.iteye.com/wiki/django),马上发一篇Django相关技巧的文章来热热身吧。 Django的用户模型: Django和其他很多Web框架不同的一点就是它自带了一个现成的User Model,因为Web开发中99%会涉及到用户这个概念,自带一个User Model,不但解决了每次开发一个新的 ...
Python的descriptor
如果你和我一样,曾经对method和function以及对它们的各种访问方式包括self参数的隐含传递迷惑不解,建议你耐心的看下去。这里还提到了Python属性查找策略,使你清楚的知道Python处理obj.attr和obj.attr=val时,到底做了哪些工作。 Python中,对象的方法也是也可以认为是属性,所以下面所说的属性包含方法在内。 先定义下面这个类,还定义了它的一个实例,留着后面用。 ...
Python的descriptor (2)
接上文 。 前面说了descriptor,这个东西其实和Java的setter,getter有点像。但这个descriptor和上文中我们开始提到的函数方法这些东西有什么关系呢? 所有的函数都可以是descriptor,因为它有__get__方法。 >>> def hello(): pass >>> dir(hello) ['__call__', '__ ...
python图形处理库PIL(Python Image Library)
关于PIL库的一些概念 pil能处理的图片类型pil可以处理光栅图片(像素数据组成的的块)。通道一个图片可以包含一到多个数据通道,如果这些通道具有相同的维数和深度,Pil允许将这些通道进行叠加模式 1 1位像素,黑和白,存成8位的像素 L 8位像素,黑白 P 8位像素,使用调色板映射到任何其他模式 RGB 3×8位像素,真彩 RGBA 4×8位像素,真彩+透明通道 ...
群组知识库热门文章
最新评论
abruzzi是个大好人~连载这么多PIL的文章……感谢abruzzi!豁然开朗了~~~体验到py的神 ...
wl6179 评论了 python图形处理库PIL(Python Image Library ...
wl6179 评论了 python图形处理库PIL(Python Image Library ...
a564941464 写道劳驾,请show()方法里面的参数是什么意思?enh.ehhance(1.5 ...
a564941464 评论了 python图形处理库PIL(Python Image Library ...
a564941464 评论了 python图形处理库PIL(Python Image Library ...
劳驾,请show()方法里面的参数是什么意思?enh.ehhance(1.5).show(" ...
a564941464 评论了 python图形处理库PIL(Python Image Library ...
a564941464 评论了 python图形处理库PIL(Python Image Library ...
r,g,b = im.split()#分割成三个通道 会报错:Traceback (most rec ...
请输入用户名 评论了 python图形处理库PIL(Python Image Library ...
请输入用户名 评论了 python图形处理库PIL(Python Image Library ...