usepy
Project description
安装
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,一起完善这个工具库。
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
usepy-0.2.8.tar.gz
(67.1 kB
view hashes)
Built Distribution
usepy-0.2.8-py3-none-any.whl
(78.1 kB
view hashes)