This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Buyee Package Information Image Inserter | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Adds product images to the package information shipping tab for mercari and yahoo auctions | |
// @author NO_ob | |
// @match https://buyee.jp/mybaggages/shipped/1* | |
// @icon https://www.google.com/s2/favicons?domain=buyee.jp | |
// @updateURL https://gist.github.com/NO-ob/440a87a761732e46c8b1997146ebc504/raw/addBuyeeShippingImages.user.js | |
// @downloadURL https://gist.github.com/NO-ob/440a87a761732e46c8b1997146ebc504/raw/addBuyeeShippingImages.user.js |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import discord | |
import requests | |
import re | |
from copy import deepcopy | |
## The bot needs persm to make messages, manage messages and manage webhook | |
## set the value at the botton to the bots token | |
intents=discord.Intents.default() | |
intents.message_content = True | |
client = discord.Client(intents=intents) |
OlderNewer