Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
430 views
in Technique[技术] by (71.8m points)

mongodb - Python - "NameError: name 'filename' is not defined"

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())
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...