-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgst_input.py
24 lines (20 loc) · 1.15 KB
/
gst_input.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import psycopg2
import pandas as pd
from sqlalchemy import create_engine
async def upload_details(file):
#gst_input = pd.read_excel("Input Reco Raj 2022-23.xlsx")#, nrows=5000) #, type_backend='pyarrow')
gst_input = pd.read_excel(file)#, nrows=9000)
gst_input = gst_input.loc[:, ~gst_input.columns.str.contains('^Unnamed')]
gst_input.columns = gst_input.columns.str.replace(' ', '_').str.lower().str.replace('%', 'percent')
column_headers = list(gst_input.columns)
gst_input['office_code'] = gst_input['keywords'].str[3:9]
gst_input['regional_code'] = gst_input['keywords'].str[3:5]
gst_input['status'] = "To be updated"
#print(column_headers)
# remove united india entries
gst_input = gst_input[~gst_input["supplier_gstin"].str.contains("AAACU5552C")]
gst_input = gst_input[~gst_input["#"].str.contains("R2A")]
gst_input.rename(columns={'#':'purchaser'}, inplace=True)
gst_input.columns = [c.lower() for c in gst_input.columns]
engine = create_engine("postgresql://barneedhar:barneedhar@localhost:5432/flask_db")
gst_input.to_sql("entries", engine, if_exists = "append", index=False)#, index_label='id')