Re: [Tutor] XML-RPC data transfers.

2007-01-01 Thread Alan Gauld
"Chris Hengge" <[EMAIL PROTECTED]> wrote > Going off your thoughts that I'm asking to do something outside the > realm of > the readers here, is there a better place to ask this kind of > oddball stuff? > I've looked around and haven't been able to find any support for > XML-RPC I'd try the XM

Re: [Tutor] XML-RPC data transfers.

2007-01-01 Thread Tim Golden
Chris Hengge wrote: > Going off your thoughts that I'm asking to do something outside the > realm of the readers here, is there a better place to ask this kind of > oddball stuff? I've looked around and haven't been able to find any > support for XML-RPC (might be a good sign to drop it and move

[Tutor] Need help with rewriting script to use Decimal module

2007-01-01 Thread Dick Moores
bestFracForMinimumError() is only a small part of a program I wrote long ago, called frac.py (). I'm trying to rewrite it so as to get more precision by using the Decimal module, but am getting nowhere. Errors all over the place. Can some kind and kn

Re: [Tutor] XML-RPC data transfers.

2007-01-01 Thread Ziad Rahhal
Did you look at SOAPpy? if you are interested in doing what you want to do through web-services, then SOAPpy might be what you are looking for. It does support XML-RPC. I have developed a working example that sends an image from a Java Web-service and receives the image at a SOAPpy client that use

Re: [Tutor] Need help with rewriting script to use Decimal module

2007-01-01 Thread Kent Johnson
Dick Moores wrote: > bestFracForMinimumError() is only a small part of a program I wrote > long ago, called frac.py > (). I'm trying to rewrite > it so as to get more precision by using the Decimal module, but am > getting nowhere. Errors all over the

Re: [Tutor] Need help with rewriting script to use Decimal module

2007-01-01 Thread Dick Moores
At 05:37 AM 1/1/2007, Kent Johnson wrote: >Dick Moores wrote: >>bestFracForMinimumError() is only a small part of a program I wrote >>long ago, called frac.py >>(). I'm trying to >>rewrite it so as to get more precision by using the Decimal module, >>

Re: [Tutor] Starting python from a DOS prompt from any directory?

2007-01-01 Thread Steve Oldner
Dittos, guys. Alan, I work for a state government, so I'm not suppose to download PYTHON without submitting reasons and getting permissions. I'm an applications programmer working on SAP (ASAP programmer), and we have some COBOL and Cold Fusion also. So we are pretty compartmentalized. An

[Tutor] display text in colors

2007-01-01 Thread LandSurveyor
I would like to direct a python script to display 'print' strings in various (chosen) colors; for example: print \ """ color this line blue # in the printout display-be it screen or hardcopy color this line green # in the printout display-be it screen or hardcopy """ what I tried doing was: im

Re: [Tutor] Starting python from a DOS prompt from any

2007-01-01 Thread Tony Cappellini
Message: 3 Date: Sun, 31 Dec 2006 00:10:39 -0500 From: "Daniel McQuay" <[EMAIL PROTECTED]> Subject: [Tutor] Starting python from a DOS prompt from any directory? sorry for such a newbie question but i would like to figure this out because there are some situations where i need that to wo

Re: [Tutor] XML-RPC data transfers.

2007-01-01 Thread Chris Hengge
The main reason I haven't posted to more then one list is because I'm trying to avoid looking obnoxious, as well as getting redundant information, or having to keep answering the same things mutliple times... I might ask this over there though after I try a few more things. Thanks. On 1/1/07, Tim

Re: [Tutor] Starting python from a DOS prompt from any directory?

2007-01-01 Thread Alan Gauld
"Steve Oldner" <[EMAIL PROTECTED]> wrote > Alan, I work for a state government, so I'm not suppose to > download PYTHON without submitting reasons and > getting permissions. Sure I understand that, but it looks from your post that you have somehow managed to install Python. If your account

Re: [Tutor] Starting python from a DOS prompt from any

2007-01-01 Thread Alan Gauld
"Tony Cappellini" <[EMAIL PROTECTED]> wrote > There's also a simple registry change you can make to open the > Python > interpreter in a specific directory, You can just set up a shortcut with the working directory set. No need to worry about the registry (although of course the shortcut does t

[Tutor] Session from different app or domain

2007-01-01 Thread anil maran
One app i m developing needs integrating with the client site and get their users, so I need to use their login to log the users in and once they are in they should use my application sort of like Microsoft Passport... Here is the problem the example usage is in Django and they are talking about

Re: [Tutor] display text in colors

2007-01-01 Thread Luke Paireepinart
LandSurveyor wrote: > I would like to direct a python script to display 'print' strings in various > (chosen) colors; for example: > > print \ > """ > color this line blue # in the printout display-be it screen or hardcopy > color this line green # in the printout display-be it screen or hardco

Re: [Tutor] display text in colors

2007-01-01 Thread LandSurveyor
Oh!...sorry. My OS is Mandrake 10.1. Coupla other little 'minor' details I sorta left out. I had attempted to echo a random string on my command line by surrounding it with [again] the same color-code that works on my CLI prompt line ($PS1). That was the color coding I had tried to inject int

Re: [Tutor] Starting python from a DOS prompt from any directory?

2007-01-01 Thread Bob Gailer
Alan Gauld wrote: > "Steve Oldner" <[EMAIL PROTECTED]> wrote > >> Alan, I work for a state government, so I'm not suppose to >> download PYTHON without submitting reasons and >> getting permissions. >> > > Sure I understand that, but it looks from your post that > you have somehow man

Re: [Tutor] Starting python from a DOS prompt from any directory?

2007-01-01 Thread Alan Gauld
"Bob Gailer" <[EMAIL PROTECTED]> wrote >> Sure I understand that, but it looks from your post that >> you have somehow managed to install Python. > As I recall Steve said at the beginning that he ran Python from a > network drive. Nope, he said it was a networked PC but that Python was in hi

Re: [Tutor] Session from different app or domain

2007-01-01 Thread Alan Gauld
"anil maran" <[EMAIL PROTECTED]> wrote > Here is the problem the example usage is in Django > > and they are talking about a request object >if 'session_key' in request.session and 'uid' in > request.session: >fb.session_key = > request.session['session_key'] > > Anyone can tell me h