SciPIP / src /config /__init__.py
lihuigu's picture
update assets
0b619bd
raw
history blame contribute delete
361 Bytes
r"""_summary_
-*- coding: utf-8 -*-
Module : config
File Name : __init__.py
Description : About config.
for example:
```
from config import ConfigReader
config = ConfigReader.load(f, **kwargs)
```
Creation Date : 2024-10-30
Author : Frank Kang([email protected])
"""
from .reader import ConfigReader
__all__ = ['ConfigReader']