尝试使用wget创建运行Python脚本的Shell脚本

时间:2014-09-19 23:38:10

标签: python bash shell wget

我试图每天调用一次API并使用Python将数据保存在json中并将其转换为csv文件。

我正在使用wget库来下载文件。 即使我正确安装了wget并且能够在Python Shell中使用它,我也无法在bash中运行该脚本,因为我收到错误:

File "<stdin>", line 1, in <module>
ImportError: No module named wget

如何在bash上安装wget? 也许有一个我可以使用的内置库?

我使用wget的代码是:

import wget

file_url = 'http://api-website'
file_name = wget.download(file_url)

1 个答案:

答案 0 :(得分:1)

下载wget表单 this 链接并使用以下命令安装:

提取Wget

$ cd /tmp/wget
$ gzip -dc < wget-2.2.tar.gz | tar -xf -
$ cd wget-2.2

构建Wget

$ ./configure --prefix=/usr
$ make

安装Wget(必须是root用户)

$ sudo make install