Skip to main content

常用工具类方法集合

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:

from wcommon import *
ip = getLocalIp()
hostname = getLocalHostname()

Decode unusual json string:

from wcommon import *
line = """
{
    name:'java',
    system:'linux'
}
"""
result = dejson(line)
# output result
{"name":"java","system":"linux"}
# check the reuquirement list
check_requirement(['requests','flask'])

Operate mysql data:

mysql = Mysql(configuraion_file="/data/apps/public/conf.ini", section="mysql")
# 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)
# bulk_insert
mysql.bulk_insert("test.person",["name","age"],[["mahuateng",40],["liyanhong",39]])
# bulk_insert
mysql.bulk_insert2("test.person",[{"name":"ma2","age":40},{"name":"liyanhong2","age":39},{"name":"ren"}] )

Feature

1.3.8

可以通过check_requirement方法检测依赖包是否已经安装,如果没有安装,则提示安装。

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

wcommon-1.6.3.tar.gz (11.1 kB view details)

Uploaded Source

File details

Details for the file wcommon-1.6.3.tar.gz.

File metadata

  • Download URL: wcommon-1.6.3.tar.gz
  • Upload date:
  • Size: 11.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.6

File hashes

Hashes for wcommon-1.6.3.tar.gz
Algorithm Hash digest
SHA256 d00cd6ba923300ebea24caecf27f93c0dd18332a1f4bb6bc5353630b5f86c0c1
MD5 7e6a51bc90c3155e28389fa142217305
BLAKE2b-256 523268b4c968f857d90a4d71703d37ffe36a5f0d233bb40a1176bbb123934955

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page