I need to use Python and Angular JS to send a CSV file from python to web page and display it accordingly.
I've got 2 CSV files with fields as
CSV1
Country code,Telecom,Latency
919618, India Private Mobile,0.008800
919619, India Private Mobile,0.008800
919620, India Private Mobile,0.008800
CSV2
Country code,Telecom,Latency
919802, India Private Mobile,0.008400
919803, India Private Mobile,0.008400
919620, India Private Mobile,0.008400
The web page should display as
Country code,Telecom,Latency
919618, India Private Mobile,0.008800
919619, India Private Mobile,0.008800
919802, India Private Mobile,0.008400
919803, India Private Mobile,0.008400
919620,India Private Mobile,0.008400,0.008800
(The last line contain two values cause the CSV file contains 919620 commons in both)
So now I'm new to Angular JS and Flask, just guide me how to start?
started with this
import pandas as pd
import numpy as np
dfa = pd.read_csv('rate4.csv', names=['Country Code', 'SP', 'Rate']);
dfb = pd.read_csv('rate3.csv', names=['Country Code', 'SP', 'Rate']);