-
Notifications
You must be signed in to change notification settings - Fork 193
New issue
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
Added support for reading and writing avro files #490
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.
Hi @juarezr, this looks fantastic, very comprehensive. Just a couple of comments to bump the version number.
…opers#490 Set version to 1.4.0 and issue to 490 as suggested in pull request petl-developers#490 Co-authored-by: Alistair Miles <alimanfoo@googlemail.com>
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.
LGTM, thanks for the very nice PR.
Ready to merge? |
I think this pull is ready to merge from my side. Maybe there is something that I missed because this is my first python contribution ever, but we can handle further bugs and improvements in new pull requests. So, if you don't have any considerations for now, please go ahead and merge . Thanks for the support. (And for this nice code!) |
Well I think you win the award for best first contribution I've ever seen :) Thanks again, I'll make a release so this functionality is available. |
First contribution using python. 😄. Thanks for the merge. |
Release 1.4.0 is on PyPI. |
Added support for reading and writing avro files
Apache Avro is a data serialization framework with broad use in many business.
It is used in data serialization (especially in Hadoop ecosystem), for data exchange for databases (Redshift) and in RPC protocols (like in Kafka).
It has open source libraries to support many languages and generally is faster and safer than text formats like Json, XML or CSV.
Changes in pull request
Added functions
petl.io.avro.fromavro
,petl.io.avro.toavro
, andpetl.io.avro.appendavro
for reading and writing to Avro files.Checklist