ziptools 1.2: Unix permissions, UTC modtimes, and more

2020-04-12 Thread M. Lutz
-python.com/ziptools/ziptools/_README.html#Versions Screenshot https://learning-python.com/ziptools/ziptools/docetc/ziptools.png Download https://learning-python.com/ziptools/ziptools.zip Happy zipping, --M. Lutz, http://learning-python.com -- Python-announce-list mailing list -- python-announce-list

New docs: using tkinter GUIs on Android

2019-02-18 Thread Mark Lutz
) on Android today. And there was much rejoicing, --M. Lutz (http://learning-python.com) -- https://mail.python.org/mailman/listinfo/python-announce-list Support the Python Software Foundation: http://www.python.org/psf/donations/

AW: Unrecognised Arguments

2018-12-02 Thread Lutz Horn
://github.com/taspinar/twitterscraper#22-the-cli for details. Lutz Von: Python-list im Auftrag von fergalbell Bell Gesendet: Sonntag, 2. Dezember 2018 08:00 An: python-list@python.org Betreff: Re: Unrecognised Arguments Dear Sir/Madam, I have been running

Re: AES Encryption/Decryption

2018-11-02 Thread Lutz Horn
> > I need to encrypt some strings that will be passed around in URL, and > then also some PII data at rest. Use https://pypi.org/project/cryptography/ Lutz -- https://mail.python.org/mailman/listinfo/python-list

Re: Python Enhancement Proposal for List methods

2018-10-22 Thread Lutz Horn
le to implement. There is no need to add them to the stdlib. Lutz -- https://mail.python.org/mailman/listinfo/python-list

AW: how to replace line on particular line in file[no need to write it back whole file again]

2018-10-11 Thread Lutz Horn
Try something like this: ``` import sys def replace(lineno, replacement): for i, line in enumerate(sys.stdin.readlines()): if i == lineno: line = replacement print(line.strip()) replace(2, "REPLACEMENT") ``` Von:

Re: P = (2^N) - Q

2018-09-24 Thread Lutz Horn
Hi, > If P is the set of primes, how do I write a program ... 1. Do you plan to write this in Python? 2. What have you tried so far? 3. Does it work? Lutz -- https://mail.python.org/mailman/listinfo/python-list

Re: round

2018-06-07 Thread Lutz Horn
M = np.array([[0, 9],[2, 7]], dtype=int) np.linalg.det(M) -18.004 round(np.linalg.det(M)) np.linalg.det(M) has type numpy.float64, not float. Try this: round(float(np.linalg.det(M))) -18 Lutz -- https://mail.python.org/mailman/listinfo/python-list

Re: help me ?

2018-02-26 Thread Lutz Horn
Define 2 lists. ... [...] Help me ! Sounds like homework. Have you tried anything? Does it work? -- https://mail.python.org/mailman/listinfo/python-list

Re: from packaging import version as pack_version ImportError: No module named packaging

2017-10-28 Thread Lutz Horn
On Fri, Oct 27, 2017 at 03:56:39PM +0200, David Gabriel wrote: > from packaging import version as pack_version > ImportError: No module named packaging > > I googled it and I have found so many suggestions regarding updating > 'pip' and installing python-setuptools but all of these did not fix >

Re: Python noob having a little trouble with strings

2017-10-28 Thread Lutz Horn
Python installation you have available. Lutz -- https://mail.python.org/mailman/listinfo/python-list

PyGadgets - GUI Toys, Just for the Hack of It

2017-09-30 Thread Mark Lutz
/programs.html Enjoy, --M. Lutz, http://learning-python.com -- https://mail.python.org/mailman/listinfo/python-announce-list Support the Python Software Foundation: http://www.python.org/psf/donations/

utilities - make icons, generate HTML, repeat

2017-06-21 Thread Mark Lutz
ility programs at: http://learning-python.com/programs.html Happy hacking, --M. Lutz, http://learning-python.com -- https://mail.python.org/mailman/listinfo/python-announce-list Support the Python Software Foundation: http://www.python.org/psf/donations/

Blockbuster updates to four free desktop apps

2017-06-21 Thread Mark Lutz
, and Windows long paths - PyMailGUI sports a new GUI launcher and unsaved-changes tests For all the details, and to grab copies of your own, visit programs central here: http://learning-python.com/programs.html Enjoy, --M. Lutz, http://learning-python.com -- https://mail.python.org/mailman

Re: little help in homework required

2017-06-16 Thread Lutz Horn
oding does not matter in your case since you only have ASCII. data =x.recv(512) This gives the next error: NameError: name 'x' is not defined What is x supposed to be? Regards Lutz -- https://mail.python.org/mailman/listinfo/python-list

Re: help with an error msg please

2017-05-14 Thread Lutz Horn
hon > > import getopt > > try: > opts, args = getopt.getopt (sys.argv[1:], "t:") > except getopt.error, msg: > raise "Usage: some other way", msg I guess you are using Python 2. In any case you should import sys if you want to acce

Re: [GIS] Keeping only POIs X kms from a trace?

2017-05-08 Thread Lutz Horn
Problem is, files are only country-size, so the number of waypoints is overwhelming (Here's the UK for instance**). How many is 'overwhelming'? Lutz -- https://mail.python.org/mailman/listinfo/python-list

Re: packaging python code

2017-05-08 Thread Lutz Horn
Is there any way to pack my .py with all required libraries and create a self running package? Take a look at PyInstaller: * http://www.pyinstaller.org/ * https://pyinstaller.readthedocs.io/en/stable/ Lutz -- https://mail.python.org/mailman/listinfo/python-list

Re: Practice Python

2017-05-08 Thread Lutz Horn
Python - Exercise 5 Do you want us to solve these problems for you? The answers here: https://www.youtube.com/watch?v=nwHPM9WNyw8=36s A strange way to publish code. Lutz -- https://mail.python.org/mailman/listinfo/python-list

Re: Who are the "spacists"?

2017-03-18 Thread Lutz Horn
ems now Why? What could be the problem? I fail to see how the Python policy of preferring spaces over tabs while allowing both if used consistent is causing any problem. Lutz signature.asc Description: OpenPGP digital signature -- https://mail.python.org/mailman/listinfo/python-list

Re: How to add a built-in library in pyhton

2017-03-17 Thread Lutz Horn
/index.html ? Lutz -- https://mail.python.org/mailman/listinfo/python-list

Re: SimpleHTTPServer and CgiHTTPServer in practice

2017-03-16 Thread Lutz Horn
Some Python users have told me that isn't a good idea, but without any specifics. We don't know *why* those people told you not to use these modules. We also don't know your use case. So it is very hard to advise you. Lutz -- https://mail.python.org/mailman/listinfo/python-list

Re: integer's methods

2016-08-18 Thread Lutz Horn
CPython's lexical analyzer can't handle a dot after an integer literal so you must add a space in between "123" and ".". Ok, this works: >>> 123 .bit_length() 7 But it looks really strange. Let's use a variable instead of an integer literal. Lutz -- https://mai

Re: integer's methods

2016-08-18 Thread Lutz Horn
Am 08/18/2016 um 02:58 PM schrieb ast: 123.bit_length() SyntaxError: invalid syntax You are not calling a method here because the parser is not finished. The parser thinks you want to write a float with the value 1.bit_length which is not valid Python syntax. Lutz -- https

Re: --> Running shell script with python

2016-08-18 Thread Lutz Horn
]. You can then later kill this process using Popen.kill()[3]. >>> import subprocess >>> p = suprocess.Popen(["sleep", "10]) # sleep 10 seconds >>> p.kill() Lutz [1] https://docs.python.org/3/library/os.html#os.system [2] https://docs.python.org/3/l

Re: Call for Assistance

2016-08-09 Thread Lutz Horn
ree documentation[1]: > This license does not qualify as free, because there are restrictions > on charging money for copies. Thus, we recommend you do not use this > license for documentation. Using the SA variant does not help. Lutz [1] https://www.gnu.org/licenses/license-list.en.html#CC-BY-NC

Re: Question regarding stdlib distutils strtobool behavior

2016-08-09 Thread Lutz Horn
the result without problems. Why the implementors of Python wrote strtobool this way is something I don't know. Lutz -- https://mail.python.org/mailman/listinfo/python-list

Re: Call for Assistance

2016-08-09 Thread Lutz Horn
Am 08/09/2016 um 03:52 AM schrieb Charles Ross: The book is being hosted at https://github.com/chivalry/meta-python CC-BY-NC-SA is not a license for free (as in speech) content. Is that what you want? Lutz -- https://emailselfdefense.fsf.org/ -- https://mail.python.org/mailman/listinfo

Re: Float

2016-07-29 Thread Lutz Horn
ot a complex number). It > is the formulaic representation that approximates a real number since computers can't handle handle "real" real numbers which would require infinite precision. Examples are 1.0 3.14159 Lutz [1] https://docs.python.org/3/library/functions.html#float [2] htt

Re: ImportError: Import by filename is not supported when unpickleing

2016-07-28 Thread Lutz Horn
, it makes the process much easier to debug. I think that is a very good idea. JSON is the universal format today and mapping to and from Python is very easy. Lutz -- https://www.lhorn.de/ https://emailselfdefense.fsf.org/de/ -- https://mail.python.org/mailman/listinfo/python-list

Re: Can Python learn from Perl? Perl 5 can now run Perl 6 code

2016-07-28 Thread Lutz Horn
code. Should Python do something similar? At least for Python 2/3 code? Do you mean something like #!/usr/bin/env python2.7 # here comes Python 3 code should be run using python3, if installed? Why not just put the python3 executable into the hashbang line? Lutz -- https://www.lhorn.de

RE: Question about official API

2016-02-05 Thread Lutz Horn
Hi, > What is the rule for knowing if something is part of the official API? Look into https://docs.python.org/3/library/ Lutz -- https://mail.python.org/mailman/listinfo/python-list

RE: eval( 'import math' )

2016-02-04 Thread Lutz Horn
Hi, >I just discovered that <eval()> function does not necessarily take the >string input and transfer it to a command to execute. Can you please show us the code you try to execute and tells what result you expect? Lutz

PyMailGUI: now with SSL and Gmail support

2015-12-16 Thread Mark Lutz
http://learning-python.com/pymailgui/Readme-PyMailGUI.html > Code: > http://learning-python.com/pymailgui/ > Fetch: > http://learning-python.com/downloads/ Cheers again, --M. Lutz, http://learning-python.com -- https://mail.python.org/mailman/listinfo/python-announce-list

PyMailGUI standalone release

2015-12-11 Thread Mark Lutz
-python.com/downloads/ Cheers, --M. Lutz, http://learning-python.com -- https://mail.python.org/mailman/listinfo/python-announce-list Support the Python Software Foundation: http://www.python.org/psf/donations/

frigcal 1.6: PNGs sans Pillow, Tk colors, Linux

2015-10-07 Thread Mark Lutz
/000-latest-composite.png Version 1.6 changes: http://learning-python.com/frigcal/Readme-frigcal.html#s7 All the docs: http://learning-python.com/frigcal/Readme-frigcal.html --M. Lutz (http://www.rmi.net/~lutz | http://learning-python.com) -- https://mail.python.org/mailman/listinfo/python

mergeall 2.2, with os.scandir() speed optimization

2015-09-26 Thread Mark Lutz
/examples/Screenshots/main-quit-help.png Download the package: http://learning-python.com/downloads/mergeall.zip Cheers, --M. Lutz (http://www.rmi.net/~lutz | http://learning-python.com) -- https://mail.python.org/mailman/listinfo/python-announce-list Support the Python Software

Updated: frigcal - A Refrigerator-Style Desktop GUI Calendar

2015-03-23 Thread Mark Lutz
content: http://learning-python.com/frigcal Latest changes: http://learning-python.com/frigcal/Readme-frigcal.html#release15 There's also a new package index at http://learning-python.com/downloads. Cheers, --M. Lutz (http://www.rmi.net/~lutz | http://learning-python.com) -- https

Updated: mergeall - Folder Synchronization for Manual Clouds

2015-03-23 Thread Mark Lutz
Unzipped content: http://learning-python.com/mergeall Latest changes: http://learning-python.com/mergeall/Readme.html#version20 There's also a new package index at http://learning-python.com/downloads. Cheers, --M. Lutz (http://www.rmi.net/~lutz | http://learning-python.com) -- https

frigcal 1.4: updated desktop GUI calendar

2015-02-11 Thread Mark Lutz
package here: http://learning-python.com/README-frigcal.html http://learning-python.com/frigcal.zip See the former's Overview for pointers on upgrading releases. Cheers, --M. Lutz (http://www.rmi.net/~lutz, http://learning-python.com) -- https://mail.python.org/mailman/listinfo/python

frigcal 1.3: updated calendar desktop GUI

2014-12-19 Thread Mark Lutz
/02-win7-clones-and-images.png (1.3) http://learning-python.com/screenshots/v1.3-0-select-list.png (all) http://learning-python.com/screenshots Original announcement: https://mail.python.org/pipermail/python-announce-list/2014-September/010456.html Cheers, --M. Lutz (http

A pair of desktop utilities: calendar, folder merge

2014-09-29 Thread Mark Lutz
an account log-in. 2) mergeall -- do-it-yourself cloud storage, script + GUI Documentation: http://www.rmi.net/~lutz/mergeall.html Download: http://www.rmi.net/~lutz/mergeall.zip Screenshots: http

Re: Python IM server

2014-03-31 Thread Lutz Horn
Hi, I want to develop a instant message server, simply has user and group entity. Is there any better existing open-source one? Take a look at XMPP[0]. There are some Python libraries[1]. [0] https://en.wikipedia.org/wiki/XMPP [1] http://xmpp.org/xmpp-software/libraries/ -- Opt out of

Re: Loop Question

2013-06-25 Thread Lutz Horn
Hi, Am 24.06.2013 14:12 schrieb christheco...@gmail.com: username=raw_input(Please enter your username: ) password=raw_input(Please enter your password: ) if username == john doe and password == fopwpo: print Login Successful else: print Please try again while not username or not

Re: List problem

2012-12-02 Thread Lutz Horn
'), ('spokesperson', 'NN'), ('Group', 'NNP'), ('Capt', 'NNP'), ('T', 'NNP'), ('K', 'NNP'), ('Singha', 'NNP'), ('said', 'VBD'), ('here', 'RB')] Now, as we see it has multiple VBD elements. I want to recognize,count and index them all. len([x for x in l if x[1] == 'VBD']) Lutz -- This email

Re: trying to create simple py script

2012-08-10 Thread Lutz Horn
HTTP Post request.' run(host='localhost', port=8080) Lutz -- http://mail.python.org/mailman/listinfo/python-list

Re: how to get my character?

2012-01-26 Thread Lutz Horn
Hi, On Thu, 26 Jan 2012 20:52:48 +0800, contro opinion wrote: how can i get 你好 from 'xc4xe3xbaxc3' ? Please share any results you get from http://stackoverflow.com/questions/9018303/how-to-get-my-character with python-list. Lutz -- http://mail.python.org/mailman/listinfo/python-list

Re: Geodetic functions library GeoDLL 32 Bit and 64 Bit

2011-07-20 Thread Lutz Horn
Hi, do you think this is the right place to advertise proprietary and commercial software? Lutz -- http://mail.python.org/mailman/listinfo/python-list

Programming Python 4th Edition released

2011-01-11 Thread lutz
this page: http://www.rmi.net/~lutz/about-pp4e.html Cheers, --Mark Lutz (http://learning-python.com, http://rmi.net/~lutz) -- http://mail.python.org/mailman/listinfo/python-announce-list Support the Python Software Foundation: http://www.python.org/psf/donations/

upcoming Python training in Florida, April 27-29

2010-04-14 Thread Mark Lutz
instructions, please visit the class web page: http://learning-python.com/2010-public-classes.html If you are unable to attend in April, our next Sarasota class is already scheduled for July 13-15. Thanks, and we hope to see you at a Python class in Florida soon. --Mark Lutz (lutz @ learning

upcoming Python training in Florida, April 27-29

2010-04-06 Thread Mark Lutz
instructions, please visit the class web page: http://learning-python.com/2010-public-classes.html If you are unable to attend in April, our next Sarasota class is already scheduled for July 13-15. Thanks, and we hope to see you at a Python class in Florida soon. --Mark Lutz (lutz at learning

Python training in Florida, April 27-29

2010-03-02 Thread Mark Lutz
in sunny and warm Florida soon. --Mark Lutz at learning-python.com -- http://mail.python.org/mailman/listinfo/python-list

Re: reading from pipe

2010-01-25 Thread Lutz Horn
Hi, Richard Lamboj schrieb: is there any solution to catch if a pipe has closed? Maybe the signal modul? Since sys.stdin is a file object, you can use sys.stdin.closed to check if it has been closed. Lutz -- http://mail.python.org/mailman/listinfo/python-list

Python training in Florida, January 19-21

2009-12-16 Thread Mark Lutz
visit the class web page: http://home.earthlink.net/~python-training/2010-public-classes.html If you are unable to attend in January, our next Sarasota class is already scheduled for April 6-8. Thanks, and we hope to see you at a Python class in sunny and warm Florida soon. --Mark Lutz at Python

Re: whitespace in xml output

2009-12-08 Thread Lutz Horn
Hi, wadi wadi wadie...@gmail.com wrote: I am creating some xml output using minidom and saving it to a file using doc.writexml() Could you please add some code of *how* you add the content bill catman to the Author element? It seems as if whitespace is an issue here. Lutz -- http

Re: How to print zero-padded floating point numbers in python 2.6.1

2009-11-04 Thread Lutz Horn
Lorenzo Di Gregorio schrieb: print '%2.2F' % 3.5 3.50 print '%02.2F' % 3.5 3.50 How can I get print (in a simple way) to print 03.50? print '%05.2F' % 3.5 Lutz -- http://mail.python.org/mailman/listinfo/python-list

Re: How to test urllib|urllib2-using code?

2009-11-04 Thread Lutz Horn
Hi, kj wrote: I want to write some tests for code that uses both urllib and urllib2. Take a look at the discussion under the title How can one mock/stub python module like urllib at stackoverflow: http://stackoverflow.com/questions/295438/how-can-one-mock-stub-python-module-like-urllib Lutz

New books: Learning Python, Python Pocket Reference 4th Eds

2009-09-26 Thread lutz
, managed attributes, decorators, and metaclasses. For a more detailed description of the changes in the new Learning Python, please see the early draft Preface excerpt: http://www.rmi.net/~lutz/lp4e-preface-preview.html For more details on both books, see O'Reilly's web pages: http://oreilly.com

New books: Learning Python, Python Pocket Reference 4th Eds

2009-09-25 Thread Mark Lutz
, managed attributes, decorators, and metaclasses. For a more detailed description of the changes in the new Learning Python, please see the early draft Preface excerpt: http://www.rmi.net/~lutz/lp4e-preface-preview.html For more details on both books, see O'Reilly's web pages: http://oreilly.com

Florida Python training in October

2009-08-10 Thread lutz
We're pleased to announce a new venue for our Python classes. Python author and trainer Mark Lutz will be teaching a 3-day Python class on October 20-22, in Sarasota, Florida. Come spend 3 days mastering Python, and enjoy all that Florida and its Gulf Coast have to offer while you're here

Florida Python training in October

2009-08-10 Thread Mark Lutz
We're pleased to announce a new venue for our Python classes. Python author and trainer Mark Lutz will be teaching a 3-day Python class on October 20-22, in Sarasota, Florida. Come spend 3 days mastering Python, and enjoy all that Florida and its Gulf Coast have to offer while you're here

Re: gett error message: TypeError: 'int' object is not callable

2009-07-09 Thread Lutz Horn
Hi, Nick schrieb: I've seen a lot of posts on this problem, but none seems to help. Could you please post a sample input file and the exact error message? Thanks Lutz -- Strike Out ⇒ http://www.fourmilab.ch/documents/strikeout -- http://mail.python.org/mailman/listinfo/python-list

Re: Python training in Colorado, January 27-30

2009-01-05 Thread lutz
Yes, my public classes are held only in Colorado today. Most students travel from out-of-town to attend. Per my web page, my classes may be available in a different location later this year (Florida is a strong possibility), but not in Tulsa, unfortunately. Thanks, --Mark Lutz -Original

Python training in Colorado, January 27-30

2009-01-04 Thread Mark Lutz
Python author and trainer Mark Lutz will be teaching a 4-day Python class on January 27-30, in Longmont, Colorado. This is a public training session open to individual enrollments, and covers the same topics and hands-on lab work as the onsite sessions that Mark teaches. The class provides

2009 Python class schedule

2008-11-06 Thread Mark Lutz
. They provide in-depth and hands-on introductions to Python and its common applications, and are based upon the instructor's popular Python books. Thanks for your interest, --Mark Lutz at Python Training -- http://mail.python.org/mailman/listinfo/python-list

Python training in Colorado, October 15-17

2008-09-09 Thread Mark Lutz
Python author and trainer Mark Lutz will be teaching another 3-day Python class at a conference center in Longmont, Colorado, on October 15-17, 2008. This is a public training session open to individual enrollments, and covers the same topics as the 3-day onsite sessions that Mark teaches

Re: computing with characters

2008-04-30 Thread Lutz Horn
' Lutz -- Do you want a Google Mail invitation? Just write me an email! -- http://mail.python.org/mailman/listinfo/python-list

Re: sed to python: replace Q

2008-04-30 Thread Lutz Horn
re.sub('].*$', '', re.sub('^.*\[', '', line, 1)) 'ip' Lutz -- http://mail.python.org/mailman/listinfo/python-list

Re: Problem with variables assigned to variables???

2008-04-30 Thread Lutz Horn
field_a LIKE '041' name1 field_a LIKE '021' Lutz -- Do you want a Google Mail invitation? Just write me an email! -- http://mail.python.org/mailman/listinfo/python-list

Colorado Python training in May

2008-03-18 Thread lutz
Python author and trainer Mark Lutz will be teaching another 3-day Python class at a conference center in Longmont, Colorado, on May 14-16, 2008. This is a public training session open to individual enrollments, and covers the same topics as the 3-day onsite sessions that Mark teaches

Colorado Python training in May

2008-03-18 Thread Mark Lutz
Python author and trainer Mark Lutz will be teaching another 3-day Python class at a conference center in Longmont, Colorado, on May 14-16, 2008. This is a public training session open to individual enrollments, and covers the same topics as the 3-day onsite sessions that Mark teaches, with hands

Re: plz help how to print python variable using os.system()

2008-01-16 Thread Lutz Horn
Hi, On Wed, 16 Jan 2008 05:29:08 -0800 (PST), [EMAIL PROTECTED] said: var = /home/anonymous os.system(echo $var) os.system(echo %s % var) Lutz -- GnuPG Key: 1024D/6EBDA359 1999-09-20 Key fingerprint = 438D 31FC 9300 CED0 1CDE A19D CD0F 9CA2 6EBD A359 http://dev

Re: Python help for a C++ programmer

2008-01-16 Thread Lutz Horn
= Response(input.name, input.age, input.iData, input.sData) reponses.append(response) Lutz -- GnuPG Key: 1024D/6EBDA359 1999-09-20 Key fingerprint = 438D 31FC 9300 CED0 1CDE A19D CD0F 9CA2 6EBD A359 http://dev-random.dnsalias.net/0x6EBDA35.asc http://pgp.cs.uu.nl/stats

Loading an exe icon into a pixmap/bitmap

2007-12-11 Thread ob . lutz
I've been searching for a way to load an icon from an executable into something that I can eventually display either through pygame or pygtk. I've tried the stuff found at

ANN: Learning Python 3rd Edition

2007-10-29 Thread lutz
recent Python training sessions. For more details, see O'Reilly's web page: http://www.oreilly.com/catalog/9780596513986/ O'Reilly also has a press release about the book here: http://press.oreilly.com/pub/pr/1843 Thanks, --Mark Lutz -- http://mail.python.org/mailman/listinfo/python-announce

ANN: Learning Python 3rd Edition

2007-10-29 Thread Mark Lutz
recent Python training sessions. For more details, see O'Reilly's web page: http://www.oreilly.com/catalog/9780596513986/ O'Reilly also has a press release about the book here: http://press.oreilly.com/pub/pr/1843 Thanks, --Mark Lutz -- http://mail.python.org/mailman/listinfo/python-list

Colorado Python training in October

2007-09-03 Thread lutz
Python author and trainer Mark Lutz will be teaching another 3-day Python class at a conference center in Longmont, Colorado, on October 23-25, 2007. This is a public training session open to individual enrollments, and covers the same topics as the 3-day onsite sessions that Mark teaches

Colorado Python training in October

2007-09-03 Thread Mark Lutz
Python author and trainer Mark Lutz will be teaching another 3-day Python class at a conference center in Longmont, Colorado, on October 23-25, 2007. This is a public training session open to individual enrollments, and covers the same topics as the 3-day onsite sessions that Mark teaches

Re: CSV Issues

2007-07-19 Thread Lutz Horn
(rows) f.close() Regards Lutz -- http://mail.python.org/mailman/listinfo/python-list

Re: class C: vs class C(object):

2007-07-19 Thread Lutz Horn
and preferred style is class C(object): ... Regards Lutz -- Using Opera's revolutionary e-mail client: http://www.opera.com/mail/ -- http://mail.python.org/mailman/listinfo/python-list

Python training in Colorado, June 2007

2007-04-19 Thread Mark Lutz
Python author and trainer Mark Lutz will be teaching another 3-day Python class at a conference center in Longmont, Colorado, on June 11-13, 2007. This is a public training session open to individual enrollments, and covers the same topics as the 3-day onsite sessions that Mark teaches

logging

2006-12-14 Thread Lutz Steinborn
Hello, I need to log each and only this loglevel to a different file. So for example all INFO to info.log and all ERROR to error.log. And I need a master logfile with all messages. How can I do this ? Any example ? Kindly regards Lutz http://www.4c-wohnen.de http://www.4c-parfum.de -- http

Python training in Colorado, January 2007

2006-12-13 Thread lutz
Python author and trainer Mark Lutz will be teaching another 3-day Python class at a conference center in Longmont, Colorado, on January 23-25, 2007. This is a public training session open to individual enrollments, and covers the same topics as the 3-day onsite sessions that Mark teaches

Python training in Colorado, January 2007

2006-12-13 Thread Mark Lutz
Python author and trainer Mark Lutz will be teaching another 3-day Python class at a conference center in Longmont, Colorado, on January 23-25, 2007. This is a public training session open to individual enrollments, and covers the same topics as the 3-day onsite sessions that Mark teaches

Mark Lutz Python interview

2006-09-30 Thread lutz
Python author and trainer Mark Lutz will be interviewed on the radio show Tech Talk this Sunday, October 1st, at 6PM Eastern time. He'll be answering questions about Python, his books, and his Python training services. For more details about the show, see Tech Talk's website at http

Re: Mark Lutz Python interview

2006-09-30 Thread Mark Lutz
Fuzzyman wrote: Mark Lutz wrote: Python author and trainer Mark Lutz will be interviewed on the radio show Tech Talk this Sunday, October 1st, at 6PM Eastern time. He'll be answering questions about Python, his books, and his Python training services. Does he always talk

Mark Lutz Python interview

2006-09-29 Thread Mark Lutz
Python author and trainer Mark Lutz will be interviewed on the radio show Tech Talk this Sunday, October 1st, at 6PM Eastern time. He'll be answering questions about Python, his books, and his Python training services. For more details about the show, see Tech Talk's website at http

Colorado Python seminar in November

2006-09-14 Thread lutz
topics. Like all our public classes, this seminar will be taught by best-selling Python author and trainer Mark Lutz, and is open to individual enrollments. For more details, please see our web page: http://home.earthlink.net/~python-training/public.html --Python Training Services -- http

Colorado Python seminar in November

2006-09-13 Thread Mark Lutz
our public classes, this seminar will be taught by best-selling Python author and trainer Mark Lutz, and is open to individual enrollments. For more details, please see our web page: http://home.earthlink.net/~python-training/public.html --Python Training Services -- http://mail.python.org

Fall Python training seminar in Colorado

2006-07-19 Thread lutz
, this seminar will be taught by best-selling Python author and trainer Mark Lutz, and is open to individual enrollments. For more details, please see our web page: http://home.earthlink.net/~python-training/public.html Python Training Services -- http://mail.python.org/mailman/listinfo/python

Fall Python training seminar in Colorado

2006-07-18 Thread lutz
, this seminar will be taught by best-selling Python author and trainer Mark Lutz, and is open to individual enrollments. For more details, please see our web page: http://home.earthlink.net/~python-training/public.html Python Training Services -- http://mail.python.org/mailman/listinfo/python

Re: SOAPpy and http authentication

2005-08-02 Thread Lutz Horn
could build the URL als http://user:[EMAIL PROTECTED]/somewebservice. This works with SOAPpy.SOAPProxy. Lutz -- http://mail.python.org/mailman/listinfo/python-list

Re: what is __init__.py used for?

2005-07-05 Thread Lutz Horn
the system1 directory as an importable module. Lutz -- http://mail.python.org/mailman/listinfo/python-list

Re: Simple XML-to-Python conversion

2005-03-17 Thread Lutz Horn
[EMAIL PROTECTED] schrieb: I've been searching high and low for a way to simply convert a small XML configuration file to Python data structures. Take a look at Amara (http://uche.ogbuji.net/tech/4Suite/amara/). Lutz -- pub 1024D/6EBDA359 1999-09-20 Lutz Horn [EMAIL PROTECTED] Key fingerprint

Re: Web framework

2005-03-10 Thread Lutz Horn
Chris [EMAIL PROTECTED] wrote: Does CherryPy require a python installation on the client side? No, it only sends HTML-pages and other media to the client's browser. -- http://mail.python.org/mailman/listinfo/python-list