-
Notifications
You must be signed in to change notification settings - Fork 0
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
[wip] csv dialect #1
Conversation
@@ -170,7 +170,7 @@ def write(self): | |||
|
|||
# void | |||
def write_item(self, item): | |||
raise extension.NotImplemented("{self}'s `write_item(item)` function is not implemented yet!" \ | |||
raise exceptions.NotImplemented("{self}'s `write_item(item)` function is not implemented yet!" \ |
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.
thanks. 👍
import datetime | ||
import unittest | ||
import requests | ||
import forcedtypes as t |
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.
Just a quick comment. Can you please remove the forcedtypes
package dependency? I don't want to add it as a requirement to this library. You can copy the dp.SchemaFlow
from here.
Furthermore, we need to keep it in mind to test this dialect under Windows as well. Probably it will be the most commonly used dialect. In mETL we have a recurring issue on that platform. |
No description provided.