Urllib问题:AttributeError:' module'对象没有属性&maketrans'

时间:2016-09-07 16:09:50

标签: python anaconda urllib

环境是Win10 64位,Python 2.7.12,Anaconda。 网络scrapy的代码非常简单:

  SELECT  * FROM `myTable` 
    natural JOIN `column1` 
    natural JOIN `column2` 
  WHERE `mytable`.`something` = 1 
  ORDER BY mytable_date DESC LIMIT 0,4

结果很奇怪:

import urllib

fhand = urllib.urlopen('http://www.reddit.com')
for line in fhand:
    print line.strip()

代码可以在iPython的另一台PC上运行,但无法在这个上运行。我已经多次重新安装了Anaconda,但失败了。

如果你能解决它,我将不胜感激。

1 个答案:

答案 0 :(得分:0)

尝试Spyder,一切正常。

仍然不知道这个问题。