Trouble with script fetching site

S

Stephen Boulet

I'm trying to parse a url to set my hardware & system clock (linux).

Perhaps the best way to do this would be to use the urllib2 module to
convert a site to text, but since I haven't found that option yet, I did
this instead (which sometimes works, sometimes doesn't, and when it doesn't
seems to get hung up on line 4 -- os.popen oddity?):

#/usr/bin/env python
import os,sys

url = "http://www.time.gov/timezone.cgi?Central/d/-6"
f = os.popen("lynx -dump " + url)
lines = f.readlines()

i = 0
for line in lines:
lines = line.strip()
i += 1

for i in range(len(s)):
if s.find("Right now") > -1:
break

time = s[1]
day,month,year = s[2].split(',')
month = month.strip()
month = month.split(' ')
month = ' '.join([month[0][0:3],month[1]])
year = year.strip()

result = ' '.join([day, month, time, "CDT", year])
print "result is %s.\n" % result
command = 'date -u -s "' + result + '";hwclock --systohc'
print "Command is: \n\n%s.\n" % command

f = os.popen(command)
print f.read()

# updatetime.py
import: Unable to open file (os,sys).
/usr/local/bin/updatetime.py: line 4: url: command not found
/usr/local/bin/updatetime.py: line 5: syntax error near unexpected token `('
/usr/local/bin/updatetime.py: line 5: `f = os.popen("lynx -dump " + url)'

I'm fetching a site
 
P

Peter Hansen

Stephen said:
I'm trying to parse a url to set my hardware & system clock (linux).

I can't help with the problem at hand, but I also don't see the
reason to do it. Why not just access an NTP server and grab the
time the "proper" way? Using a web page is a roundabout way of
doing it. There's a nice setclock.py script which Google can
point you to which does the job much more easily.

-Peter
 
J

John J. Lee

Peter Hansen said:
I can't help with the problem at hand, but I also don't see the
reason to do it. Why not just access an NTP server and grab the
time the "proper" way? Using a web page is a roundabout way of
doing it.
Right.

There's a nice setclock.py script which Google can
point you to which does the job much more easily.

On my system, the ntpdate command works nicely. I run it my PPP
scripts.


John
 
P

Peter Hansen

John J. Lee said:
On my system, the ntpdate command works nicely. I run it my PPP
scripts.

And once one knows it exists, one should probably prefer that
method. As I now do. <grin>

-Peter
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top