Open-source AI data analyst platform extracted from internal repo. Includes data sync engine, Keboola adapter, Flask web portal, server deployment scripts, and configuration templates.
7 lines
107 B
Python
7 lines
107 B
Python
"""Allow running as: python -m telegram_bot"""
|
|
|
|
import asyncio
|
|
|
|
from .bot import main
|
|
|
|
asyncio.run(main())
|