Re: File transfer with python

2010-01-08 Thread Kamill Sokol
On Jan 6, 7:00 pm, Valentin de Pablo Fouce wrote: > Hi there, > > My intention is to transfer files from one > computer to another. > Hi Valentin, take a look at dropbox! Clients are available for mac, linux and windows. Up and running in just 2 minutes. http://dropbox.com Regards Kamill -- h

pypi package dates

2008-12-13 Thread sokol
Am I missing something? There are no release dates for packages in pypi. One cannot have an idea how current the package is... -- http://mail.python.org/mailman/listinfo/python-list

Re: better scheduler with correct sleep times

2008-10-23 Thread sokol
On Oct 22, 2:28 am, greg <[EMAIL PROTECTED]> wrote: > sokol wrote: > > Also, the > > scheduler runs inside a loop. How do you suppose to > > run other code while the loop is executing? > > The sleep function could be doing a select with a > timeout on so

Re: better scheduler with correct sleep times

2008-10-21 Thread sokol
On Oct 21, 2:19 am, greg <[EMAIL PROTECTED]> wrote: > sokol wrote: > > What was a surprise to me was that python sched.py makes the same > > mistake as I did in my first version. > > The sched module is *not* designed for multithreading. It > assumes that the thread

Re: better scheduler with correct sleep times

2008-10-20 Thread sokol
On Oct 20, 1:50 pm, Lie <[EMAIL PROTECTED]> wrote: > On Oct 19, 4:01 am, sokol <[EMAIL PROTECTED]> wrote: > > > > I started googling for scheduler and found one in standard library > > > > but ih has the same code as mine (it calls the  functions in the >

Re: better scheduler with correct sleep times

2008-10-19 Thread sokol
On Oct 19, 6:25 pm, Scott David Daniels <[EMAIL PROTECTED]> wrote: > qvx wrote: > > I need a scheduler which can delay execution of a > > function for certain period of time. > > My attempt was something like this:  ... <<>> > > Is there a better way or some library that does that? > > The trick is

Re: better scheduler with correct sleep times

2008-10-19 Thread sokol
> from circuits.core import Manager, Component, Event, listener > from circuits.timers import Timer what is circuits? -- http://mail.python.org/mailman/listinfo/python-list

Re: better scheduler with correct sleep times

2008-10-18 Thread sokol
> > I started googling for scheduler and found one in standard library > > but ih has the same code as mine (it calls the  functions in the > > right order and my doesn't, but it still waits too long). > > The other schedulers from web are dealing with > > repeating tasks and such. > > > I believe