You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request essential for your project?
Describe the workflow you want to enable
The csv_store currently uses the local data system to read the Scenario List and update it before pulling/pushing it to the appropriate pyfilesystem location. Specifically, get_table reads a local file with _parse_csv and commit writes the table locally before pushing it to the correct location via data access. We want to be able to do both of these directly via pyfilesystem.
Describe your proposed implementation
DataAccess should have the ability to read and write via pyfilesystem after #556, so that we can update the above mentioned functions in csv_store to use these data access functions. The CSV store already uses the data access objects as part of initialization, so this work is just to update the functions within csv_store to use the appropriate data access functions.
Describe alternatives you've considered, if relevant
Additional context
As we are anticipating that the list managers will be converted to a database at some point in the future, not as much time will be spent here as this will be a temporary solution until then.
The text was updated successfully, but these errors were encountered:
🚀
Describe the workflow you want to enable
The
csv_store
currently uses the local data system to read the Scenario List and update it before pulling/pushing it to the appropriate pyfilesystem location. Specifically,get_table
reads a local file with_parse_csv
andcommit
writes the table locally before pushing it to the correct location via data access. We want to be able to do both of these directly via pyfilesystem.Describe your proposed implementation
DataAccess
should have the ability to read and write viapyfilesystem
after #556, so that we can update the above mentioned functions incsv_store
to use these data access functions. The CSV store already uses the data access objects as part of initialization, so this work is just to update the functions withincsv_store
to use the appropriate data access functions.Describe alternatives you've considered, if relevant
Additional context
As we are anticipating that the list managers will be converted to a database at some point in the future, not as much time will be spent here as this will be a temporary solution until then.
The text was updated successfully, but these errors were encountered: