欢迎访问 生活随笔!

生活随笔

当前位置: 首页 > 编程语言 > python >内容正文

python

python定义了函数却显示未定义_python

发布时间:2025/3/11 python 44 豆豆
生活随笔 收集整理的这篇文章主要介绍了 python定义了函数却显示未定义_python 小编觉得挺不错的,现在分享给大家,帮大家做个参考.

我正在编写一个脚本,在我的脚本中,我具有以下功能:

def insert_image(cursor, object_id, sku):

product_obj = core.Object.get(object_id)

string_sku = str(sku)

folder = string_sku[0] + string_sku[1] + string_sku[2]

found_url = False

# KLUDGE This is ugly and redundant, however putting this in an if elif elif else throws error when url not found

# try this url first

try urllib.urlopen("http:///%s/%sPR-IT,PM.jpg" % (folder, sku)):

urllib.URLopener().retrieve("http:///%s/%sPR-IT,PM.jpg" % (folder, sku), "%sPR-IT,PM.jpg" % (sku))

found_url = True

except:

found_url = False

# If that one didn't work try this one

if found_url == False:

try urllib.urlopen("http:///%s/%sPK-PT,PM.jpg" % (folder, sku)):

urllib.URLopener().retrieve("http:///%s/%sPK-PT,PM.jpg" % (folder, sku), "%sPK-PT,PM.jpg" % (sku))

found_url = True

except:

found_url = False

# If still nothing, one last attempt

if found_url == False:

try urllib.urlopen("http:///%s/%sCC-PT,IM.jpg" % (folder, sku)):

urllib.URLopener().retrieve("http:///%s/%sCC-PT,IM.jpg" % (folder, sku), "%sCC-PT,IM.jpg" % (sku))

found_url = True

except:

found_url = False

# We failed to find an image for this product, it will have to be done manually

if found_url == False:

log.info("Could not find the image on notions")

return False

# Hey we found something! Open the image....

send_image = open('%sPK-PT,PM.jpg' % sku, 'r')

# ...and send it for processing

if product_obj.set_image(send_image, 5, 1) == False:

return False

else:

log.debug("Inserted Image")

return True

在我添加尝试捕获之前,此方法运行良好。 我确实有if,elif函数运行得很好。 这是我的电话以及在它之前运行的代码的优美之处:

if rollback == False:

# Nah -- it's all good SAVE IT!

count += 1

log.debug("INSERT %s" % count)

conn.commit()

else:

# Yeah something went wrong, errors reported why, roll it back

conn.rollback()

log.debug("skipped %s" % skip_count)

# Insert images

if rollback == False:

sku = row[0]

if insert_image(cursor, object_id, sku) == False:

log.error("Could not get the image inserted for product: %s" % object_id)

conn.rollback()

else:

conn.commit()

我的错误是:

16:33:46,153 DEBUG [pylons-admin] Inserted Description

16:33:46,164 DEBUG [pylons-admin] Inserted Attributes

16:33:46,164 DEBUG [pylons-admin] INSERT 1

Traceback (most recent call last):

File "", line 47, in

NameError: name 'insert_image' is not defined

我不知道第47行是什么意思,因为该调用位于第2101行,在我添加尝试之前,它再次发现该函数很好。 当我像现在看到的那样添加尝试时,我还将第一个提交切换到insert_image调用之前,而在我们调用insert_image之后则提​​交之前。 我检查了缩进,空格和制表符w /无济于事。

我使用TextMate,当我从TextMate运行脚本时,在这里出现语法错误:

try urllib.urlopen("http:///%s/%sPR-IT,PM.jpg" % (folder, sku)):

它指向(上的(文件夹。。。但是我看不到语法错误。请帮忙。我已经在这个脚本上工作了几周了,这应该是最后一次运行测试并称其为:(

总结

以上是生活随笔为你收集整理的python定义了函数却显示未定义_python的全部内容,希望文章能够帮你解决所遇到的问题。

如果觉得生活随笔网站内容还不错,欢迎将生活随笔推荐给好友。