Skip to content

Instantly share code, notes, and snippets.

View inzm99's full-sized avatar

Yuto Bando inzm99

View GitHub Profile
@inzm99
inzm99 / import_csv_to_mongo
Created March 22, 2019 00:06 — 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)