Skip to content

samhza/discordutils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

discordutils

A collection of command-line utilities for Discord.

Installation

Requires Go 1.16+.

go install samhza.com/discordutils/cmd/...@latest         # install all tools
go install samhza.com/discordutils/cmd/deferreddel@latest # install a single tool

Authentication

All tools will look for a Discord token in ~/.config/discord-token if not provided via the -tok flag. To extract and save your token:

# Linux
discordtok > ~/.config/discord-token

# macOS
discordtok > ~/Library/Application\ Support/discord-token

# Windows (PowerShell)
discordtok > $env:APPDATA\discord-token

Archiving

discorddel/deferreddel can optionally archive your messages that they delete. Messages get logged to an SQLite database and their attachments get downloaded.

discorddel

Delete messages in a specific channel/guild. If a guild is specified without specifying a channel, then all your messages in that guild will be deleted. To delete messages in DM channels, only specify channel ID.

Usage:
  -archive string
    	directory to log deleted messages in
  -channel uint
    	Discord channel ID
  -guild uint
    	Discord guild ID
  -tok string
    	Discord user token

Examples

# Delete all your messages in a guild, archiving them in ./archive
discorddel -archive ./archive -guild <guild ID>
# Delete all your messages in a specific guild channel, without archiving
discorddel -guild <guild ID> -channel <guild channel ID>
# Delete all your messages in a DM channel, without archiving
discorddel -channel <dm channel ID>

deferreddel

Automatically deletes your messages after a specified duration. You can specify guilds using the -g flag, and if you don't specify any guilds then all of your messages will self-destruct.

Usage:
  -archive string
    	directory to log deleted messages in
  -dur duration
    	delay for deleting messages (default 48h0m0s)
  -g value
    	guild ID to delete messages from (can be specified multiple times)
  -tok string
    	token
  -v	log queued message deletions

discordtok

Extracts Discord authentication token from your local Discord installation (supports regular, Canary, and PTB versions).

dsendto

Uploads files to Discord channels.

Usage:
  -ch value
    	channel ID
  -f string
    	input file (default "-")
  -n string
    	file name (default "stdout.txt")
  -tok string
    	token

snowstamp

Converts Discord snowflake IDs to human-readable timestamps.

Usage:
  snowstamp <snowflake> [snowflake...]

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages