如何用Kiarrigell上传图片?

如何用Kiarrigell上传图片?

看了Kiarrigell的DOME,没有看见这样的例子,
在网上搜索了一下,limodom老大提到,我没找到最终方案,
<html>
<head>
<title>Test</title>
</head><body>
<form action="test.py" enctype="multipart/form-data" method="post">
input name<input type="text" name="name"><br/>
input password<input type="password" name="password"><br/>
file upload<input type="file" name="file"><br/>
<input type="submit" name="ok"  value="Send"></form>
</body>
</html>

那么这里的test.py应该怎么写呢? 才用pih方式,
请帮忙解决,谢谢.
也就是类似论坛里面从本机可以上传图片到服务器上的功能.
谢谢.
demo里有这个例子呀。
http://pythonic.zoomquiet.org:9080/demo/tour/frame_tour_zh.htm

fileUpload.html

[Copy to clipboard] [ - ]
CODE:
    1 <html>
    2 <body>
    3 <FORM ENCTYPE="multipart/form-data" ACTION="fileUpload.py" METHOD=POST>
    4
    5 File to process: <INPUT NAME="myfile" TYPE="file">
    6 <INPUT TYPE="submit" VALUE="Send File"> </form>
    7 </body>
    8 </html>
    9

fileUpload.py

[Copy to clipboard] [ - ]
CODE:
    1 """Copy the uploaded file on the script directory"""
    2 import os
    3 print "uploading file %s" %_myfile.filename
    4
    5 # uncomment the following lines to copy the uploaded file
    6 # to the current directory
    7 """
    8 f = _myfile.file # file-like object
    9 dest_name = os.path.basename(_myfile.filename)
   10 out = open(dest_name,'wb')
   11 # copy file
   12 import shutil
   13 shutil.copyfileobj(f,out)
   14 out.close()
   15 """

别把名字拼错了哦,是Karrigell.
faint,兄弟啊...再追加点点,是DEMO不是DOME,是limodou不是limodom

对不起,犯了这么严重的错误,谢谢楼上的指出.

还要努力,争取在一个月内学会Karrigell,另一个月完成项目,谢谢兄弟帮忙.
谢谢 loveddie 兄弟告诉了我一个好的karrigell教学网址
http://pythonic.zoomquiet.org:9080/demo/tour/frame_tour_zh.htm

我怎么那么粗心,以前没有发现呢?看来好要认真一点.