Всем привет! Я хочу отправлять пользователям бота прогноз погоды в выбранное ими время, но для этого нужно указать chat_id, все работает если я указываю его вручную, но как мне автоматизировать этот процесс?
import requests
import datetime
from config import open_weather_token, bot_token
from aiogram import Bot, types
from aiogram.dispatcher import Dispatcher
from aiogram.utils import executor
from aiogram.types import InlineKeyboardButton, InlineKeyboardMarkup
import time
import asyncio
import apscheduler
from apscheduler.schedulers.asyncio import AsyncIOScheduler
bot= Bot(token=bot_token)
dp= Dispatcher(bot)
@dp.message_handler(commands=["start"])
async def start_command(message: types.Message):
await message.reply ("Привет, {0.first_name}! Напиши мне название своего города и я пришлю сводку погоды!".format(message.from_user))
@dp.message_handler()
async def get_weather(message: types.Message):
code_to_smile= {
"Clear": "Ясно \U00002600",
"Clouds": "Облачно \U00002601",
"Rain": "Дождь \U00002614",
"Drizzle": "Дождь \U00002614",
"Thunderstorm": "Гроза \U000026A1",
"Snow": "Снег \U0001F328",
"Mist": "Туман \U0001F32B"
}
try:
r= requests.get(
f"http://api.openweathermap.org/data/2.5/weather?q={message.text}&appid={open_weather_token}&units=metric")
data= r.json()
city = data["name"]
cur_weather= data["main"]["temp"]
weather_description= data["weather"][0]["main"]
if weather_description in code_to_smile:
wd= code_to_smile[weather_description]
else:
wd= "Посмотри в окно, не пойму что там за погода!"
humidity = data["main"]["humidity"]
pressure = data["main"]["pressure"]
wind = data["wind"]["speed"]
sunrise_timestamp = datetime.datetime.fromtimestamp(data["sys"]["sunrise"])
sunset_timestamp = datetime.datetime.fromtimestamp(data["sys"]["sunset"])
length_of_the_day = datetime.datetime.fromtimestamp(data["sys"]["sunset"]) - datetime.datetime.fromtimestamp(
data["sys"]["sunrise"])
await message.reply(f"***{datetime.datetime.now().strftime('%Y-%m-%d %H:%M')}***\n"
f"Погода в городе: {city}\nТемпература: {cur_weather}C° {wd}\n"
f"Влажность: {humidity}%\nДавление: {pressure} мм.рт.ст\nВетер: {wind} м/с\n"
f"Восход солнца: {sunrise_timestamp}\nЗакат солнца: {sunset_timestamp}\nПродолжительность светового дня: {length_of_the_day}\n"
f"Хорошего дня!"
)
except:
await message.reply('Проверьте название города')
@dp.message_handler()
async def job():
await dp.bot.send_message(chat_id=1508731548, text="Привет, я - затычка")
scheduler= AsyncIOScheduler( timezone="Europe/Moscow")
scheduler.add_job(job,'cron',day_of_week='mon-sun', hour=21, minute=9)
scheduler.start()
if __name__ == "__main__":
executor.start_polling(dp, skip_updates=True)