test tea drop platfrom
Project description
一、安装(python版本建议3.7以上)
pip install dubborequests
二、升级包
pip install --upgrade dubborequests
三、示例
获取dubbo服务详情
# 导入
import dubborequests
# 获取dubbo服务详情
data = dubborequests.search('cn.com.xxx.sso.ehr.api.dubbo.SsoEmpInfoService')
获取服务下的所有方法
# 导入
import dubborequests
# 获取dubbo服务下的所有方法
data = dubborequests.list('cn.com.xxx.sso.ehr.api.dubbo.SsoEmpInfoService')
# 获取dubbo服务指定的方法
data = dubborequests.list('cn.com.xxx.sso.ehr.api.dubbo.SsoEmpInfoService', 'login')
通过zookeeper获取服务的ip和端口, Telnet命令测试dubbo接口
import dubborequests
from dubborequests import Config
# 先配置zookeeper中心地址
Config.zookeeper_url_list = ['192.168.240.15:2181', '192.168.240.15:2182', '192.168.240.15:2183']
invoke_data = {
"service_name": "cn.com.xxxxx.sso.ehr.api.dubbo.SsoEmpInfoService",
"method_name": "login",
"data": {
"account": "xxxx",
"password": "xxxx"
}
}
# 通过zookeeper获取服务的ip和端口, Telnet命令测试dubbo接口
data = dubborequests.zk_invoke(*invoke_data)
Telnet命令测试dubbo接口
import dubborequests
invoke_data = {
"ip": 'xxxx',
"port": 7777,
"service_name": "cn.com.xxxxx.sso.ehr.api.dubbo.SsoEmpInfoService",
"method_name": "login",
"data": {
"account": "xxxx",
"password": "xxxx"
}
}
# Telnet命令测试dubbo接口
data = dubborequests.telnet_invoke(*invoke_data)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
testairdroptea-0.1.tar.gz
(2.7 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file testairdroptea-0.1.tar.gz.
File metadata
- Download URL: testairdroptea-0.1.tar.gz
- Upload date:
- Size: 2.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8cd72ffb03033880dca2f8ab0c97126af5e4d0018907fc848ebcb918cdbd0ee2
|
|
| MD5 |
a59944eb41ecb3dc74835f52f525e026
|
|
| BLAKE2b-256 |
dfe89fa76ffdc1335d2d4fa8740079fa3df625164f253af48fc5e9972c84edbc
|
File details
Details for the file testairdroptea-0.1-py3-none-any.whl.
File metadata
- Download URL: testairdroptea-0.1-py3-none-any.whl
- Upload date:
- Size: 2.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ecc6ee008b6fe4d7a75d552b87f9aa3fc6a3d8ba79cc1a1b508f5200bad5e21
|
|
| MD5 |
315c31c236ce2550f9fb06720d47fb0d
|
|
| BLAKE2b-256 |
5ec04937ec97c885ca1be859d34dfdaeb918b24e9de3fe4bda864440a846df96
|