docs: add python call example

This commit is contained in:
Vincent Young 2023-03-21 16:56:08 +08:00
parent d0310450e5
commit f9f378e7eb
No known key found for this signature in database
GPG Key ID: 84A0830C90354A56

View File

@ -2,7 +2,7 @@
* @Author: Vincent Young
* @Date: 2022-10-18 07:32:29
* @LastEditors: Vincent Young
* @LastEditTime: 2023-03-16 20:24:59
* @LastEditTime: 2023-03-21 16:55:40
* @FilePath: /DeepLX/README.md
* @Telegram: https://t.me/missuo
*
@ -124,6 +124,23 @@ systemctl enable deeplx
![6a48ba28621f2465028f0](https://missuo.ru/file/6a48ba28621f2465028f0.png)
## Use in Python
```python
import httpx, json
deeplx_api = "http://127.0.0.1:1188/translate"
data = {
"text": "Hello World",
"source_lang": "EN",
"target_lang": "ZH"
}
post_data = json.dumps(data)
r = httpx.post(url = deeplx_api, data = post_data).text
print(r)
```
## Backup the Docker Image of zu1k
```shell
docker run -itd -p 1188:80 missuo/deeplx-bk