ajosh0504 giorgospago commited on
Commit
942aec6
1 Parent(s): 4113e37

Add completion message to code example (#2)

Browse files

- Add completion message to code example (3e6f3e4f5afb1f66a52e8b9a5a8c37822a224a45)


Co-authored-by: George Pagonoudis <giorgospago@users.noreply.huggingface.co>

Files changed (1) hide show
  1. README.md +3 -1
README.md CHANGED
@@ -117,5 +117,7 @@ for item in dataset['train']:
117
  # Insert any remaining documents
118
  if len(insert_data) > 0:
119
  collection.insert_many(insert_data)
120
- print("Data Ingested")
 
 
121
  ```
 
117
  # Insert any remaining documents
118
  if len(insert_data) > 0:
119
  collection.insert_many(insert_data)
120
+ print("{} records ingested".format(len(insert_data)))
121
+
122
+ print("All records ingested successfully!")
123
  ```