Skip to content

use-py/usepy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

logo

usepy是一个简单易用的Python工具库,包含了一些常用的工具函数。

Test Downloads Package version Supported Python versions

安装

pip install usepy -U

示例及文档

官方文档

演示

  • useAdDict
from usepy import useAdDict

d = useAdDict(
    {'a': 1, 'b': 2, 'c': {'d': 3, 'e': 4}}
)
assert d.a == 1
assert d.c.e == 4
  • useBloomFilter
from redis import Redis
from usepy import useBloomFilter

rds = Redis(host='localhost', port=6379, db=0)
bf = useBloomFilter(client=rds)
bf.add('hi', 'miclon')
assert bf.exists('hi') is True
assert bf.exists('miclon') is True
assert bf.exists('python') is False

更多参阅官方文档

贡献

欢迎提交PR,一起完善这个工具库。