-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkalchas_headers.py
More file actions
23 lines (16 loc) · 1.09 KB
/
kalchas_headers.py
File metadata and controls
23 lines (16 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/python
#
# Setup the print headers
#
def location_headers():
print ("---------------------------------------------------------------------------")
print ("Country".ljust(10), "City".ljust(10), "Region".ljust(10), "Zip Code".ljust(10), "Longitude".ljust(10),"Latitude".ljust(10))
print ("---------------------------------------------------------------------------\n")
def proxy_headers():
print ("---------------------------------------------------------------------------")
print ("Proxy Type".ljust(10), "Country".ljust(10), "Region".ljust(10), "City".ljust(10), "ISP".ljust(10), "Longitude".ljust(10), "Latitude".ljust(10))
print ("---------------------------------------------------------------------------\n")
def misc_headers():
print ("---------------------------------------------------------------------------")
print ("Proxy Type".ljust(10),"Country".ljust(10),"Region".ljust(10),"City".ljust(10),"Zip Code".ljust(10),"Longitude".ljust(10),"Latitude".ljust(10))
print ("---------------------------------------------------------------------------\n")