Re: Web framework for static pages

2019-08-12 Thread morphex
Why Google it, when I have an Oracle?  -Morten -- https://mail.python.org/mailman/listinfo/python-list

Web framework for static pages

2019-08-12 Thread morphex
Hi. After a long break, I'm starting to work with web development again, in my company Nidelven IT. http://www.nidelven-it.no I've used Zope and Plone since the early days, as well as other web systems / frameworks, Python-based, some PHP, Java etc. However, I would like to add another tool

Why does 1**2**3**4**5 raise a MemoryError?

2013-03-31 Thread morphex
Hi. I was just doodling around with the python interpreter today, and here is the dump from the terminal: morphex@laptop:~$ python Python 2.7.3 (default, Sep 26 2012, 21:53:58) [GCC 4.7.2] on linux2 Type help, copyright, credits or license for more information. 1**2 1 1**2**3 1 1**2**3**4

Re: Why does 1**2**3**4**5 raise a MemoryError?

2013-03-31 Thread morphex
, 30 Mar 2013 23:56:46 -0700, morphex wrote: Hi. I was just doodling around with the python interpreter today, and here is the dump from the terminal: morphex@laptop:~$ python Python 2.7.3 (default, Sep 26 2012, 21:53:58) [GCC 4.7.2] on linux2 Type help, copyright

How to build and upload eggs to pypi?

2011-03-21 Thread morphex
Hi, I have a couple of project which are on PyPi, and now I'd like to update some of them. Is there a good howto somewhere, showing how to add new versions (instead of updating one that's already there) etc? -Morten -- http://mail.python.org/mailman/listinfo/python-list

Recommended SOAP library?

2009-01-22 Thread morphex
Hi, I have to implement a service which involves some SOAP/WSDL. So far I've found http://pywebsvcs.sourceforge.net/ Is that the recommended library to build some logic which sets/ retrieves some information from a web service? Thanks, Morten --

Re: Recommended SOAP library?

2009-01-22 Thread morphex
On 22 Jan, 13:38, GHZ geraint.willi...@gmail.com wrote: if you require a SOAP client, then I would recommend SUDShttps://fedorahosted.org/suds/ Other options are not in active development, so is difficult to get support. SUDS looks great, thanks for the tip! :) -Morten --

Errors testing m2crypto

2005-12-16 Thread morphex
Hi, I get the following messages running the testall.py script with m2crypto 0.13, can anyone tell me what's wrong? EE == ERROR: test_cipher_mismatch

Re: Sending email in utf-8?

2005-11-09 Thread morphex
By turning everything into unicode objects (unicode(string)) and then running body.encode('utf-8') and using quoted printable, it works. Thanks for all the help, it's really appreciated! -- http://mail.python.org/mailman/listinfo/python-list

Sending email in utf-8?

2005-11-07 Thread morphex
Hi, I have an email that's in the utf-8 encoding, and I'm getting this error message when I try to send it using smtplib: * Module smtplib, line 688, in sendmail * Module smtplib, line 485, in data * Module smtplib, line 312, in send * Module socket, line 1, in sendall

Re: Sending email in utf-8?

2005-11-07 Thread morphex
That works, kinda. I get strange characters now like this Date: Mon, 7 Nov 2005 11:38:29 -0700 (MST) Message-Id: [EMAIL PROTECTED] To: [EMAIL PROTECTED], [EMAIL PROTECTED] From: [EMAIL PROTECTED] Subject: Order confirmation Content-Type: text/plain; charset=utf-8 X-Bogosity: No,

Code for generating validation codes (in images)

2005-09-04 Thread morphex
Hi, does anyone of you know of some code I can use to generate validation code images? Those images you can see on various login forms used to prevent bots for performing a brute-force attack.. Thanks, Morten -- http://mail.python.org/mailman/listinfo/python-list

Re: Code for generating validation codes (in images)

2005-09-04 Thread morphex
Great, thanks to you both. :-) -- http://mail.python.org/mailman/listinfo/python-list

Platform independent adduser script?

2005-02-18 Thread morphex
Hi there, does anyone here know of a script that enables adding of users on UNIX platforms via python? Thanks, Morten -- http://mail.python.org/mailman/listinfo/python-list

Re: Creating text on images

2005-01-13 Thread morphex
Yes, something like that. I was a bit confused when it came to using truetype fonts, but that was straightforward enough (just pass font objects to the text method). :) -- http://mail.python.org/mailman/listinfo/python-list

Creating text on images

2005-01-12 Thread morphex
Hi all, I'm trying to create a script that will superimpose text on an image. I didn't find any great examples out there on how this can be done (I presume using PIL is necessary), do you know of any examples? Thanks, Morten -- http://mail.python.org/mailman/listinfo/python-list

Re: Example of using pty to control a process?

2005-01-05 Thread morphex
Oh right. I knew about the -b option, but not the -n 1 option (which isn't required on FreeBSD). Thanks, I'll obviously use that instead! :) Regards, Morten -- http://mail.python.org/mailman/listinfo/python-list