We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Usually, a user doesn't programmatically create tables but instead already has the data stored in some file.
There should be a function to read data into a table (#144) from various sources. For now, the following formats suffice:
The functionality should be available as static methods on the Table class. The methods should be called:
Table
Table.from_json
Table.from_csv
Both functions should accept a file path as a parameter to select the file to read. The file path should be given as a string.
The text was updated successfully, but these errors were encountered:
feat: Create table from file: read_csv and read_json (#164)
1697690
Closes #145. ### Summary of Changes Added functions: read_csv and read_json Added Tests: valid and invalid inputs Co-authored-by: WinPlay02 <WinPlay02@users.noreply.github.com> Co-authored-by: Lars Reimann <mail@larsreimann.com> Co-authored-by: lars-reimann <lars-reimann@users.noreply.github.com>
e99baa1
WinPlay02
Gerhardsa0
Successfully merging a pull request may close this issue.
Is your feature request related to a problem? Please describe
Usually, a user doesn't programmatically create tables but instead already has the data stored in some file.
Desired solution
There should be a function to read data into a table (#144) from various sources. For now, the following formats suffice:
The functionality should be available as static methods on the
Table
class. The methods should be called:Table.from_json
Table.from_csv
Both functions should accept a file path as a parameter to select the file to read. The file path should be given as a string.
The text was updated successfully, but these errors were encountered: