Python - “NameError: name 'filename' is not defined”

霸气de小男生 提交于 2019-12-13 11:14:59

问题


Build mongoimport command

collection = filename[:filename.find('.')]  
working_directory = 'C:/Users/Anshuman Misra/Downloads/'  
json_file = filename + '.json'

mongoimport_cmd = 'mongoimport -h 127.0.0.1:27017 ' + \
                  '--db ' + db_name + \
                  ' --collection ' + collection + \
                  ' --file ' + working_directory + json_file

Before importing, drop collection if it exists (i.e. a re-run)

if collection in db.collection_names():  
    print 'Dropping collection: ' + collection
    db[collection].drop()

Execute the command

print 'Executing: ' + mongoimport_cmd  
subprocess.call(mongoimport_cmd.split())

回答1:


Where did you define filename? You are using it on the first line but I don't see where it was defined.



来源:https://stackoverflow.com/questions/47617718/python-nameerror-name-filename-is-not-defined

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!