diff --git a/news/import_parser.rst b/news/import_parser.rst new file mode 100644 index 0000000..5ef0e00 --- /dev/null +++ b/news/import_parser.rst @@ -0,0 +1,23 @@ +**Added:** + +* + +**Changed:** + +* import parsers modules in its __init__.py for consistent API. + +**Deprecated:** + +* + +**Removed:** + +* + +**Fixed:** + +* + +**Security:** + +* diff --git a/src/diffpy/utils/parsers/__init__.py b/src/diffpy/utils/parsers/__init__.py index a0278e2..98ef6c9 100644 --- a/src/diffpy/utils/parsers/__init__.py +++ b/src/diffpy/utils/parsers/__init__.py @@ -13,3 +13,7 @@ # ############################################################################## """Various utilities related to data parsing and manipulation.""" + +from diffpy.utils.parsers import custom_exceptions # noqa: F401 +from diffpy.utils.parsers import loaddata # noqa: F401 +from diffpy.utils.parsers import serialization # noqa: F401