See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope>
is optional
from bs4 import BeautifulSoup | |
import csv | |
def main(): | |
""" | |
Open the KML. Read the KML. Make 3 lists for Name, Coordinates and Description of the placemarks. Save the data to a CSV | |
""" | |
name_counter = 0 | |
names_list = [] | |
coords_counter = 0 |