Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

this runs as two separate scripts but when I combined them file2 prints nothing. I don't understand why nothing prints to file2. Could someone point out why this is so?

code below..

#!/usr/bin/env python
import nltk
import re
import sys
import csv
import time
from time import sleep, localtime, strftime
from urllib import urlopen

while True:

    file1 = open('/home/scott/weatherout.txt', 'w')
    url = "http://www.weather.com/weather/today/USNC0121"    
    html = urlopen(url).read()    
    raw = nltk.clean_html(html)  
    processedString = re.sub("\n\s*\n*", "\n", raw)
    print >>file1, processedString

    sleep(120)

    file2 = open('winfo.txt', 'w')
    file3 = open('/home/scott/weatherout.txt', 'rb')
    data = csv.reader(file3)
    table = [column for column in data]

    for x in range(0,150):
        if table[x][0] == 'Moonset: ':
            break
        else:
    aa = table[x][0]
    print >>file2, 'Charlotte, NC: ' + strftime("%m/%d/%Y - %H:%M:%S", localtime())
    bb = x-12
    cc = x-2
    dd = x
    print >>file2, table[bb-3][0].strip('')+': ' + table[bb-1][0].strip('')
    print >>file2, table[cc][0].strip('') + table[cc+1][0].strip('')
    print >>file2, table[dd][0].strip('') + table[dd+1][0].strip('')
    print >>file2, table[bb][0].strip('') + table[bb+1][0].strip('')
    print >>file2, table[bb+2][0].strip('') + table[bb+3][0].strip('')
    print >>file2, table[bb+4][0].strip('') + table[bb+5][0].strip('')
    print >>file2, table[bb+20][0].strip('')

    time.sleep(30)  # Delay for (500 seconds)
share|improve this question
Nevermind, this actually works, yay!! – Scott Richardson Aug 30 '12 at 3:01

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.