Skip to content

Instantly share code, notes, and snippets.

View 8bitben's full-sized avatar

Ben Shepherd 8bitben

View GitHub Profile
@8bitben
8bitben / people.csv
Created April 30, 2019 17:44
people.csv
name age location
chris 10 nc
ben 25 dc
dan 20 va
ben 25 dc
dan 20 va
chris 10 nc
ben 25 dc
dan 20 va
ben 25 dc
@8bitben
8bitben / python-csv.py
Created April 30, 2019 17:44
python-csv.py
'''
https://docs.python.org/3/library/csv.html
'''
import csv #import the required libraries
#open the file and assign it an identifier
with open('people.csv') as people:
#create a Dictionary Reader and pass the open file
my_csv_file = csv.DictReader(people)
import csv
import calendar
'''
CSV to CLF log file formatter
Ben Shepherd
Go Fish Digital
August 2018
'''