/manylinux/tree/manylinux2010_x86_64_centos6_no_vsyscall>
image used to build widely compatible Linux wheels is based on CentOS 6.
(Don’t worry, we do have newer manylinux* variants, see PEP 599
<https://peps.python.org/pep-0599/> and PEP 600
<https://peps.python.org/pep-0600/> for details
After two weeks of hard work by our program workgroup, we are very
excited to announce the EuroPython 2021 schedule:
* EuroPython 2021 Schedule *
https://ep2021.europython.eu/schedule/
Seven full days of Python
-
EuroPython 2021 will
We are very excited to announce the first version of our EuroPython
2020 schedule:
* EuroPython 2020 Schedule *
https://ep2020.europython.eu/schedule/
More sessions than we ever dreamed of
-
After the 2nd CFP, we found
We are pleased to announce the EuroPython 2019 schedule. We will again
have more than 130 sessions in total, held by more than 130 speakers.
Schedule for EuroPython 2019
* https://ep2019.europython.eu/events/schedule/ *
Please note that the schedule may still
Over the last few weeks, our program WG has been working hard on
getting the schedule all lined up. Today, we’re releasing it to the
Python world.
Schedule for EuroPython 2018
* https://ep2018.europython.eu/en/events/schedule/ *
With 140 speakers and more than 150
We are happy to announce the schedule for EuroPython 2017 in Rimini,
Italy (July 9-16). The program WG has been working hard trying to fit
all the sessions in the last few weeks.
With over 200 sessions, over 180 speakers, one day for workshops, 5
days of talks, training, keynotes, lightning talks
We are happy to announce the schedule for EuroPython 2016 in
Bilbao. The program WG has been working hard trying to fit all the
sessions in the last few weeks.
With over 180 sessions, over 150 speakers, one day for workshops, 5
days of talks, training, keynotes, lightning talks and open spaces
collaborate in Brussels (Belgium). The event is free, no registration
necessary.
More details at these addresses:
* About FOSDEM : https://fosdem.org/2016/
* About Schedule of PythonFOSDEM: https://fosdem.org/2016/schedule/track/python/
See you there,
Stephane
--
Stéphane Wirtel - http
We are pleased to announce the official guidebook for the EuroPython 2015
conference:
*** https://ep2015.europython.eu/en/events/mobile-schedule/ ***
We will regularly issue updates to the guidebook when there are changes in
schedule.
Available for all platforms
We are happy to announce the schedule for EuroPython 2015 in Bilbao.
With over 200 sessions, over 180 speakers, 5 days of talks, trainings,
keynotes, lightning talks and open spaces, followed by 2 days of
sprints, EuroPython will be one of the most exciting and vibrant
Python events this year
Dear Python Community,
Because the FOSDEM will start at 10:30 AM on Saturday 31st January, the
first talk will be at 10:30 AM.
Thus all the talks will be ajusted. The Schedule on the site of FOSDEM
and on the PythonFOSDEM site have been updated.
https://fosdem.org/2015/schedule/track
some 'human
actions' inside the network to do some benchmarks and test internal
stuffs. This need to be 'flexible'.
Tkinter's .after method makes it trivial to schedule and run a function
at either regular or haphazardly variable intervals and add the result
to a gui disp
On Thu Dec 18 2014 at 11:35:11 PM Chris Angelico wrote:
Why does this matter to you? Why am I getting the feeling that I
should not be helping you?
Because that's what my project is all about, I need to fake some 'human
actions' inside the network to do some benchmarks and test internal stuffs.
T
On Fri, Dec 19, 2014 at 9:13 AM, Juan Christian
wrote:
> Let's say I execute the script now, then in 5~10 min I'll execute again,
> this time can be 5, 6, ... 10 minutes, this script pretends to do 'human
> actions' so I can't be doing these 'actions' with a specific and rigid
> times.
Why does t
On Thu Dec 18 2014 at 2:24:46 PM Ian Kelly wrote:
What kind of random distribution of the time between executions are you
looking for? A random sleep lends itself easily to a uniform distribution.
The latter approach that you describe would result in a geometric
distribution.
I'm looking for a ra
Thanks, using cron here.
--
https://mail.python.org/mailman/listinfo/python-list
On Wednesday, December 17, 2014 11:11:11 AM UTC-8, Juan Christian wrote:
> I know about the schedule modules and such but they work in situations like
> 'run this in a X hours/minutes/seconds interval', I already have my code in a
> while loop with sleep (it's a b
On 12/17/2014 01:42 PM, Juan Christian wrote:
> On Wed Dec 17 2014 at 6:25:39 PM John Gordon wrote:
> If you want to solve your problem entirely within Python, look at the
> "scheduler" module. (Although even this isn't a complete solution, as you
> still have to make sure the program is running i
On Thu, Dec 18, 2014 at 5:37 AM, Juan Christian
wrote:
> I read the cron doc, it's really simple to use, but one think I didn't
see out-of-the-box is a way to set a random time, like 'execute this in a
5~10 min interval', I can only set specific times like 'execute this each
minute, each hour, eac
On Wed Dec 17 2014 at 11:04:16 PM Juan Christian
wrote:
Thanks. That was a great answer. I'll redo my code. It's running and will
only run in my Docker container (Ubuntu Server 14.04.1) so I'll use cron.
Indeed, currently I'm using something like that:
while True:
if 9 < datetime.now().hour < 24
On Wed Dec 17 2014 at 9:40:52 PM Steven D'Aprano <
steve+comp.lang.pyt...@pearwood.info> wrote:
> Juan Christian wrote:
>
> > I know about the schedule modules and such but they work in situations
> > like 'run this in a X hours/minutes/seconds interval'
Juan Christian wrote:
> I know about the schedule modules and such but they work in situations
> like 'run this in a X hours/minutes/seconds interval', I already have my
> code in a while loop with sleep (it's a bit ugly, I'l change to a
> scheduler soon).
[...]
Hi Juan,
I don't know what platform you're on, but you've got several options.
Mac: setup a launchd job, I use http://www.soma-zone.com/LaunchControl/ to do
the setups
Linux/unix: setup a cron job, depending on your distro launchd may also be an
option.
Windows: setup a scheduled job in
On Wed Dec 17 2014 at 7:35:10 PM Chris Angelico wrote:
time.time() % 86400
That's number of seconds since midnight UTC, ranging from 0 up to
86399. (I've no idea what 64562 would mean. That's an awfully big
number for a single day.) If you offset that before calculating, you
can get that in
On Thu, Dec 18, 2014 at 7:42 AM, Juan Christian
wrote:
> Is there any kind of time calculation in Python that counts the time like 0,
> 1, 2, 3... so that 0AM would be 0, and 11:59PM would be let's say
> '64562'? And everyday it gets a reset when the clock 'turns'?
time.time() % 86400
That's
On Wed Dec 17 2014 at 6:25:39 PM John Gordon wrote:
If you want to solve your problem entirely within Python, look at the
"scheduler" module. (Although even this isn't a complete solution, as you
still have to make sure the program is running in the first place...)
My script is running fine, Win
In Juan Christian
writes:
> The standard system "kill" command would probably work for this purpose,
> assuming you have access to your main program's process ID.
> There isn't any 'prettier' way? Such as a built-in or third-party module
> for something common like that?
If you're on Unix, 'k
Ops, sorry.
It's: 9:00 AM ~ 11:59 PM -> Running
... and not 9:00 AM ~ 11:50 PM -> Running
--
https://mail.python.org/mailman/listinfo/python-list
On Wed Dec 17 2014 at 5:45:31 PM John Gordon wrote:
You could write a separate program whose only job is to send a STOP or
CONTINUE signal to your main program, and then run that program from a
scheduler.
The standard system "kill" command would probably work for this purpose,
assuming you have a
In Juan Christian
writes:
> --047d7b874b2c1e67eb050a6e3cc4
> Content-Type: text/plain; charset=UTF-8
> I know about the schedule modules and such but they work in situations like
> 'run this in a X hours/minutes/seconds interval', I already have my code in
> a whil
I know about the schedule modules and such but they work in situations like
'run this in a X hours/minutes/seconds interval', I already have my code in
a while loop with sleep (it's a bit ugly, I'l change to a scheduler soon).
What I really want is, for example:
24/7/365
9:
On 12/06/2013 06:07 PM, Chris Angelico wrote:
On Sat, Dec 7, 2013 at 1:00 PM, Mark Lawrence wrote:
On 07/12/2013 01:54, Chris Angelico wrote:
On Sat, Dec 7, 2013 at 12:48 PM, Mark Lawrence
wrote:
Sorry but I don't get it :)
[explained the joke]
Clearly that went straight over your head.
On Sat, Dec 7, 2013 at 1:00 PM, Mark Lawrence wrote:
> On 07/12/2013 01:54, Chris Angelico wrote:
>>
>> On Sat, Dec 7, 2013 at 12:48 PM, Mark Lawrence
>> wrote:
>>> Sorry but I don't get it :)
>>
>> [explained the joke]
>
> Clearly that went straight over your head.
*facepalm* Yep, it did. Compl
On 07/12/2013 01:54, Chris Angelico wrote:
On Sat, Dec 7, 2013 at 12:48 PM, Mark Lawrence wrote:
On 07/12/2013 01:39, Terry Reedy wrote:
On 12/6/2013 4:26 PM, Mark Lawrence wrote:
My apologies if you've seen this before but here is the official
schedule http://www.python.org/dev/pep
On Sat, Dec 7, 2013 at 12:48 PM, Mark Lawrence wrote:
> On 07/12/2013 01:39, Terry Reedy wrote:
>>
>> On 12/6/2013 4:26 PM, Mark Lawrence wrote:
>>>
>>> My apologies if you've seen this before but here is the official
>>> schedule http://www.python
On 07/12/2013 01:39, Terry Reedy wrote:
On 12/6/2013 4:26 PM, Mark Lawrence wrote:
My apologies if you've seen this before but here is the official
schedule http://www.python.org/dev/peps/pep-0404/
The PEP number is not an accident ;-).
Sorry but I don't get it :)
--
My fellow P
On 12/6/2013 4:26 PM, Mark Lawrence wrote:
My apologies if you've seen this before but here is the official
schedule http://www.python.org/dev/peps/pep-0404/
The PEP number is not an accident ;-).
--
Terry Jan Reedy
--
https://mail.python.org/mailman/listinfo/python-list
My apologies if you've seen this before but here is the official
schedule http://www.python.org/dev/peps/pep-0404/
--
My fellow Pythonistas, ask not what our language can do for you, ask
what you can do for our language.
Mark Lawrence
--
https://mail.python.org/mailman/listinfo/python-list
off work, you will still get all the key parts of the conference.
We now have a draft schedule online:
* http://pyconuk.net/Schedule
It includes talks, introductory and intermediate tutorials, sprints,
discussions, socials, the annual Python dinner, and of course the famous
Lightning Talks
Hi Ryan.
Best of luck with the conference.
>Thanks also to Linux Australia, who provide the overarching legal and
>organisational structure for PyCon Australia.
I want to talk to somebody from Linux Australia about this overarching legal
and organisational structure.
Do you have an email addre
On 14/07/2011 00:24, Ryan Kelly wrote:
[snip]
Ah! I see you have the machine that goes "BING"! (Graeme Cross)
Surely it goes "PING"!
--
http://mail.python.org/mailman/listinfo/python-list
Hi Everyone,
The official schedule for PyCon Australia 2011 has been announced!
This year's conference will feature 3 fantastic keynotes, 7
introductory classroom sessions, and 26 presentations on topics as
diverse as web programming, benchmarking, social issues and API design.
PyCon Aust
On 15-03-11 08:16, Virgil Stokes wrote:
Suppose that I have some Python code (vers. 2.6) that has been converted
into an *.exe file and can be executed on a Windows (Vista or 7)
platform. What can one do to have this *.exe executed at a set of
specific times each day? In addition, if a day is mis
e got an .exe, the question isn't really Python-specific
any more. (Even without the .exe it's not really Python-specific...)
Use the Windows Scheduler. You can schedule a program to run at
certain times and on startup. When it fires up, it can check when
it was last run (by writing to a fil
On Tue, Mar 15, 2011 at 3:16 PM, Virgil Stokes wrote:
> Suppose that I have some Python code (vers. 2.6) that has been converted
> into an *.exe file and can be executed on a Windows (Vista or 7) platform.
> What can one do to have this *.exe executed at a set of specific times each
> day? In add
Suppose that I have some Python code (vers. 2.6) that has been converted into an
*.exe file and can be executed on a Windows (Vista or 7) platform. What can one
do to have this *.exe executed at a set of specific times each day? In addition,
if a day is missed (e.g. computer on which it resides
Over 400 attendees are set to meet at the 8th annual Plone Conference
for a week-long programme of training, talks and developer sprints
from the 25th to 31st October at the Thistle Grand Hotel in Bristol,
UK.
Plone Conference 2010 registrations are open.
Plone, an Open Source Content Management
On Thu, 2009-10-22, Al Fansome wrote:
>
>
> Jorgen Grahn wrote:
>> On Fri, 2009-10-16, Jeremy wrote:
>>> On Oct 15, 6:32 pm, MRAB wrote:
TerryP wrote:
> On Oct 15, 7:42 pm, Jeremy wrote:
>> I need to write a Python script that will call some command line
>> programs (using os.sys
Jorgen Grahn wrote:
On Fri, 2009-10-16, Jeremy wrote:
On Oct 15, 6:32 pm, MRAB wrote:
TerryP wrote:
On Oct 15, 7:42 pm, Jeremy wrote:
I need to write a Python script that will call some command line
programs (using os.system). I will have many such calls, but I want
to control when the c
On Fri, 2009-10-16, Jeremy wrote:
> On Oct 15, 6:32 pm, MRAB wrote:
>> TerryP wrote:
>> > On Oct 15, 7:42 pm, Jeremy wrote:
>> >> I need to write a Python script that will call some command line
>> >> programs (using os.system). I will have many such calls, but I want
>> >> to control when the c
On Thu, 2009-10-15, TerryP wrote:
...
> launching external programs, irregardless of language, generally falls
> into 3 major categories:
>
> 0.) blocks until program is done; like system
> 1.) replaces your program with process, never returns; like exec
> 2.) quickly return after asynchronou
running
> > when I only have one or two processors. I want to run one at a time
> > (or two if I have two processors), wait until it's finished, and then
> > call the next one.
>
> > How can I use Python to schedule these commands?
>
> > Thanks,
> >
MRAB wrote:
> You could use multithreading: put the commands into a queue; start the
> same number of worker threads as there are processors; each worker
> thread repeatedly gets a command from the queue and then runs it using
> os.system(); if a worker thread finds that the queue is empty when it
> Again another great suggestion. I was not aware of the
> multiprocessing module, and I'm not (yet) sure if I understand why I
> should use instead of multithreading as explained by a previous post.
http://docs.python.org/library/multiprocessing.html
First paragraph...
--
Thanks,
--Minesh
--
e how long
> > each program will run and I don't want to have 10 programs running
> > when I only have one or two processors. I want to run one at a time
> > (or two if I have two processors), wait until it's finished, and then
> > call the next one.
>
> Right.
s are made. I won't know in advance how long
> >> each program will run and I don't want to have 10 programs running
> >> when I only have one or two processors. I want to run one at a time
> >> (or two if I have two processors), wait until it's finished,
>> How can I use Python to schedule these commands?
> If I were as lucky as you, I would have used multiprocessing module[1]
> (my platform does not have sem_open() syscall). Others suggestions are
> as good as it can be but yeah you could get a lot of work done using
> multipro
>> How can I use Python to schedule these commands?
> If I were as lucky as you, I would have used multiprocessing module[1]
> (my platform does not have sem_open() syscall). Others suggestions are
s/have/implement/g
--
Regards,
Ishwor Gurung
--
http://mail.python.org/mailman/lis
rograms running
> when I only have one or two processors. I want to run one at a time
> (or two if I have two processors), wait until it's finished, and then
> call the next one.
Right.
> How can I use Python to schedule these commands?
If I were as lucky as you, I would have used
;t want to have 10 programs running
when I only have one or two processors. I want to run one at a time
(or two if I have two processors), wait until it's finished, and then
call the next one.
How can I use Python to schedule these commands?
Thanks,
Jeremy
External programs are not system
On Oct 15, 8:52 pm, Jeremy wrote:
> On Oct 15, 2:15 pm, TerryP wrote:
> > If you want simple sequenceal execution of external programs, use a
> > suitable blocking function to execute them (like system) combined with
> > a simple loop over the sequence of commands to run.
>
> This is the solution
in advance how long
> > each program will run and I don't want to have 10 programs running
> > when I only have one or two processors. I want to run one at a time
> > (or two if I have two processors), wait until it's finished, and then
> > call the next one.
>
#x27;t want to have 10 programs running
> when I only have one or two processors. I want to run one at a time
> (or two if I have two processors), wait until it's finished, and then
> call the next one.
>
> How can I use Python to schedule these commands?
>
> Thanks,
one or two processors. I want to run one at a time
(or two if I have two processors), wait until it's finished, and then
call the next one.
How can I use Python to schedule these commands?
Thanks,
Jeremy
--
http://mail.python.org/mailman/listinfo/python-list
A page describing our 2009 Python class offerings has just
been posted here:
http://home.earthlink.net/~python-training/2009-public-classes.htm
The first class in 2009 will be held January 27-30 in
Colorado, and is now open for enrollments.
These are public classes, open to individuals. They pr
Just few link on some Movies
Free Movies: http://exclusive.12w.net
F
R
E
E
C
E
L
E
B
R
I
T
Y
M
O
V
I
E
S
--
http://mail.python.org/mailman/listinfo/python-list
ime, time.sleep)
scheduler.enter(1.0, 0, sys.stdout.write, ("one\n",))
scheduler.run()
Now when the function runs after 20 minutes I just have it schedule itself
to run again in 20 minutes time, which seems to work for me quite nicely, it
just seems a little 'hacky' to keep the task
Take a look at http://sourceforge.net/projects/pycron/ . It may give
you some ideas.
Bob
--
http://mail.python.org/mailman/listinfo/python-list
Hi there,
I have a daemon running 24/7, and I want that it executes a certain function
several times a day, as specified in an configfile (e.g.
actiontimes=10:00,12:00,19:00)
Do I have to fiddle with sched.scheduler and calc. time differences to
schedule my events, or is there another (nicer
What's New?
===
The talk schedule for the Vancouver Python Workshop is now available:
http://www.vanpyz.org/conference/talkschedule.html
This years line-up might be even stronger than in 2004, so check it out!
About the Vancouver Python Workshop
===
I want to create a work schedule; I will have to input some names
(in alphabetical order) and the days they can't be working because they
have a license, are in vacation or are doing special services. Then,
using that information, the program would assign, from a Monday
specified onwards,
Terry Reedy wrote:
> "Ant" <[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]
>
>>Looks like some good new stuff coming along. Does anyone know what's
>>happened to the path PEP (http://www.python.org/doc/peps/pep-0355/) - I
>>thought I'd seen somewhere that that was originally planned
"Ant" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Looks like some good new stuff coming along. Does anyone know what's
> happened to the path PEP (http://www.python.org/doc/peps/pep-0355/) - I
> thought I'd seen somewhere that that was originally planned for 2.5...
It is still
Looks like some good new stuff coming along. Does anyone know what's
happened to the path PEP (http://www.python.org/doc/peps/pep-0355/) - I
thought I'd seen somewhere that that was originally planned for 2.5...
--
Ant...
--
http://mail.python.org/mailman/listinfo/python-list
"Tim Peters" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
>> For more details about the plan for Python 2.5, see:
>>
>> http://www.python.org/doc/peps/pep-0356/
>
> Looks like links to PEPs are completely hosed at the moment. For
> example, the link above displays an empty dir
> For more details about the plan for Python 2.5, see:
>
> http://www.python.org/doc/peps/pep-0356/
Looks like links to PEPs are completely hosed at the moment. For
example, the link above displays an empty directory, and
http://www.python.org/doc/peps
displays a directory full of empty
Only MS can answer those questions.
Even though, Python on Windows is compiled with VC++, you can still use
Mingw32 to compile extensions. There are some articles floating around
on how to do this and I did try it successfully in the past. Please
note that I am not advocating either compiler. Just
Ravi Teja wrote:
> http://msdn.microsoft.com/visualc/vctoolkit2003/
> Free.
>
True, but 'The Microsoft Toolkit Compiler doesn't come out-of-the-box
with everything you need to compile extensions.' see:
http://www.vrplumber.com/programming/mstoolkit/
If you are going ahead with the VC 7.1 Toolk
Ben Finney wrote:
>> - ASCII is the default coding
>
> Er? How did this happen?
>
> To be specific, what about all the movement toward UTF-8?
See PEP 263. ASCII is the default encoding for source code;
if you want to use UTF-8 in source code, either put
# -*- coding: utf-8 -*-
into the fil
"[EMAIL PROTECTED]" <[EMAIL PROTECTED]> writes:
> For more details about the plan for Python 2.5, see:
> http://www.python.org/doc/peps/pep-0356/
Thanks for bringing attention to this.
> - ASCII is the default coding
Er? How did this happen?
To be specific, what about all the movement
http://msdn.microsoft.com/visualc/vctoolkit2003/
Free.
--
http://mail.python.org/mailman/listinfo/python-list
Scott David Daniels wrote:
> I think there will be no compiler switching for a while. The previous
> switch from VC 6 was in part because there was no longer any legal way
> to get a VC 6.0 compiler. This round at least is sticking with the same
> compiler as Python 2.4 (VC 7.0).
>
Scott:
Adm
Pekka Niiranen wrote:
> what I would like to see in (www.python.org) is
> Windows installation package (*.msi)
> compiled with option "--enable-unicode=ucs4".
> See http://www.xml.com/pub/a/2005/06/15/py-xml.html
Just enabling that option is not enough: the resulting
binary likely crashes. In addi
Gregory Petrosyan wrote:
> P.P.S. are there any experiments with compiling CPython with Intel's
> compiler?
Yup, the (older) Intel compiler was quite effective for 2,2 and 2.3
(at least), and I think at least one distro was built with it.
--
-Scott David Daniels
[EMAIL PROTECTED]
--
http://mail.
Hi,
what I would like to see in (www.python.org) is
Windows installation package (*.msi)
compiled with option "--enable-unicode=ucs4".
See http://www.xml.com/pub/a/2005/06/15/py-xml.html
-pekka-
--
http://mail.python.org/mailman/listinfo/python-list
Yes, it's very annoying to see VC8 warnings on perfectly legal C
constructs (AFAIK even sprinf is now considered "unsafe", MS wants
everybody to use sprintf_s). But the optimisation capacities of VC8 are
really great. Maybe someone can measure the speedup?
P.S. there's an "_CRT_SECURE_NO_DEPRECATE
Don Taylor wrote:
> [EMAIL PROTECTED] wrote:
>> For more details about the plan for Python 2.5, see:
>> http://www.python.org/doc/peps/pep-0356/
> I hope that this is not considered too off topic, but what compiler is
> going to be used for the MSW version of 2.5?
>
> If it is going to the MS
[EMAIL PROTECTED] wrote:
> For more details about the plan for Python 2.5, see:
>
> http://www.python.org/doc/peps/pep-0356/
>
I hope that this is not considered too off topic, but what compiler is
going to be used for the MSW version of 2.5?
If it is going to the MS Visual Studio 2005 com
, here are some more details copied
from the PEP:
Release Schedule
alpha 1: April 1, 2006 [planned]
alpha 2: April 29, 2006 [planned]
alpha 3: May 27, 2006 [planned]
beta 1: June 24, 2006 [planned]
beta 2: July 15, 2006 [planned]
rc 1:August 5, 2006 [planned]
fina
r reserving accomodations is 15 May."
>
> http://www.europython.org/sections/tracks_and_talks/schedule_day_1
>
> "The schedule will be posted in early June."
>
> Are the people who are organising this aware of to what point this is -
> sorry - plain nonsense?
>
> The att
_and_talks/schedule_day_1
"The schedule will be posted in early June."
Are the people who are organising this aware of to what point this is -
sorry - plain nonsense?
The attendees are supposed to register and reserve accomodation before
even being able to know when/whether it will be wo
Peter Hansen wrote:
Jeremy Bowers wrote:
... On UNIX, use some "cron" varient, Windows has
some sort of Scheduler built in but I've never done anything with it but
turn it off
Modern Windowsen also have the "AT" command line program which is
sometimes a much more appropriate way to get at that ca
Jeremy Bowers wrote:
... On UNIX, use some "cron" varient, Windows has
some sort of Scheduler built in but I've never done anything with it but
turn it off
Modern Windowsen also have the "AT" command line program which is
sometimes a much more appropriate way to get at that capability than the
"S
On Tue, 26 Apr 2005 15:15:35 -0700, willitfw wrote:
> Greetings,
> I am looking for some guidance on a script.
>
> My goals are:
> 1) have this script run automatically through a time set schedule.
> 2) verify if a file is updated on an ftp site (usually on the 15th of
> th
Greetings,
I am looking for some guidance on a script.
My goals are:
1) have this script run automatically through a time set schedule.
2) verify if a file is updated on an ftp site (usually on the 15th of
the month).
3) If the updated file exists, ftp it to local drive.
4) e-mail other users
95 matches
Mail list logo