From efd1964df85f25ef5ae85672231782b5a1903851 Mon Sep 17 00:00:00 2001 From: Dong Daxiang <35550832+guru4elephant@users.noreply.github.com> Date: Thu, 19 Mar 2020 10:25:51 +0800 Subject: [PATCH] Update README.md --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index cf068b65..a020c8fd 100644 --- a/README.md +++ b/README.md @@ -53,8 +53,9 @@ Paddle Serving provides HTTP and RPC based service for users to access ### HTTP service +Paddle Serving provides a built-in python module called `paddle_serving_server.serve` that can start a rpc service or a http service with one-line command. If we specify the argument `--name uci`, it means that we will have a HTTP service with a url of `$IP:$PORT/uci/prediction` ``` shell -python -m paddle_serving_server.web_serve --model uci_housing_model --thread 10 --port 9292 --name uci +python -m paddle_serving_server.serve --model uci_housing_model --thread 10 --port 9292 --name uci ```