Fetches IDs from /dbdlist.json — not meant for public use.
Downloadimport requests
import pyperclip
def main():
response = requests.get("https://issacos.online/dbdlist.json")
ids = response.json()
command = "/autochannel ban ban_targets: " + " ".join(str(i) for i in ids)
pyperclip.copy(command)
if __name__ == "__main__":
main()