mirror of
https://github.com/luzhisheng/js_reverse.git
synced 2025-04-22 10:05:45 +08:00
16 lines
291 B
Python
16 lines
291 B
Python
# -*- coding: utf-8 -*-
|
|
# @时间 : 2019-12-15 14:31
|
|
# @作者 : 陈祥安
|
|
# @文件名 : client.py
|
|
# @公众号: Python学习开发
|
|
import requests
|
|
|
|
|
|
url = "http://127.0.0.1:3000/crypto"
|
|
|
|
data = {
|
|
"user": "liming", "password": "1234qwer"
|
|
}
|
|
req = requests.post(url,data)
|
|
print(req.text)
|