I have a CSV that I'm needing to create a column of random unique MongoDB ids in python.
Here's my csv file:
   import pandas as pd
   df = pd.read_csv('file.csv', sep=';')
   print(df)
        Zone
        Zone_1
        Zone_2
I'm currently using this line of code to generate a unique ObjectId - UPDATE
import bson
x = bson.objectid.ObjectId()
df['objectids'] = x
print(df)
Zone; objectids
Zone_1; 5bce2e42f6738f20cc12518d
Zone_2; 5bce2e42f6738f20cc12518d
How can I get the ObjectId to be unique for each row?
 
    