-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatabase_to_csv.py
43 lines (35 loc) · 1.23 KB
/
database_to_csv.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import sys, os.path
root_dir = os.path.dirname(os.path.dirname(__file__))
sys.path.append(root_dir)
import cli_app
import csv
from data.models import DataModel
cw_found = open("data/for_excel_data_found.csv", newline='')
cw_not_found = open("data/for_excel_data_not_found.csv", newline='')
csvwriter_found = csv.writer(cw_found)
csvwriter_not_found = csv.writer(cw_not_found)
all_found = DataModel.objects.filter(city_data_not_found=True).order_by("city")
all_not_found = DataModel.objects.filter(city_data_not_found=False).order_by("city")
csvwriter_not_found.writerow(["City", "Not Found"])
for d in all_not_found:
row = [d.city, "No Data Found For This City"]
csvwriter_not_found.writerow(row)
cw_not_found.flush()
csvwriter_found.writerow(["City", "Name", "DBA", "Phone No", "Carrier Type", "Active Trucks", "Mailing Address",
"Effective Date", "TDLR"])
for d in all_found:
row = [
d.city,
d.name,
d.dba,
d.phone,
d.carrier_type,
d.active_trucks,
d.mailing_address,
d.effective_date,
d.active_no
]
csvwriter_found.writerow(row)
cw_found.flush()
cw_found.close()
cw_not_found.close()