TheNeuralBit commented on a change in pull request #13278:
URL: https://github.com/apache/beam/pull/13278#discussion_r519003151



##########
File path: sdks/python/apache_beam/dataframe/io.py
##########
@@ -131,6 +131,11 @@ def _binary_writer(format):
 read_hdf = to_hdf = frame_base.wont_implement_method('random access files')
 
 
+for name in dir(pd):
+  if name.startswith('read_') and name not in globals():
+    globals()[name] = frame_base.not_implemented_method(name)

Review comment:
       Will not_implemented_method work here? It's wrapper takes a `self` 
parameter




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to