Komodo IDE 5的注册机: activestatekomodoidev5.zip
Komodo则是一个比较不错的集成代码开发环境,支持Windows与Linux。
Komodo IDE是收费版本,Komodo Edit是免费版本,免费版的功能当然要少很多。
对HTML/CSS/Javascript均有代码提示,速度要比Aptana快很多,是一个不错的写前端代码的工具。
Aptana太卡了,如果只是为了代码提示,可以转到Komodo来。
不过我还是更喜欢Editplus些,HTML/CSS/Javascript不需要什么IDE和代码提示吧,Editplus的自动完成的效率还是相当高的。
用Komodo只是为了python断点功能,Editplus也有运行python的功能,但不支持断点。
一篇关于Python操作Sqlite的文章,内容不多,却被拆成好几页,看起来费尽,所以就转到这了,方便阅读。
来自:
http://www.devshed.com/c/a/Python/Using-SQLite-in-Python/
——————————————————————————–
Using SQLite in Python
SQLite is a small C library that implements a self-contained SQL database engine. This article examines pysqlite, one of a number of libraries in Python, that is used as an interface with SQLite.
SQLite is a small database engine that’s gained quite a bit of popularity, and this popularity does appear to be deserved. SQLite stands alone and doesn’t require any special dependencies. All the database interaction is done through whatever program needs to access the information, and the database itself is stored in a single file. Because of this, there is no confusing configuration involved, and SQLite is small and, in many applications, quite fast. It’s also been released in the public domain.
Its presence in several languages is no secret, but what many people don’t know is that there are also a few Python SQLite libraries. One of these libraries is pysqlite, which allows for painless database interaction. In this article, we’ll explore SQLite and pysqlite and their capabilities. While prior database experience in Python is not required, you should be familiar with SQL in general.
Continue reading ‘Using SQLite in Python’
在官网下了一个python3.0,装上后死活执行不了print ‘Hello World’,系统环境变量都按官网设置过了。
装了一个ActivePython才搞定,唉。。。。
没装成功的朋友,可以参考这篇文章:
http://www.richarddooling.com/index.php/2006/03/14/python-on-xp-7-minutes-to-hello-world/
或者去下一个ActivePython就可以了。