encapsulation of some useful features
Project description
izen 库
=====
> izen, 封装一些常用功能
## 功能列表
- [x] 配置文件
- [x] 加密解密
- [x] 常用装饰器
- [x] 常用辅助功能
- [x] mqtt通信
- [x] redis通信
- [x] 定期任务
### `icfg.py`
使用样例
```python
>>> import logzero
>>> from logzero import logger as log
>>> from izen.icfg import Conf, LFormatter
>>> pth_cfg = '/tmp/.code.cnf'
>>> cfg = Conf(
... pth=pth_cfg,
... dat={
... 'mg.host': '127.0.0.1',
... 'mg.port': 27027,
... 'mg.db': 'test_db',
... 'rds.host': '127.0.0.1',
... 'rds.port': 6379,
... 'rds.db': {
... 'val': 0,
... 'proto': str
... },
... }
... ).cfg
>>> if cfg.get('log.enabled', False):
... logzero.logfile(
... cfg.get('log.file_pth', '/tmp/.code.log'),
... maxBytes=cfg.get('log.file_size', 5) * 1000000,
... backupCount=cfg.get('log.file_backups', 3),
... loglevel=cfg.get('log.level', 10),
... )
...
>>> bagua = '🍺🍻♨️️😈☠'
>>> formatter = LFormatter(bagua)
>>> logzero.formatter(formatter)
>>>
>>> log.debug('hi')
🍺 D 180417 16:36:05 <stdin>:1 | hi
>>> log.info('hi')
🍻 I 180417 16:37:21 <stdin>:1 | hi
>>> log.warning('hi')
♨ W 180417 16:37:35 <stdin>:1 | hi
>>> log.error('hi')
️ E 180417 16:37:41 <stdin>:1 | hi
```
### 装饰器
i.e. `dec.catch`, 自动捕获函数内程序错误, 并保证其他函数可以正常运行
```python
>>> from izen import dec
>>>
>>>
>>> @dec.catch(True, ZeroDivisionError)
... def terr():
... print('divide by 0')
... print(1 / 0)
... print('i can not go here.')
...
>>>
>>> def t():
... terr()
... print('but i can go here.')
...
>>> t()
divide by 0
[E 180417 16:25:41 dec:457] <stdin>(1)>terr: has err(division by zero)
Traceback (most recent call last):
File "/Users/lihe/pan.weiyun/tinyc/smartwear/izen/izen/dec.py", line 452, in wrapper_
return fn(*args, **kwargs)
File "<stdin>", line 4, in terr
ZeroDivisionError: division by zero
but i can go here.
```
=====
> izen, 封装一些常用功能
## 功能列表
- [x] 配置文件
- [x] 加密解密
- [x] 常用装饰器
- [x] 常用辅助功能
- [x] mqtt通信
- [x] redis通信
- [x] 定期任务
### `icfg.py`
使用样例
```python
>>> import logzero
>>> from logzero import logger as log
>>> from izen.icfg import Conf, LFormatter
>>> pth_cfg = '/tmp/.code.cnf'
>>> cfg = Conf(
... pth=pth_cfg,
... dat={
... 'mg.host': '127.0.0.1',
... 'mg.port': 27027,
... 'mg.db': 'test_db',
... 'rds.host': '127.0.0.1',
... 'rds.port': 6379,
... 'rds.db': {
... 'val': 0,
... 'proto': str
... },
... }
... ).cfg
>>> if cfg.get('log.enabled', False):
... logzero.logfile(
... cfg.get('log.file_pth', '/tmp/.code.log'),
... maxBytes=cfg.get('log.file_size', 5) * 1000000,
... backupCount=cfg.get('log.file_backups', 3),
... loglevel=cfg.get('log.level', 10),
... )
...
>>> bagua = '🍺🍻♨️️😈☠'
>>> formatter = LFormatter(bagua)
>>> logzero.formatter(formatter)
>>>
>>> log.debug('hi')
🍺 D 180417 16:36:05 <stdin>:1 | hi
>>> log.info('hi')
🍻 I 180417 16:37:21 <stdin>:1 | hi
>>> log.warning('hi')
♨ W 180417 16:37:35 <stdin>:1 | hi
>>> log.error('hi')
️ E 180417 16:37:41 <stdin>:1 | hi
```
### 装饰器
i.e. `dec.catch`, 自动捕获函数内程序错误, 并保证其他函数可以正常运行
```python
>>> from izen import dec
>>>
>>>
>>> @dec.catch(True, ZeroDivisionError)
... def terr():
... print('divide by 0')
... print(1 / 0)
... print('i can not go here.')
...
>>>
>>> def t():
... terr()
... print('but i can go here.')
...
>>> t()
divide by 0
[E 180417 16:25:41 dec:457] <stdin>(1)>terr: has err(division by zero)
Traceback (most recent call last):
File "/Users/lihe/pan.weiyun/tinyc/smartwear/izen/izen/dec.py", line 452, in wrapper_
return fn(*args, **kwargs)
File "<stdin>", line 4, in terr
ZeroDivisionError: division by zero
but i can go here.
```
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
izen-0.1.20180402.tar.gz
(27.3 kB
view details)
Built Distribution
File details
Details for the file izen-0.1.20180402.tar.gz
.
File metadata
- Download URL: izen-0.1.20180402.tar.gz
- Upload date:
- Size: 27.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0023d1da4e50732028a4ae6540ce9f3c051f4be4c2100b43d5dea47b80376c2c |
|
MD5 | 5c89f93050d212672fb1771acb4450f4 |
|
BLAKE2b-256 | b974953a40d2e2268c885670150d9bdbdac95bc0b3b72277e13d987e1a764886 |
File details
Details for the file izen-0.1.20180402-py3-none-any.whl
.
File metadata
- Download URL: izen-0.1.20180402-py3-none-any.whl
- Upload date:
- Size: 31.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | efe402f5991ff21ebacfd9c90407361e464bd5d3427a241caf75043c0830f3a7 |
|
MD5 | 1d98334d8d18eabd3a36a0418a6e1c33 |
|
BLAKE2b-256 | 99ccc9b4d685d2e7ad6306caf8f04bf9cb9b7ae76c858ef40c0933a736e8684d |