create separation package

This commit is contained in:
Joel Mathew Thomas
2024-12-26 13:19:08 +05:30
parent 53538230c4
commit e7c750483e
2 changed files with 12 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
# __init__.py
import logging
from datetime import datetime
# Configure logging
logging.basicConfig(
format='%(asctime)s : %(message)s',
level = logging.INFO
)
logging.info("freq-split-enhance/separation package has been imported.")
View File