-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Include support for polars #94
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code looks ok, but update with the base branch to make sure all runs as expected. For now, all checks are failing.
# Conflicts: # poetry.lock
read_to_polars
functionThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great!
Could you add a mention to polars in the README, alongside the other "engines"? Is the only documentation we have, for now.
Co-authored-by: Diego Alonso Álvarez <6095790+dalonsoa@users.noreply.github.com>
# Conflicts: # csvy/__init__.py # poetry.lock # pyproject.toml
Following on from #94, this PR mentions polars in the readme to document its use.
This PR adds a function that will read a csv into a polars LazyFrame or DataFrame, depending on if the "eager" parameter is true or false. It also includes a
write_polars
function.Some comments:
This partially addresses Add support forEdited: Now includes write functionality.polars
#83, it has not implemented the write functionality yet.Close #83