LinkedinMonitor / utils /__init__.py
GuglielmoTor's picture
Update utils/__init__.py
2378b71 verified
raw
history blame contribute delete
454 Bytes
# __init__.py
"""
Initialization file for the custom Python package.
This file makes key functions and classes from the submodules
available at the package level.
"""
# Import from gradio_utils.py
from .gradio_utils import get_url_user_token
# You can also define an __all__ variable to specify
# what symbols are exported when `from <package_name> import *` is used.
# This is good practice for larger packages.
__all__ = [
'get_url_user_token'
]