我想根据magento上的属性值来获取图像。
示例:
Attribute > MyAttribute
Values > Nasa, Google, Linux
Images > Nasa.jpg, Google.jpg, Linux.jpg
Products >
Product Nasa < Get Nasa.jpg if is selected an attribute
Product Google < Get Google.jpg if is selected an attribute
Product Linux < Get Linux.jp
使用wget -r -P Home -A jpg http://example.com将从该网站目录中得到一个文件列表,我正在搜索的是如何查询类似于:wget -r -P home -A jpg http://example.com/from 65121 to 75121/ file_ 100 to 200.jpg的搜索
例(S):
wget -r -P home -A jpg http://example.com/65122/file_102.jpg
wget -r -P home -A jpg http://example.com/65123/file_103.jpg
wget -r -P
我是Linux新手,但不是Python。我正在尝试将我的Python技能迁移到Linux。使用Windows,我可以使用默认查看器打开图像文件。
import os
os.system(r"C:\gTemp\Capture.JPG")
使用有效的Linux路径,相同的代码返回“拒绝的权限”
import os
os.system(/home/myname/Capture.JPG")
为什么我要得到这个错误,以及如何修复它?我在Python2.7中使用16.04