私はしばらくここに投稿して、目に見えない Python の問題の理由を見つけようとしました。ローカルではスクリプトは正常に実行されますが、アップロードすると途中までしか実行されません。
私のpythonスクリプトはhtmlファイルを生成します。ファイルが数分ごとに更新されるように、python スクリプトを cron ジョブしました。ただし、最初の数行のコードを作成して停止するだけでした。
サーバーが Python 2.4 を実行していて、私は 2.7 を実行していることが (いくつかの調査の結果) 理由であると考えています。しかし、スクリプトを 2.4 にアップグレード (ダウングレード?) する方法がわかりません。たった 1 行のコードが私の存在の悩みの種だと思います。
関連するコードは次のとおりです。
phone.py: これは、他のファイル SearchPhone を呼び出し、html を celly.html に生成します。
from SearchPhone import SearchPhone
phones = ["iphone 4", "iphone 5", "iphone 3"]
f = open('celly.html','w')
f.write("""<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Celly Blue Book</title>
</head>
<body>
</body>
</html>
""")
#table
f.write('<table width="100%" border="1">')
for x in phones:
print "Pre-Searchphone DEBUG" ##THIS PRINTS!!
y = SearchPhone(x) ## <--Here is the culprit.
print "Post-SearchPhone DEBUG" ##THIS DOES NOT!!
f.write( "\t<tr>")
f.write( "\t\t<td>" + str(y[0]) + "</td>")
f.write( "\t\t<td>" + str(y[1]) + "</td>")
f.write( "\t\t<td>" + str(y[2]) + "</td>")
f.write( "\t\t<td>" + str(y[3]) + "</td>")
f.write( "\t\t<td>" + str(y[4]) + "</td>")
f.write( "\t</tr>")
f.write('</table>')
f.close()
SearchPhone.py: これは電話を検索し、phones.py によって呼び出されます。
from BeautifulSoup import BeautifulSoup
import urllib
import re
def SearchPhone(phone):
y = "http://losangeles.craigslist.org/search/moa?query=" + phone + "+-%22buy%22+-%22fix%22+-%22unlock%22+-%22broken%22+-%22cracked%22+-%22parts%22&srchType=T&minAsk=&maxAsk="
site = urllib.urlopen(y)
html = site.read()
site.close()
soup = BeautifulSoup(html)
prices = soup.findAll("span", {"class":"itempp"})
prices = [str(j).strip('<span class="itempp"> $</span>') for j in prices]
for k in prices[:]:
if k == '': #left price blank
prices.remove(k)
elif int(k) <= 75: #less than $50: probably a service (or not true)
prices.remove(k)
elif int(k) >= 999: #probably not true
prices.remove(k)
#Find Average Price
intprices = []
newprices = prices[:]
total = 0
for k in newprices:
total += int(k)
intprices.append(int(k))
intprices = sorted(intprices)
try:
del intprices[0]
del intprices[-1]
avg = total/len(newprices)
low = intprices[0]
high = intprices[-1]
if len(intprices) % 2 == 1:
median = intprices[(len(intprices)+1)/2-1]
else:
lower = intprices[len(intprices)/2-1]
upper = intprices[len(intprices)/2]
median = (float(lower + upper)) / 2
namestr = str(phone)
medstr = "Median: $" + str(median)
avgstr = "Average: $" + str(avg)
lowstr = "Low: $" + str(intprices[0])
highstr = "High: $" + str(intprices[-1])
samplestr = "# of samples: " + str(len(intprices))
linestr = "-------------------------------"
except IndexError:
namestr = str(phone)
medstr = "N/A"
avgstr = "N/A"
lowstr = "N/A"
highstr = "N/A"
samplestr = "N/A"
linestr = "-------------------------------"
return (namestr, medstr, avgstr, lowstr, highstr, samplestr, linestr)
トレースバックは次のとおりです。
Pre-SearchPhone DEBUG
Traceback (most recent call last):
File "/home/tseymour/public_html/celly/phones.py", line 35, in ?
y = SearchPhone(x)
File "/home/tseymour/public_html/celly/SearchPhone.py", line 11, in SearchPhone
site = urllib.urlopen(y)
File "/usr/lib64/python2.4/urllib.py", line 82, in urlopen
return opener.open(url)
File "/usr/lib64/python2.4/urllib.py", line 190, in open
return getattr(self, name)(url)
File "/usr/lib64/python2.4/urllib.py", line 322, in open_http
return self.http_error(url, fp, errcode, errmsg, headers)
File "/usr/lib64/python2.4/urllib.py", line 339, in http_error
return self.http_error_default(url, fp, errcode, errmsg, headers)
File "/usr/lib64/python2.4/urllib.py", line 579, in http_error_default
return addinfourl(fp, headers, "http:" + url)
File "/usr/lib64/python2.4/urllib.py", line 883, in __init__
addbase.__init__(self, fp)
File "/usr/lib64/python2.4/urllib.py", line 830, in __init__
self.read = self.fp.read
AttributeError: 'NoneType' object has no attribute 'read'
すべての助けてくれてありがとう。
タイラー