from aiogram import Bot,types
from aiogram.dispatcher import Dispatcher
from aiogram.utils import executor
import datetime
import os
bot = Bot(token=os.getenv('TOKEN'))
dp = Dispatcher(bot)
now = datetime.datetime.now()
now = now.hour
CHANNEL_NAME = 'ID'
channel_name = 'Address'
bot.send_message(CHANNEL_NAME, "test")
bot.send_message(channel_name, 'test')
executor.start_polling(dp, skip_updates=True)