On 29/06/06, Kent Johnson <[EMAIL PROTECTED]> wrote:
> See shutil.copyfile()
Why isn't this function in the os module with the other file commands?
--
John.
___
Tutor maillist - Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor
> From: Magnus Wirström <[EMAIL PROTECTED]>
>
> Hi everyone.
>
> I would like to ask what is the best way to get the file size on a large
> file. the operation i'm trying to preform is to copy a large file to
> another drive using python file I/O commands. perhaps there is a better
> solution
On Wed, 28 Jun 2006, Tino Dai wrote:
> Ok, I think I'm going to back up and explain what I'm am heading towards.
> I'm working on an app that fire off a bunch of threads. Each one of these
> threads in connected via queues to another thread in a sequence like a
> chain. And how I tell the next sta
On Thu, 29 Jun 2006, [ISO-8859-1] Magnus Wirstr?m wrote:
> I would like to ask what is the best way to get the file size on a large
> file.
filesize = os.stat(filename).st_size
___
Tutor maillist - Tutor@python.org
http://mail.python.org/mailman/l
Hi everyone.
I would like to ask what is the best way to get the file size on a large
file. the operation i'm trying to preform is to copy a large file to
another drive using python file I/O commands. perhaps there is a better
solution or a module that is doing this more easy?
Thanks
Magnus Wi
Perhaps this?
stat = os.stat(self.file_name)
file_size = stat[6]
Thank you,
Andrew Robert
___
Tutor maillist - Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor
On 6/27/06, Kent Johnson <[EMAIL PROTECTED]> wrote:
Tino Dai wrote:> How I have it now:>> semaA = threading.semaphore()>> class nameA:>def __init__(self):> >>def run(self):
> > semaA.release()>> class nameB:>def __init__(
Then where you create instances of those classes:sema = threading.semaphore()
a = nameA(sema)b = nameB(sema)Maybe you don't even need the semaphore at all: have a look atQueue.Queue, it might do exactly what you need.Ok, I think I'm going to back up and explain what I'm am heading towards. I'm work
Tino Dai schreef:
> How I have it now:
>
> semaA = threading.semaphore()
>
> class nameA:
>def __init__(self):
>
>
>def run(self):
>
> semaA.release()
>
> class nameB:
>def __init__(self):
>
>
>def run(self):
> semaA.acqui
On Tue, Jun 27, 2006 at 03:27:47PM -0700, Matthew White wrote:
> Hi Magnus,
>
> I would check out the python tarfile module:
>
> http://docs.python.org/lib/module-tarfile.html
>
> Looks like it will compress with bzip too!
Also look at the following:
- http://docs.python.org/lib/module-zipfile
On Wed, Jun 28, 2006 at 04:35:15PM +0200, michel maho wrote:
> To all,
> Can somebody tell me from where to download NumPy easely.
> Thank you
> Michel Maho
Well, you probably want SciPy, which is the latest in scientific
programming for Python. It's here: http://scipy.org/
There is also a NumPy
To all,
Can somebody tell me from where to download NumPy
easely.
Thank you
Michel Maho
___
Tutor maillist - Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor
hello, I'm having some trouble with treelistctrl in wx python and I was wondering if there is someone who would share their code as an example. thanks!Jeff
Do you Yahoo!? Everyone is raving about the all-new Yahoo! Mail Beta.___
Tutor maillist
Øyvind wrote:
> And, does anyone know of some great sites where I can learn more about
> threads? I have found a lot, but they are not basic enough. I have no idea
> what a 'lock' is, as most all sites assumes one should. So, the simpler
> the better...
"The Little Book of Semaphores" is a good in
Hello.
I am trying to learn threading, and found a good example at:
http://effbot.org/librarybook/queue.htm (Using the Queue module with a
maximum size).
It works like a dream as is. But, I added it to a downloading-script I
have made before. The difference is that in my version it has a
wxPython
15 matches
Mail list logo