Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tensorflow_io/json/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ load(
cc_library(
name = "json_ops",
srcs = [
"kernels/json_input.cc",
"kernels/json_kernels.cc",
"ops/json_ops.cc",
],
copts = tf_io_copts(),
Expand Down
6 changes: 6 additions & 0 deletions tensorflow_io/json/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
"""JSONDataset.

@@JSONDataset
@@list_json_columns
@@read_json
"""

from __future__ import absolute_import
Expand All @@ -24,9 +26,13 @@
from tensorflow.python.util.all_util import remove_undocumented

from tensorflow_io.json.python.ops.json_ops import JSONDataset
from tensorflow_io.json.python.ops.json_ops import list_json_columns
from tensorflow_io.json.python.ops.json_ops import read_json

_allowed_symbols = [
"JSONDataset",
"list_json_columns",
"read_json",
]

remove_undocumented(__name__, allowed_exception_list=_allowed_symbols)
166 changes: 0 additions & 166 deletions tensorflow_io/json/kernels/json_input.cc

This file was deleted.

Loading