Skip to content

Instantly share code, notes, and snippets.

View abhishekrupakula's full-sized avatar

Sai Abhishek Rupakula abhishekrupakula

View GitHub Profile
@abhishekrupakula
abhishekrupakula / import_csv_to_mongo
Created December 8, 2020 04:14 — forked from mprajwala/import_csv_to_mongo
Store CSV data into mongodb using python pandas
#!/usr/bin/env python
import sys
import pandas as pd
import pymongo
import json
def import_content(filepath):
mng_client = pymongo.MongoClient('localhost', 27017)