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
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
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
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
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
>
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
> from circuits.core import Manager, Component, Event, listener
> from circuits.timers import Timer
what is circuits?
--
http://mail.python.org/mailman/listinfo/python-list
> > 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