aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/cloud/__init__.py
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-03-13 16:58:18 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-03-13 18:09:05 -0700
commit1b881b7c77bd1e664382785447a170de2b85f688 (patch)
tree2d3b8c455ef9b93cb55eb03ea91d050db598fa74 /tensorflow/contrib/cloud/__init__.py
parentee6f27b647fd51b11f9795042c4f6941c77d1c86 (diff)
First version of BigQuery Reader.
Change: 150016997
Diffstat (limited to 'tensorflow/contrib/cloud/__init__.py')
-rw-r--r--tensorflow/contrib/cloud/__init__.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/tensorflow/contrib/cloud/__init__.py b/tensorflow/contrib/cloud/__init__.py
new file mode 100644
index 0000000000..8870264b95
--- /dev/null
+++ b/tensorflow/contrib/cloud/__init__.py
@@ -0,0 +1,28 @@
+# Copyright 2017 The TensorFlow Authors. All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+# ==============================================================================
+"""Module for cloud ops."""
+
+from __future__ import absolute_import
+from __future__ import division
+from __future__ import print_function
+
+# pylint: disable=line-too-long,wildcard-import
+from tensorflow.contrib.cloud.python.ops.bigquery_reader_ops import *
+# pylint: enable=line-too-long,wildcard-import
+
+from tensorflow.python.util.all_util import remove_undocumented
+
+_allowed_symbols = ['BigQueryReader']
+remove_undocumented(__name__, _allowed_symbols)