Re: Using Python To Create An Encrypted Container

2006-04-16 Thread Michael Sperlle
On Sun, 16 Apr 2006 08:11:12 -0700, Paul Rubin wrote: > Michael Sperlle <[EMAIL PROTECTED]> writes: >> If I could create a large file that could be encrypted, and maybe add >> files to it by appending them and putting in some kind of delimiter >> between files,

Using Python To Create An Encrypted Container

2006-04-16 Thread Michael Sperlle
Is it possible? Bestcrypt can supposedly be set up on linux, but it seems to need changes to the kernel before it can be installed, and I have no intention of going through whatever hell that would cause. If I could create a large file that could be encrypted, and maybe add files to it by appendin

Re: how to comment lot of lines in python

2006-04-04 Thread Michael Sperlle
What's wrong with using three sets of double-quotes? I do it with kwrite and it works like a charm. -- http://mail.python.org/mailman/listinfo/python-list

Menu For The Command Line?

2006-03-26 Thread Michael Sperlle
When I bring up the command line interface, it looks like: [EMAIL PROTECTED] Then I type in some command, and it works! But there are lots of commands to type in, and I find it more and more difficult to remember them. Is there any way to build a menu of frequently-used commands, so that when I

Re: How do I handle #

2006-03-25 Thread Michael Sperlle
On Sat, 25 Mar 2006 07:06:59 +0100, Fredrik Lundh wrote: > Michael Sperlle wrote: > >> I need to write out a file containing the # comment. When I try to >> specify it as part of a literal, everything afterward turns into a >> comment. > > "turns into a

How do I handle #

2006-03-24 Thread Michael Sperlle
I need to write out a file containing the # comment. When I try to specify it as part of a literal, everything afterward turns into a comment. I finally created a file containing the #, read it in, and used the resulting variable as part of the string I created. But that is so kludgy, even a newb