mirror of
https://github.com/Hestia-Homes/survey-extraction.git
synced 2026-06-30 13:10:56 +00:00
11 lines
No EOL
260 B
Python
11 lines
No EOL
260 B
Python
import pandas as pd
|
|
|
|
|
|
class SubmissionReader():
|
|
|
|
def __init__(self, path):
|
|
"""
|
|
A quick and dirty csv reader to run in parrall with Lewis' Deemed score process
|
|
"""
|
|
self.path = path
|
|
self.df = pd.read_csv(self.path) |