From 8f50ceb0ed2565306ed2ea292e4dcd6248afdec0 Mon Sep 17 00:00:00 2001 From: WenmuZhou Date: Sat, 5 Jun 2021 22:02:15 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0TableStructurer=20init?= =?UTF-8?q?=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ppstructure/__init__.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 ppstructure/__init__.py diff --git a/ppstructure/__init__.py b/ppstructure/__init__.py new file mode 100644 index 00000000..e4fc8196 --- /dev/null +++ b/ppstructure/__init__.py @@ -0,0 +1,17 @@ +# copyright (c) 2020 PaddlePaddle Authors. All Rights Reserve. +# +# 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. + +from .paddlestructure import PaddleStructure + +__all__ = ['PaddleStructure'] \ No newline at end of file -- GitLab