常用工具类方法集合
Project description
This is my common Python tool classes.
# Main page is https://pypi.org/project/wcommon/ .
### /data/apps/public/conf.ini content like:
```
[mysql]
host=example.com
port=3306
user=username
passwd=password
database=test
charset=utf8mb4
```
### Find the localhost internal network ip:
```python
from wcommon import *
ip = getLocalIp()
hostname = getLocalHostname()
```
### Decode unusual json string:
```python
from wcommon import *
line = """
{
name:'java',
system:'linux'
}
"""
result = dejson(line)
# output result
{"name":"java","system":"linux"}
```
```python
# check the reuquirement list
check_requirement(['requests','flask'])
```
### Operate mysql data:
```python
mysql = Mysql(configuraion_file="/data/apps/public/conf.ini", section="mysql")
```
```python
# query
rows = mysql.query("select * from example_table where status = %s order by id desc limit %s",(1,10))
for row in rows:
print(row)
```
```python
# bulk_insert
mysql.bulk_insert("test.person",["name","age"],[["mahuateng",40],["liyanhong",39]])
```
```python
# bulk_insert
mysql.bulk_insert2("test.person",[{"name":"ma2","age":40},{"name":"liyanhong2","age":39},{"name":"ren"}] )
```
## Feature
### 1.3.8
可以通过check_requirement方法检测依赖包是否已经安装,如果没有安装,则提示安装。
### 1.6.5
为`Elasticsearch`增加`query`方法
### 1.8.0.0
增加 AppleScriptTool 类。此类只在Mac上有效
### 2.0.0
增加MqServer和MqProducer类,这两个类是对zeromq的包装
### 2.0.5
增加MqConsumer类
### 2.6.1
增加DubboKit类
```python
client = DubboTool("10.50.5.10", 20880)
# 获取服务代理
StatisticsApi = client.new("com.example.bigdata.statistics.api.StatisticsApi")
# 直接调用方法,就像本地函数一样
result = StatisticsApi.getExtUrlData({"sceneId": "264420791", "product": "tracker_view"})
print("调用结果:", result)
```
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
wcommon-2.6.6.tar.gz
(19.7 kB
view details)
File details
Details for the file wcommon-2.6.6.tar.gz.
File metadata
- Download URL: wcommon-2.6.6.tar.gz
- Upload date:
- Size: 19.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
919797ac39a623da310398aedc301deca0e498fd50a0d885169931b69b2f0b0b
|
|
| MD5 |
6827f5c989eae1904a12f9749c69c0b7
|
|
| BLAKE2b-256 |
e1a763e2bacaad39f8a867035f038696cef373abb9636d2a61c2c2223d427afc
|