2005年05月10日 星期二 10:10
应该可以不公开源码的吧! Carambo , qutr at tjub.com.cn 2005-5-10 ----- 收到以下来信内容 ----- 发件人: byj 收件人: Zoom Quiet,python-chinese 时 间: 2005-05-10, 10:19:07 主 题: Re: [python-chinese]_自己做了个wxPython2.6_的chm格式帮助文件 谢了,我还有一个问题。我可以使用wxPython来开发商业产品吗?需要公开源码吗? 有谁知道的 -- Open WebMail Project (http://openwebmail.org) ---------- Original Message ----------- From: Zoom Quiet <zoom.quiet at gmail.com> To: python-chinese at lists.python.cn Sent: Tue, 10 May 2005 09:15:07 +0800 Subject: Re: [python-chinese] 自己做了个wxPython2.6 的chm格式帮助文件 > 爽哪!!! > > 我要个先! > > 在05-5-6,Tangram Liu<langram at gmail.com> 写道: > > 我平时用editplus,喜欢在用户工具里面定义ctrl+(0-9)的方法快速访问chm帮助 > > 文件,可是wxpython缺省自带的帮助文件是 wxwidgets的,所以动手把 > > wxpython.org上用epydoc生成的新格式html帮助文档转换成了chm,并把wxpython > > 的模块,类名和方法做了索引文件,这样按ctrl+num就可以直接查询光标处的关键 > > 字。不知道有没有人需要这个东东? > > > > 我找了个地址先放上,有需要的自己下载吧。 > > > > http://www.ego8.com/temp/wxpython.chm > > _______________________________________________ > > python-chinese list > > python-chinese at lists.python.cn > > http://python.cn/mailman/listinfo/python-chinese > > > > -- > [Time is unimportant, only life important!] ------- End of Original Message ------- _______________________________________________ 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/20050510/eae5f88b/attachment.htm
2005年05月10日 星期二 10:33
看了它的liecence 貌似可以,想确认一下 -- Open WebMail Project (http://openwebmail.org) ---------- Original Message ----------- From: "Carambo"<qutr at tjub.com.cn> To: "python-chinese"<python-chinese at lists.python.cn> Sent: Tue, 10 May 2005 10:10:35 +0800 Subject: Re: Re: [python-chinese]_自己做了个wxPython2.6_的chm格式帮助文件 > 应该可以不公开源码的吧! > > Carambo , qutr at tjub.com.cn > 2005-5-10 > ----- 收到以下来信内容 ----- > 发件人: byj > 收件人: Zoom Quiet,python-chinese > 时 间: 2005-05-10, 10:19:07 > 主 题: Re: [python-chinese]_自己做了个wxPython2.6_的chm格式帮助文件 > > 谢了,我还有一个问题。我可以使用wxPython来开发商业产品吗?需要公开源码吗? 有谁知道的 > > -- > Open WebMail Project (http://openwebmail.org) > > ---------- Original Message ----------- > From: Zoom Quiet <zoom.quiet at gmail.com> > To: python-chinese at lists.python.cn > Sent: Tue, 10 May 2005 09:15:07 +0800 > Subject: Re: [python-chinese] 自己做了个wxPython2.6 的chm格式帮助文件 > > > 爽哪!!! > > > > 我要个先! > > > > 在05-5-6,Tangram Liu<langram at gmail.com> 写道: > > > 我平时用editplus,喜欢在用户工具里面定义ctrl+(0-9)的方法快速访问chm帮助 > > > 文件,可是wxpython缺省自带的帮助文件是 wxwidgets的,所以动手把 > > > wxpython.org上用epydoc生成的新格式html帮助文档转换成了chm,并把wxpython > > > 的模块,类名和方法做了索引文件,这样按ctrl+num就可以直接查询光标处的关 键 > > > 字。不知道有没有人需要这个东东? > > > > > > 我找了个地址先放上,有需要的自己下载吧。 > > > > > > http://www.ego8.com/temp/wxpython.chm > > > _______________________________________________ > > > python-chinese list > > > python-chinese at lists.python.cn > > > http://python.cn/mailman/listinfo/python-chinese > > > > > > > -- > > [Time is unimportant, only life important!] > ------- End of Original Message ------- > > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese ------- End of Original Message -------
2005年05月10日 星期二 10:35
大家谁有用mod_python发邮件的代码?发一份参考一下,谢谢。 _________________________________________________________________ 免费下载 MSN Explorer: http://explorer.msn.com/lccn/
2005年05月10日 星期二 13:54
崔 艳龙,您好! 我想,这和mod_python没什么关系。 可以使用python的smtplib模块,下面是python library reference中的例子: import smtplib def prompt(prompt): return raw_input(prompt).strip() fromaddr = prompt("From: ") toaddrs = prompt("To: ").split() print "Enter message, end with ^D (Unix) or ^Z (Windows):" # Add the From: and To: headers at the start! msg = ("From: %s\r\nTo: %s\r\n\r\n" % (fromaddr, ", ".join(toaddrs))) while 1: try: line = raw_input() except EOFError: break if not line: break msg = msg + line print "Message length is " + repr(len(msg)) server = smtplib.SMTP('localhost') server.set_debuglevel(1) server.sendmail(fromaddr, toaddrs, msg) server.quit() ======= 2005-05-10 10:35:29 您在来信中写道:======= >大家谁有用mod_python发邮件的代码?发一份参考一下,谢谢。 > >_________________________________________________________________ >免费下载 MSN Explorer: http://explorer.msn.com/lccn/ > >_______________________________________________ >python-chinese list >python-chinese at lists.python.cn >http://python.cn/mailman/listinfo/python-chinese > = = = = = = = = = = = = = = = = = = = = 致 礼! Xingyang Hu hu.007 at 163.com 2005-05-10
Zeuux © 2025
京ICP备05028076号