You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
1.5 KiB

import requests
from os import environ
import json
from datetime import datetime
from time import sleep
TOKEN = environ.get("TOKEN")
CHANNEL_ID = "@wowneromemes"
def get_memes():
return json.loads(requests.get("https://suchwow.xyz/api/list").text)
while True:
for meme in get_memes()[::-1]:
with open("db.json", "r") as f:
db = json.loads(f.read())
if meme["id"] in db:
continue
else:
date = datetime.strptime(meme["timestamp"], "%a, %d %b %Y %H:%M:%S %Z").strftime("%Y-%m-%d, %H:%M:%S GMT")
title = meme["title"]
media = meme["image"]
submitter = meme["submitter"]
address = meme["address"]
meme_url = meme["href"]
params = {
"chat_id": CHANNEL_ID,
"photo": media,
"parse_mode": "HTML",
"caption": f'<b>{title}</b>\n\n<i>Submitted by <a href="https://suchwow.xyz/?submitter={submitter}">{submitter}</a> at {date}</i>.\n\nDonate author:\n<code>{address}</code>',
"reply_markup": {
"inline_keyboard": [[{"text": "Original post", "url": meme_url}]]
}
}
url = f"https://api.telegram.org/bot{TOKEN}/sendPhoto"
r = requests.post(url, json=params)
print(r.text)
db.append(meme["id"])
with open("db.json", "w") as f:
f.write(json.dumps(db))
sleep(3)