Added an adapter class, PandasDataAdapter, that transforms the csv data sheets into a useable Pandas dataframe. The PandasDataAdapter implements the DataInterface, so it has an implementation of the get() function that should be called now instead of the get() inside of the Github class.
Added an adapter class,
PandasDataAdapter
, that transforms the csv data sheets into a useable Pandas dataframe. ThePandasDataAdapter
implements theDataInterface
, so it has an implementation of theget()
function that should be called now instead of theget()
inside of theGithub
class.