Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions basicfile.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
#!/usr/bin/python

'''
Author : Various Users
Date : 06/11/2015
Description : This will be a a relatively simple document breaking down the city_bash project

'''
##Necessary modules??

import openpyxl
import csv
import os


class CityBash(object):

def __init__(self):
pass


def pull_csv(self):
'''
Pull CSV data into python and seperate the fields by variables
'''
os.chdir("//Documents/GitStuff/Project_Boston_Housing") # Depending on where we'll be pulling this from
wb = load_workbook('initial.xlsx')
print(wb)


def get_geocoded_cordinates(self):
pass



def main():
print("###This should work")
new = CityBash()
new_csv = new.self.pull_csv()
print(new_csv)

#Run the intial pull_csv and

main()