markdown mode Kulanmam lazım ama yapamadım
last = None
while True:
try:
lastContent, lastTitle, ImageUrl = self.getLastContent(url=self.url, title="title", caption="description", image="media:content", image_url="@url")
if lastContent is not None and lastTitle is not None and ImageUrl is not None:
send_content = f"📍{lastTitle}\n\n👉{lastContent} \n\n@habermedusa"
if lastTitle != last:
last = lastTitle
self.sendPhotoFromTg(token=bot_token, chat=channelId, caption=send_content, photo=ImageUrl)
sleep(10)