2005年07月02日 星期六 10:42
不要太复杂的,但比较完整的,不要Zope\plone(感觉太重了) 我在Apache下只安装了python CGI. 初学者,请大家多多指点,谢谢~
2005年07月02日 星期六 14:05
Karrigell,CherryPy和Snakelet这三个应该比较适合你的要求。 三个当中最早接触的是CherryPy,非常的Pythonic,不过做网站太Pythonic未必就合适。 Snakelet只看过文档,没动过手,谈感觉可能有些不合适。不过就文档来看,应该是不复杂,但是没有一个好的入门教程。功能可能是三个当中最强的。 最喜欢Karrigell,又方便又灵活。功能也过得去。一个下午就能学会。 On 7/1/05, 灵庙 <lingmiao2005 at 126.com> wrote: > 不要太复杂的,但比较完整的,不要Zope\plone(感觉太重了) > > 我在Apache下只安装了python CGI. > > 初学者,请大家多多指点,谢谢~ > > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese > > >
2005年07月02日 星期六 15:23
建 议使用Karrigell,不用安装apache,在我的blog上有一些学习心得感兴趣可以看一看。 在 05-7-2,shhgs<shhgs.efhilt at gmail.com> 写道: > Karrigell,CherryPy和Snakelet这三个应该比较适合你的要求。 > > 三个当中最早接触的是CherryPy,非常的Pythonic,不过做网站太Pythonic未必就合适。 > > Snakelet只看过文档,没动过手,谈感觉可能有些不合适。不过就文档来看,应该是不复杂,但是没有一个好的入门教程。功能可能是三个当中最强的。 > > 最喜欢Karrigell,又方便又灵活。功能也过得去。一个下午就能学会。 > > > On 7/1/05, 灵庙 <lingmiao2005 at 126.com> wrote: > > 不要太复杂的,但比较完整的,不要Zope\plone(感觉太重了) > > > > 我在Apache下只安装了python CGI. > > > > 初学者,请大家多多指点,谢谢~ > > > > _______________________________________________ > > python-chinese list > > python-chinese at lists.python.cn > > http://python.cn/mailman/listinfo/python-chinese > > > > > > > > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese > > > -- I like python! My Donews Blog: http://www.donews.net/limodou New Google Maillist: http://groups-beta.google.com/group/python-cn
2005年07月04日 星期一 10:07
用Python写了一些程序,不想让别人看到源程序,在分发程序时有没有办法把.py文件 编译了再发放。 .pyc与.pyo表示什么意思,有什么不同。 谢谢!
2005年07月04日 星期一 10:18
使用compile模块。 在 05-7-4,Jiang Hua<jianghua1213 at hotmail.com> 写道: > 用Python写了一些程序,不想让别人看到源程序,在分发程序时有没有办法把.py文件 > 编译了再发放。 > .pyc与.pyo表示什么意思,有什么不同。 > > 谢谢! > > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese > -- I like python! My Donews Blog: http://www.donews.net/limodou New Google Maillist: http://groups-beta.google.com/group/python-cn
2005年07月04日 星期一 10:22
Jiang Hua,你好 真的不想让人看源代码的话,就把Py放到服务器端 发布出去的 pyc 文件和源代码没多大差别,用 dis.dis 看到的中间码很好理解。 大部分的 albertlee,hanzhupeng at 163.com 2005-7-4 ----- 收到以下来信内容 ----- 发件人: Jiang Hua 收件人: python-chinese 时 间: 2005-07-04, 10:07:47 主 题: [金山毒霸识别此邮件为垃圾邮件]如何去编译.py文件 用Python写了一些程序,不想让别人看到源程序,在分发程序时有没有办法把.py文件 编译了再发放。 ..pyc与.pyo表示什么意思,有什么不同。 谢谢! _______________________________________________ python-chinese list python-chinese at lists.python.cn http://python.cn/mailman/listinfo/python-chinese -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050704/1cc4c40b/attachment.htm
2005年07月04日 星期一 10:44
使用compile隐藏代码没什么意义 基本上和代码一样 如果你有特别秘密的东西要发布给别人,建议用c写,然后包装给python用 目前对于Python来说,没什么有效方法控制python程序不被人看懂 在05-7-4,limodou <limodou at gmail.com> 写道: > > 使用compile模块。 > > 在 05-7-4,Jiang Hua<jianghua1213 at hotmail.com> 写道: > > 用Python写了一些程序,不想让别人看到源程序,在分发程序时有没有办法把.py文件 > > 编译了再发放。 > > .pyc与.pyo表示什么意思,有什么不同。 > > > > 谢谢! > > > > _______________________________________________ > > python-chinese list > > python-chinese at lists.python.cn > > http://python.cn/mailman/listinfo/python-chinese > > > > -- > I like python! > My Donews Blog: http://www.donews.net/limodou > New Google Maillist: http://groups-beta.google.com/group/python-cn > > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese > > > -- I'm the one, powered by nEO -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050704/5523872d/attachment.html
2005年07月04日 星期一 10:58
使用Python 就别想玩商业的那一套,果真要玩的话, 也别在这讨论吧…………………… 其实可以支持你一招, 用C写一个小小的即时解码器,每次运行前将hash 加密过的 pyc 解压出来,运行完毕后再全部自个儿删除,而且实时监视,是否有非期望的进程来读 pyc 如果有立即自杀……………… 你这么累,干脆使用 C# 算了………… 在 05-7-4,nEO<gentoo.cn at gmail.com> 写道: > 使用compile隐藏代码没什么意义 > 基本上和代码一样 > > 如果你有特别秘密的东西要发布给别人,建议用c写,然后包装给python用 > 目前对于Python来说,没什么有效方法控制python程序不被人看懂 > > > 在05-7-4,limodou <limodou at gmail.com> 写道: > > 使用compile模块。 > > > > 在 05-7-4,Jiang Hua<jianghua1213 at hotmail.com> 写道: > > > 用Python写了一些程序,不想让别人看到源程序,在分发程序时有没有办法把.py文件 > > > 编译了再发放。 > > > .pyc与.pyo表示什么意思,有什么不同。 > > > > > > 谢谢! > > > > > > _______________________________________________ > > > python-chinese list > > > python-chinese at lists.python.cn > > > http://python.cn/mailman/listinfo/python-chinese > > > > > > > -- > > I like python! > > My Donews Blog: http://www.donews.net/limodou > > New Google Maillist: > http://groups-beta.google.com/group/python-cn > > > > _______________________________________________ > > python-chinese list > > python-chinese at lists.python.cn > > http://python.cn/mailman/listinfo/python-chinese > > > > > > > > > > -- > I'm the one, powered by nEO > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese > > > -- [Time is unimportant, only life important!]
2005年07月04日 星期一 11:09
C#反编译更容易,那个反编译工具在MSDN的官方网站上就可以找到,C#程序员几乎人手一套,反编译得到的代码与原来的代码对应率接近百分之百――有时 候比原来的代码更出色。而我自己不用那东西,只是因为我觉得.net framework自带的反汇编工具更好用而已…… 现在的大趋势是反向工程越来越容易,与其一门心思研究如何避免源码被人反编译,不如好好研究一下怎么写出好的软件。另外,软件大到一定程度,反编译就没什么意义了。面对海量代码,如果没有良好的文档,有没源码都一样看不懂。 在05-7-4,Zoom Quiet <zoom.quiet at gmail.com> 写道: > > 使用Python 就别想玩商业的那一套,果真要玩的话, > 也别在这讨论吧…………………… > > 其实可以支持你一招, > 用C写一个小小的即时解码器,每次运行前将hash 加密过的 pyc > 解压出来,运行完毕后再全部自个儿删除,而且实时监视,是否有非期望的进程来读 pyc 如果有立即自杀……………… > > 你这么累,干脆使用 C# 算了………… > > 在 05-7-4,nEO<gentoo.cn at gmail.com> 写道: > > 使用compile隐藏代码没什么意义 > > 基本上和代码一样 > > > > 如果你有特别秘密的东西要发布给别人,建议用c写,然后包装给python用 > > 目前对于Python来说,没什么有效方法控制python程序不被人看懂 > > > > > > 在05-7-4,limodou <limodou at gmail.com> 写道: > > > 使用compile模块。 > > > > > > 在 05-7-4,Jiang Hua<jianghua1213 at hotmail.com> 写道: > > > > 用Python写了一些程序,不想让别人看到源程序,在分发程序时有没有办法把.py文件 > > > > 编译了再发放。 > > > > .pyc与.pyo表示什么意思,有什么不同。 > > > > > > > > 谢谢! > > > > > > > > _______________________________________________ > > > > python-chinese list > > > > python-chinese at lists.python.cn > > > > http://python.cn/mailman/listinfo/python-chinese > > > > > > > > > > -- > > > I like python! > > > My Donews Blog: http://www.donews.net/limodou > > > New Google Maillist: > > http://groups-beta.google.com/group/python-cn > > > > > > _______________________________________________ > > > python-chinese list > > > python-chinese at lists.python.cn > > > http://python.cn/mailman/listinfo/python-chinese > > > > > > > > > > > > > > > > > -- > > I'm the one, powered by nEO > > _______________________________________________ > > python-chinese list > > python-chinese at lists.python.cn > > http://python.cn/mailman/listinfo/python-chinese > > > > > > > > -- > [Time is unimportant, only life important!] > > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese > > > -- 欢迎访问: http://blog.csdn.net/ccat 刘鑫 March.Liu -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050704/fade61f7/attachment.htm
2005年07月04日 星期一 11:11
Zoom Quiet,你好 同意 同意 albertlee,hanzhupeng at 163.com 2005-7-4 ----- 收到以下来信内容 ----- 发件人: Zoom Quiet 收件人: nEO,python-chinese 时 间: 2005-07-04, 10:58:27 主 题: Re: [python-chinese] 如何去编译.py文件 使用Python 就别想玩商业的那一套,果真要玩的话, 也别在这讨论吧…………………… 其实可以支持你一招, 用C写一个小小的即时解码器,每次运行前将hash 加密过的 pyc 解压出来,运行完毕后再全部自个儿删除,而且实时监视,是否有非期望的进程来读 pyc 如果有立即自杀……………… 你这么累,干脆使用 C# 算了………… 在 05-7-4,nEO<gentoo.cn at gmail.com> 写道: > 使用compile隐藏代码没什么意义 > 基本上和代码一样 > > 如果你有特别秘密的东西要发布给别人,建议用c写,然后包装给python用 > 目前对于Python来说,没什么有效方法控制python程序不被人看懂 > > > 在05-7-4,limodou <limodou at gmail.com> 写道: > > 使用compile模块。 > > > > 在 05-7-4,Jiang Hua<jianghua1213 at hotmail.com> 写道: > > > 用Python写了一些程序,不想让别人看到源程序,在分发程序时有没有办法把.py文件 > > > 编译了再发放。 > > > .pyc与.pyo表示什么意思,有什么不同。 > > > > > > 谢谢! > > > > > > _______________________________________________ > > > python-chinese list > > > python-chinese at lists.python.cn > > > http://python.cn/mailman/listinfo/python-chinese > > > > > > > -- > > I like python! > > My Donews Blog: http://www.donews.net/limodou > > New Google Maillist: > http://groups-beta.google.com/group/python-cn > > > > _______________________________________________ > > python-chinese list > > python-chinese at lists.python.cn > > http://python.cn/mailman/listinfo/python-chinese > > > > > > > > > > -- > I'm the one, powered by nEO > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese > > > -- [Time is unimportant, only life important!] _______________________________________________ python-chinese list python-chinese at lists.python.cn http://python.cn/mailman/listinfo/python-chinese -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050704/22cdf875/attachment.html
2005年07月04日 星期一 11:20
Mail各位大侠: python 怎么进行数据库连接,并进行数据库的增,删,改???? [jam.zheng] Best regards, * * * * * * * Jam Zheng Engineer of Software Section 1 Achievo China Phone: (86-755) 2603-0128 X203 Fax: (86-755) 2603-0138 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050704/3bbbfc74/attachment.html
2005年07月04日 星期一 11:22
"反编译得到的代码与原来的代码对应率接近百分之百――**有时候比原来的代码更出色。**" 这个有意思 On 7/3/05, March Liu <march.liu at gmail.com> wrote: > C#反编译更容易,那个反编译工具在MSDN的官方网站上就可以找到,C#程序员几乎人手一套,反编译得到的代码与原来的代码对应率接近百分之百――有时 > 候比原来的代码更出色。而我自己不用那东西,只是因为我觉得.net framework自带的反汇编工具更好用而已…… > 现在的大趋势是反向工程越来越容易,与其一门心思研究如何避免源码被人反编译,不如好好研究一下怎么写出好的软件。另外,软件大到一定程度,反编译就没什么意义了。面对海量代码,如果没有良好的文档,有没源码都一样看不懂。 > > 在05-7-4,Zoom Quiet < zoom.quiet at gmail.com> 写道: > > 使用Python 就别想玩商业的那一套,果真要玩的话, > > 也别在这讨论吧…………………… > > > > 其实可以支持你一招, > > 用C写一个小小的即时解码器,每次运行前将hash 加密过的 pyc > > 解压出来,运行完毕后再全部自个儿删除,而且实时监视,是否有非期望的进程来读 pyc 如果有立即自杀……………… > > > > 你这么累,干脆使用 C# 算了………… > > > > 在 05-7-4,nEO<gentoo.cn at gmail.com> 写道: > > > 使用compile隐藏代码没什么意义 > > > 基本上和代码一样 > > > > > > 如果你有特别秘密的东西要发布给别人,建议用c写,然后包装给python用 > > > 目前对于Python来说,没什么有效方法控制python程序不被人看懂 > > > > > > > > > 在05-7-4,limodou < limodou at gmail.com> 写道: > > > > 使用compile模块。 > > > > > > > > 在 05-7-4,Jiang Hua<jianghua1213 at hotmail.com> 写道: > > > > > 用Python写了一些程序,不想让别人看到源程序,在分发程序时有没有办法把.py文件 > > > > > 编译了再发放。 > > > > > .pyc与.pyo表示什么意思,有什么不同。 > > > > > > > > > > 谢谢! > > > > > > > > > > _______________________________________________ > > > > > python-chinese list > > > > > python-chinese at lists.python.cn > > > > > http://python.cn/mailman/listinfo/python-chinese > > > > > > > > > > > > > -- > > > > I like python! > > > > My Donews Blog: http://www.donews.net/limodou > > > > New Google Maillist: > > > http://groups-beta.google.com/group/python-cn > > > > > > > > _______________________________________________ > > > > python-chinese list > > > > python-chinese at lists.python.cn > > > > http://python.cn/mailman/listinfo/python-chinese > > > > > > > > > > > > > > > > > > > > > > > > -- > > > I'm the one, powered by nEO > > > _______________________________________________ > > > python-chinese list > > > python-chinese at lists.python.cn > > > http://python.cn/mailman/listinfo/python-chinese > > > > > > > > > > > > > -- > > [Time is unimportant, only life important!] > > > > _______________________________________________ > > python-chinese list > > python-chinese at lists.python.cn > > http://python.cn/mailman/listinfo/python-chinese > > > > > > > > > > -- > 欢迎访问: > http://blog.csdn.net/ccat > > 刘鑫 > March.Liu > > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese > > >
2005年07月04日 星期一 11:27
你用什么数据库? 在05-7-4,jam.zheng <jam.zheng at achievo.com> 写道: > > 各位大侠: > python 怎么进行数据库连接,并进行数据库的增,删,改???? > > [jam.zheng] Best regards, > * * * * * * * > Jam Zheng > Engineer of Software Section 1 > Achievo China > Phone: (86-755) 2603-0128 X203 > Fax: (86-755) 2603-0138 > > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese > > > -- I'm the one, powered by nEO -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050704/c36e1880/attachment.htm
2005年07月04日 星期一 11:31
jam.zheng,你好 装驱动, Mysql的就用Mysqldb albertlee,hanzhupeng at 163.com 2005-7-4 ----- 收到以下来信内容 ----- 发件人: jam.zheng 收件人: python-chinese 时 间: 2005-07-04, 11:20:56 主 题: [金山毒霸识别此邮件为垃圾邮件]python 怎么进行数据库连接,并进行数据库的增,删,改???? 各位大侠: python 怎么进行数据库连接,并进行数据库的增,删,改???? [jam.zheng] Best regards, * * * * * * * Jam Zheng Engineer of Software Section 1 Achievo China Phone: (86-755) 2603-0128 X203 Fax: (86-755) 2603-0138
2005年07月04日 星期一 11:31
嘿嘿嘿!! 所有不以缩进来界定逻辑的语言都有此通病, 君不闻各种代码美化工具? 就是将各人古怪的习惯代码,整理为所谓的标准代码格式,所以有"更出色"一说 了…………哈哈哈!! 在 05-7-4,shhgs<shhgs.efhilt at gmail.com> 写道: > "反编译得到的代码与原来的代码对应率接近百分之百――**有时候比原来的代码更出色。**" > 这个有意思 > > > On 7/3/05, March Liu <march.liu at gmail.com> wrote: > > C#反编译更容易,那个反编译工具在MSDN的官方网站上就可以找到,C#程序员几乎人手一套,反编译得到的代码与原来的代码对应率接近百分之百――有时 > > 候比原来的代码更出色。而我自己不用那东西,只是因为我觉得.net framework自带的反汇编工具更好用而已…… > > 现在的大趋势是反向工程越来越容易,与其一门心思研究如何避免源码被人反编译,不如好好研究一下怎么写出好的软件。另外,软件大到一定程度,反编译就没什么意义了。面对海量代码,如果没有良好的文档,有没源码都一样看不懂。 > > > > 在05-7-4,Zoom Quiet < zoom.quiet at gmail.com> 写道: > > > 使用Python 就别想玩商业的那一套,果真要玩的话, > > > 也别在这讨论吧…………………… > > > > > > 其实可以支持你一招, > > > 用C写一个小小的即时解码器,每次运行前将hash 加密过的 pyc > > > 解压出来,运行完毕后再全部自个儿删除,而且实时监视,是否有非期望的进程来读 pyc 如果有立即自杀……………… > > > > > > 你这么累,干脆使用 C# 算了………… > > > > > > 在 05-7-4,nEO<gentoo.cn at gmail.com> 写道: > > > > 使用compile隐藏代码没什么意义 > > > > 基本上和代码一样 > > > > > > > > 如果你有特别秘密的东西要发布给别人,建议用c写,然后包装给python用 > > > > 目前对于Python来说,没什么有效方法控制python程序不被人看懂 > > > > > > > > > > > > 在05-7-4,limodou < limodou at gmail.com> 写道: > > > > > 使用compile模块。 > > > > > > > > > > 在 05-7-4,Jiang Hua<jianghua1213 at hotmail.com> 写道: > > > > > > 用Python写了一些程序,不想让别人看到源程序,在分发程序时有没有办法把.py文件 > > > > > > 编译了再发放。 > > > > > > .pyc与.pyo表示什么意思,有什么不同。 > > > > > > > > > > > > 谢谢! > > > > > > > > > > > > _______________________________________________ > > > > > > python-chinese list > > > > > > python-chinese at lists.python.cn > > > > > > http://python.cn/mailman/listinfo/python-chinese > > > > > > > > > > > > > > > > -- > > > > > I like python! > > > > > My Donews Blog: http://www.donews.net/limodou > > > > > New Google Maillist: > > > > http://groups-beta.google.com/group/python-cn > > > > > > > > > > _______________________________________________ > > > > > python-chinese list > > > > > python-chinese at lists.python.cn > > > > > http://python.cn/mailman/listinfo/python-chinese > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -- > > > > I'm the one, powered by nEO > > > > _______________________________________________ > > > > python-chinese list > > > > python-chinese at lists.python.cn > > > > http://python.cn/mailman/listinfo/python-chinese > > > > > > > > > > > > > > > > > > -- > > > [Time is unimportant, only life important!] > > > > > > _______________________________________________ > > > python-chinese list > > > python-chinese at lists.python.cn > > > http://python.cn/mailman/listinfo/python-chinese > > > > > > > > > > > > > > > > > -- > > 欢迎访问: > > http://blog.csdn.net/ccat > > > > 刘鑫 > > March.Liu > > > > _______________________________________________ > > python-chinese list > > python-chinese at lists.python.cn > > http://python.cn/mailman/listinfo/python-chinese > > > > > > > > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese > > > -- [Time is unimportant, only life important!]
2005年07月04日 星期一 11:33
oracle或者mysql,难道不一样吗? -----Original Message----- From: python-chinese-bounces at lists.python.cn [mailto:python-chinese-bounces at lists.python.cn]On Behalf Of nEO Sent: Monday, July 04, 2005 11:27 AM To: python-chinese at lists.python.cn Subject: Re: [python-chinese] python 怎么进行数据库连接,并进行数据库的 增,删,改???? 你用什么数据库? 在05-7-4,jam.zheng <jam.zheng at achievo.com> 写道: 各位大侠: python 怎么进行数据库连接,并进行数据库的增,删,改???? [jam.zheng] Best regards, * * * * * * * Jam Zheng Engineer of Software Section 1 Achievo China Phone: (86-755) 2603-0128 X203 Fax: (86-755) 2603-0138 _______________________________________________ python-chinese list python-chinese at lists.python.cn http://python.cn/mailman/listinfo/python-chinese -- I'm the one, powered by nEO -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050704/45866611/attachment.html
2005年07月04日 星期一 11:34
咳咳咳!! 这问题,应该不是向Python 列表问,应该先去对应的DB站点,看人家是否提供Py 操作的接口哪? 否则,就只能使用ODBC 之类的通用接口来操作了, 反正,其实语言可以操作什么DB,可以怎么样操作DB Python 都可以! 具体的看对应的Python 模板定义是也乎………… 在 05-7-4,nEO<gentoo.cn at gmail.com> 写道: > 你用什么数据库? > > 在05-7-4,jam.zheng <jam.zheng at achievo.com> 写道: > > > > > > > > > > 各位大侠: > > python 怎么进行数据库连接,并进行数据库的增,删,改???? > > > > [jam.zheng] Best regards, > > * * * * * * * > > Jam Zheng > > Engineer of Software Section 1 > > Achievo China > > Phone: (86-755) 2603-0128 X203 > > Fax: (86-755) 2603-0138 > > > > _______________________________________________ > > python-chinese list > > python-chinese at lists.python.cn > > http://python.cn/mailman/listinfo/python-chinese > > > > > > > > > > -- > I'm the one, powered by nEO > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese > > > -- [Time is unimportant, only life important!]
2005年07月04日 星期一 11:34
办法有很多,首先一些数据库提供了Python版本的访问接口,如果你的工作只与某一个数据库有关,可以去Google一下该数据库的Python SDK,我见过Oracle、MSSQL、MySQL、firebird的Python库。另外一些语言无关的中立数据库接口也有Python版本的访问 库,如Windows平台上流行的ADO和ODBC,这两种数据库接口的Python库在sourceforge上就可以找到。这些数据库访问接口一般都 遵循Python的DBAPI约定,访问方式基本一致。Python DBAPI在sourceforge上也可以搜到。 在05-7-4,jam.zheng <jam.zheng at achievo.com> 写道: > > 各位大侠: > python 怎么进行数据库连接,并进行数据库的增,删,改???? > > [jam.zheng] Best regards, > * * * * * * * > Jam Zheng > Engineer of Software Section 1 > Achievo China > Phone: (86-755) 2603-0128 X203 > Fax: (86-755) 2603-0138 > > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese > > > -- 欢迎访问: http://blog.csdn.net/ccat 刘鑫 March.Liu -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050704/b2a5d3c8/attachment.htm
2005年07月04日 星期一 11:39
ps. 我个人比较推荐 ADOdb 的 meta 方式的DB操作: 使用统一的语句来操作不同的DB,那个爽直哪! http://phplens.com/lens/adodb/adodb-py-docs.htm import adodb; conn = adodb.NewADOConnection('mysql') conn.Connect('server','user','pwd','db') cursor = conn.Execute('select * from table') while not cursor.EOF: print cursor.fields cursor.MoveNext() cursor.Close() conn.Close() 其中的"mysql" 可以变成 access,mssql,oci8,odbc,postgres,vfp 等等这个支持列表随着开发的继续在增长! 原始的PHP 版本的 ADOdb 已经成为 PHP 的内置DB 操作模块了! Py 版本的非常值得期待………… 在 05-7-4,Zoom Quiet<zoom.quiet at gmail.com> 写道: > 咳咳咳!! > > 这问题,应该不是向Python 列表问,应该先去对应的DB站点,看人家是否提供Py 操作的接口哪? > 否则,就只能使用ODBC 之类的通用接口来操作了, > > 反正,其实语言可以操作什么DB,可以怎么样操作DB Python 都可以! > > 具体的看对应的Python 模板定义是也乎………… > > 在 05-7-4,nEO<gentoo.cn at gmail.com> 写道: > > 你用什么数据库? > > > > 在05-7-4,jam.zheng <jam.zheng at achievo.com> 写道: > > > > > > > > > > > > > > > 各位大侠: > > > python 怎么进行数据库连接,并进行数据库的增,删,改???? > > > > > > [jam.zheng] Best regards, > > > * * * * * * * > > > Jam Zheng > > > Engineer of Software Section 1 > > > Achievo China > > > Phone: (86-755) 2603-0128 X203 > > > Fax: (86-755) 2603-0138 > > > > > > _______________________________________________ > > > python-chinese list > > > python-chinese at lists.python.cn > > > http://python.cn/mailman/listinfo/python-chinese > > > > > > > > > > > > > > > > > -- > > I'm the one, powered by nEO > > _______________________________________________ > > python-chinese list > > python-chinese at lists.python.cn > > http://python.cn/mailman/listinfo/python-chinese > > > > > > > > -- > [Time is unimportant, only life important!] > -- [Time is unimportant, only life important!]
2005年07月04日 星期一 11:47
Skipped content of type multipart/alternative-------------- next part -------------- A non-text attachment was scrubbed... Name: Neo Chan.vcf Type: text/x-vcard Size: 1081 bytes Desc: not available Url : http://lists.exoweb.net/pipermail/python-chinese/attachments/20050704/95bcf60c/NeoChan-0001.vcf
2005年07月04日 星期一 11:53
谢谢各位大侠: 能不能发个附件给我,因为我这里不能上网,只能收邮件,先谢过! -----Original Message----- From: python-chinese-bounces at lists.python.cn [mailto:python-chinese-bounces at lists.python.cn]On Behalf Of Zoom Quiet Sent: Monday, July 04, 2005 11:39 AM To: nEO; python-chinese at lists.python.cn Subject: Re: [python-chinese] python 怎么进行数据库连接,并进行数据库的 增,删,改???? ps. 我个人比较推荐 ADOdb 的 meta 方式的DB操作: 使用统一的语句来操作不同的DB,那个爽直哪! http://phplens.com/lens/adodb/adodb-py-docs.htm import adodb; conn = adodb.NewADOConnection('mysql') conn.Connect('server','user','pwd','db') cursor = conn.Execute('select * from table') while not cursor.EOF: print cursor.fields cursor.MoveNext() cursor.Close() conn.Close() 其中的"mysql" 可以变成 access,mssql,oci8,odbc,postgres,vfp 等等这个支持列表 随着开发的继续在增长! 原始的PHP 版本的 ADOdb 已经成为 PHP 的内置DB 操作模块了! Py 版本的非常值得期待………… 在 05-7-4,Zoom Quiet<zoom.quiet at gmail.com> 写道: > 咳咳咳!! > > 这问题,应该不是向Python 列表问,应该先去对应的DB站点,看人家是否提供Py 操 作的接口哪? > 否则,就只能使用ODBC 之类的通用接口来操作了, > > 反正,其实语言可以操作什么DB,可以怎么样操作DB Python 都可以! > > 具体的看对应的Python 模板定义是也乎………… > > 在 05-7-4,nEO<gentoo.cn at gmail.com> 写道: > > 你用什么数据库? > > > > 在05-7-4,jam.zheng <jam.zheng at achievo.com> 写道: > > > > > > > > > > > > > > > 各位大侠: > > > python 怎么进行数据库连接,并进行数据库的增,删,改???? > > > > > > [jam.zheng] Best regards, > > > * * * * * * * > > > Jam Zheng > > > Engineer of Software Section 1 > > > Achievo China > > > Phone: (86-755) 2603-0128 X203 > > > Fax: (86-755) 2603-0138 > > > > > > _______________________________________________ > > > python-chinese list > > > python-chinese at lists.python.cn > > > http://python.cn/mailman/listinfo/python-chinese > > > > > > > > > > > > > > > > > -- > > I'm the one, powered by nEO > > _______________________________________________ > > python-chinese list > > python-chinese at lists.python.cn > > http://python.cn/mailman/listinfo/python-chinese > > > > > > > > -- > [Time is unimportant, only life important!] > -- [Time is unimportant, only life important!]
Zeuux © 2025
京ICP备05028076号