This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This script will fetch the notifier data from unstructured CSV data | |
| # and convert that into structured and store the same into MongoDB | |
| # This converted structured data is used to visualize in charts | |
| import pdb | |
| import os | |
| import csv | |
| import pandas as pd | |
| import numpy as np | |
| from datetime import datetime |
OlderNewer