From 70f049d408a401134bd51d41e272a7b1a9fec152 Mon Sep 17 00:00:00 2001 From: everpcpc Date: Tue, 7 Nov 2023 15:03:28 +0800 Subject: [PATCH] fix(python): UDFServer in example --- python/.gitignore | 1 + python/README.md | 2 +- python/pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/python/.gitignore b/python/.gitignore index a39b9af..8be2526 100644 --- a/python/.gitignore +++ b/python/.gitignore @@ -1,3 +1,4 @@ venv/ *.egg-info/ dist/ +__pycache__/ diff --git a/python/README.md b/python/README.md index 79c4c6e..d649f92 100644 --- a/python/README.md +++ b/python/README.md @@ -51,7 +51,7 @@ def wait_concurrent(x): if __name__ == '__main__': # create a UDF server listening at '0.0.0.0:8815' - server = UdfServer("0.0.0.0:8815") + server = UDFServer("0.0.0.0:8815") # add defined functions server.add_function(split_and_join) server.add_function(gcd) diff --git a/python/pyproject.toml b/python/pyproject.toml index 62773b1..84d8db0 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -7,7 +7,7 @@ classifiers = [ description = "Databend UDF Server" license = { text = "Apache-2.0" } name = "databend-udf" -version = "0.1.1" +version = "0.1.2" readme = "README.md" requires-python = ">=3.7" dependencies = ["pyarrow"]