Re: [Tutor] Why Won't My Pizza Fall?

2008-01-14 Thread Tiger12506
[Background from Alan] > If some other factor were to determine its behhaviour more > closely - such as determining whether the Pizza was within > the coordinate boundaries or in collision with another Pizza > then that could be implemented via a message protocol. > Thus the context object should r

Re: [Tutor] Document Control System

2008-01-14 Thread Dave Kuhlman
On Mon, Jan 14, 2008 at 08:43:46AM -0800, ammar azif wrote: > Hello, > > Is python suitable in developing web based document control > system ? I was thinking of using python and mysql to create such > system. Users can download latest document as well as upload > drafts. Is this possible or i sh

Re: [Tutor] how to change the values of keyboard keys in TKINTER

2008-01-14 Thread Alan Gauld
"brindly sujith" <[EMAIL PROTECTED]> wrote > i want to know how to change the values of keyboard keys(for > example: > I want to set alt+f4 to enter) Can you be more specific? Do you want to change Alt-F4 for every application on the computer permanently or only on a single application? Do you w

Re: [Tutor] Document Control System

2008-01-14 Thread Kent Johnson
ammar azif wrote: > Hello, > > Is python suitable in developing web based document control system ? I > was thinking of using python and mysql to create such system. Users can > download latest document as well as upload drafts. Is this possible or i > should use PHP instead? Document control

Re: [Tutor] Document Control System

2008-01-14 Thread Michael Langford
There are several ready made ones. Plone for instance: http://plone.org/ It's a very customizable zope project. Look at Paste as well in building up your stack: http://pythonpaste.org/ I also suggest opting for use of the WSGI interface for your application (a python web-app interface which allo

[Tutor] Document Control System

2008-01-14 Thread ammar azif
Hello, Is python suitable in developing web based document control system ? I was thinking of using python and mysql to create such system. Users can download latest document as well as upload drafts. Is this possible or i should use PHP instead? - Be a

[Tutor] how to change the values of keyboard keys in TKINTER

2008-01-14 Thread brindly sujith
hi i want to know how to change the values of keyboard keys(for example: I want to set alt+f4 to enter) do we have any modules in tkinter for doing this... plz tell me how we can do this ___ Tutor maillist - Tutor@python.org http://mail.python.org/ma

Re: [Tutor] Read protection of python files for Abaqus

2008-01-14 Thread Michael Langford
I know there are a lot of people who are very much for code openness in all cases. I'm from a couple worlds that's not even something you'd think about doing (military software, where people die if the other side gets your code, and embedded software, where a company in china copies your design and

Re: [Tutor] Read protection of python files for Abaqus

2008-01-14 Thread Ferruh KAYHAN
Dear Sir; Thank you for your reply. Oftenly, especially in industrial companies, codes are becoming very valuable and owner of the company likes to keep that value as confidential in order to protect the company competitivness. Somr times, professionals are leaving companies and starting new jobs

Re: [Tutor] Read protection of python files for Abaqus

2008-01-14 Thread Ferruh KAYHAN
Thank you very much for your reply. -Original Message- From: Kent Johnson [mailto:[EMAIL PROTECTED] Sent: Monday, January 14, 2008 2:13 PM To: Ferruh KAYHAN Cc: tutor@python.org Subject: Re: [Tutor] Read protection of python files for Abaqus Ferruh KAYHAN wrote: > Dear Sirs; > Good morn

Re: [Tutor] Read protection of python files for Abaqus

2008-01-14 Thread bhaaluu
Greetings, On Jan 14, 2008 3:17 AM, Ferruh KAYHAN <[EMAIL PROTECTED]> wrote: > Dear Sirs; > Good morning. > I do not like abaqus users will read my python file codes. How can I > protect my codes from reading ans still workable by Abaqus import?? > > Best Regards > Ferruh Kayhan Abaqus is widely

Re: [Tutor] YouTube Python web framework

2008-01-14 Thread OkaMthembo
Thanks Kent :) On Jan 14, 2008 2:09 PM, Kent Johnson <[EMAIL PROTECTED]> wrote: > OkaMthembo wrote: > > Dear Friends, > > > > Does anybody know what Python web framework e.g. Webware or Web.py, etc > > YouTube is built on/in? > > There is a little info here, perhaps the referenced video has more

Re: [Tutor] Read protection of python files for Abaqus

2008-01-14 Thread Kent Johnson
Ferruh KAYHAN wrote: > Dear Sirs; > Good morning. > I do not like abaqus users will read my python file codes. How can I > protect my codes from reading ans still workable by Abaqus import?? You can ship .pyc files instead of .py files, that will discourage casual readers. I don't think there

Re: [Tutor] YouTube Python web framework

2008-01-14 Thread Kent Johnson
OkaMthembo wrote: > Dear Friends, > > Does anybody know what Python web framework e.g. Webware or Web.py, etc > YouTube is built on/in? There is a little info here, perhaps the referenced video has more details: http://highscalability.com/youtube-architecture Kent __

Re: [Tutor] Recieving emails in python

2008-01-14 Thread Shane Geiger
[EMAIL PROTECTED] wrote: > I m trying to create something simple a mailing list similar to yahoo > groups > I m stumbling at the part where the python recieves messages via say > [EMAIL PROTECTED] > > how to make python recieve emails and process it > after that it is str

[Tutor] Read protection of python files for Abaqus

2008-01-14 Thread Ferruh KAYHAN
Dear Sirs; Good morning. I do not like abaqus users will read my python file codes. How can I protect my codes from reading ans still workable by Abaqus import?? Best Regards Ferruh Kayhan ___ Tutor maillist - Tutor@python.org http://mail.python.org

[Tutor] YouTube Python web framework

2008-01-14 Thread OkaMthembo
Dear Friends, Does anybody know what Python web framework e.g. Webware or Web.py, etc YouTube is built on/in? Kind Regards, -- Sithembewena Lloyd Dube "The Stupidry Foundry" ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listi

Re: [Tutor] Pyhon Mac/Pc

2008-01-14 Thread Alan Gauld
"Ricardo Aráoz" <[EMAIL PROTECTED]> wrote >> Hendrik Verlinden wrote: >>> Yes I'm using the files from this link >>> http://relro.net/racer/dofexport.html :) >>> >>> Do you now what the problem is with these files on a mac? >>> Otherwise how do I have to cha

Re: [Tutor] Why Won't My Pizza Fall?

2008-01-14 Thread Alan Gauld
"Ricardo Aráoz" <[EMAIL PROTECTED]> wrote > Anyway Alan, what do you think about Pizza as a class? It has two > properties, (x, y) that express it's position, but with respect to > what? Any cartesian coordinate system. > Pizza cannot exist by itself, it has a strong dependency on another > ob

Re: [Tutor] Daemonizing Scripts

2008-01-14 Thread Alan Gauld
"Lawrence Barrott" <[EMAIL PROTECTED]> wrote > Thank you I have read through the rest of the replies > for this problem and was wondering if something similar > could be done in Windows (XP). The equivalent to a daemon on XP is a service. If you do a bit of googling you should find an Active|