-
Notifications
You must be signed in to change notification settings - Fork 5
/
mercari.py
48 lines (38 loc) · 1.59 KB
/
mercari.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import requests, json
from logging import info
from xml.dom.minidom import parseString
from lightbulb import BotApp
from hikari import Embed, Color
async def check_mercari(bot: BotApp, alert: dict) -> None:
res = requests.post(
f"https://zenmarket.jp/en/mercari.aspx/getProducts?q={alert['name']}&sort=new&order=desc",
json={"page": 1},
headers={
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3"
},
)
content = json.loads(res.json()["d"])
for item in content["Items"]:
if bot.d.synced.find_one(name=item["ItemCode"]):
info("[mercari] already synced — up to date")
continue
embed = Embed()
embed.color = Color(0x09B1BA)
embed.title = item["ClearTitle"] or "Unknown"
if item["ItemCode"]:
embed.url = (
"https://zenmarket.jp/fr/mercariproduct.aspx?itemCode="
+ item["ItemCode"]
)
if item["PreviewImageUrl"]:
embed.set_image(item["PreviewImageUrl"])
if item["PriceTextControl"]:
try:
dom = parseString(item["PriceTextControl"])
price = dom.getElementsByTagName("span")[0].getAttribute("data-eur")
embed.add_field("Price", price)
except:
pass
embed.set_footer(f"Source: Mercari — #{item['ItemCode']}")
await bot.rest.create_message(alert["channel_id"], embed=embed)
bot.d.synced.insert({"name": item["ItemCode"]})