Re: [Tutor] encrypt a file in Python3

2012-11-10 Thread eryksun
On Sat, Nov 10, 2012 at 12:54 AM, ke...@kendy.org wrote: I want to encrypt a file, then decrypt it. I prefer to do it without adding any packages. $ uname -a Linux laptop 3.2.0-32-generic-pae #51-Ubuntu SMP You'll either need to install the package python3-crypto or compile it yourself.

Re: [Tutor] Python books

2012-11-10 Thread Alan Gauld
On 10/11/12 01:18, Ed Owens wrote: Please start new threads with a fresh mail. On threaded readers this gets lost under a previous topic called Question... Dawson, which is too plodding. Can you experts recommend a Python library? I would like to have: A command reference for the basic

Re: [Tutor] Python books

2012-11-10 Thread Lowell Tackett
The Head First... series of books (O'Reilly Press) adopts a wonderful, intuitive work-along format; of particular interest [to you] would be Head First Python by Paul Barry. From the virtual desk of Lowell Tackett  From: Ed Owens eowens0...@gmx.com To:

Re: [Tutor] Python books

2012-11-10 Thread lzantal
Hi, On Nov 9, 2012, at 11:13 PM, wesley chun wes...@gmail.com wrote: there is no one single book that has all you're seeking, however you can probably find one or two that may suit your fancy in these Python reading lists that i made earlier this year: http://goo.gl/i4u0R note that the

Re: [Tutor] encrypt a file in Python3

2012-11-10 Thread kendy
Thank you Mark and eryksun! You've put me back on the road to success! I'll start saving up for your bill. :-) Ken ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: http://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] encrypt a file in Python3

2012-11-10 Thread Mark Lawrence
On 10/11/2012 19:23, ke...@kendy.org wrote: Thank you Mark and eryksun! You've put me back on the road to success! I'll start saving up for your bill. :-) Ken ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options:

[Tutor] Python Project

2012-11-10 Thread darren swinson
Hello Tutor, My name is darren and I'm new to this python subject but I'm a quick and persistent learner. I'm trying to do a presentation with rst2Reveal using html5 and to tell you the truth it's not that simple. So far I wrote the rst file and there is a rst2Reveal webpage with all the

Re: [Tutor] Python Project

2012-11-10 Thread Alan Gauld
On 11/11/12 01:24, darren swinson wrote: My name is darren and I'm new to this python subject but I'm a quick and persistent learner. Wekcome to the list, however... I'm trying to do a presentation with rst2Reveal using html5 Ok, I have no idea what that means. Its not standard Python so

[Tutor] Parsing a multi-line/record text file

2012-11-10 Thread Marc
Hello, I am trying to parse a text file with a structure that looks like: [record: Some text about the record] Attribute 1 = Attribute 1 text Attribute 3 = Attribute 3 text Attribute 4 = Attribute 4 text Attribute 7 = Attribute 7 text [record: Some text about the

Re: [Tutor] Parsing a multi-line/record text file

2012-11-10 Thread Dave Angel
On 11/11/2012 12:01 AM, Marc wrote: Hello, I am trying to parse a text file with a structure that looks like: [record: Some text about the record] So the record delimiter starts with a left bracket, in first column? And all lines within the record are indented? Use this fact.