Skip to content

Commit d6fc984

Browse files
author
yuzelin
committed
[Rename] Rename module and package to pypaimon
1 parent 03108ec commit d6fc984

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+56
-51
lines changed

setup_utils/__init__.py renamed to pypaimon/__init__.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@
1414
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1515
# See the License for the specific language governing permissions and
1616
# limitations under the License.
17-
################################################################################
17+
#################################################################################
18+
19+
from .api import Schema
20+
21+
__all__ = [
22+
'Schema',
1823

19-
"""This module only contains utils for setup and won't be packaged."""
24+
]
File renamed without changes.

paimon_python_api/catalog.py renamed to pypaimon/api/catalog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
from abc import ABC, abstractmethod
2020
from typing import Optional
21-
from paimon_python_api import Table, Schema
21+
from pypaimon.api import Table, Schema
2222

2323

2424
class Catalog(ABC):
File renamed without changes.
File renamed without changes.

paimon_python_api/read_builder.py renamed to pypaimon/api/read_builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#################################################################################
1818

1919
from abc import ABC, abstractmethod
20-
from paimon_python_api import TableRead, TableScan, Predicate, PredicateBuilder
20+
from pypaimon.api import TableRead, TableScan, Predicate, PredicateBuilder
2121
from typing import List
2222

2323

File renamed without changes.

paimon_python_api/table.py renamed to pypaimon/api/table.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
import pyarrow as pa
2020

2121
from abc import ABC, abstractmethod
22-
from paimon_python_api import ReadBuilder, BatchWriteBuilder
22+
from pypaimon.api import ReadBuilder, BatchWriteBuilder
2323
from typing import Optional, List
2424

2525

paimon_python_api/table_commit.py renamed to pypaimon/api/table_commit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#################################################################################
1818

1919
from abc import ABC, abstractmethod
20-
from paimon_python_api import CommitMessage
20+
from pypaimon.api import CommitMessage
2121
from typing import List
2222

2323

paimon_python_api/table_read.py renamed to pypaimon/api/table_read.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
from abc import ABC, abstractmethod
2424
from duckdb.duckdb import DuckDBPyConnection
25-
from paimon_python_api import Split
25+
from pypaimon.api import Split
2626
from typing import List, Optional
2727

2828

0 commit comments

Comments
 (0)