Exports Discord chat logs to a file
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.
 
 
 
Go to file
Tyrrrz 471d0d01cf
Rethink test folder structure and add some more
3 years ago
.config Update XamlStyler 4 years ago
.github Refactor webhook trigger in CD 3 years ago
.screenshots Update screenshots 4 years ago
DiscordChatExporter.Cli Clean up tests 3 years ago
DiscordChatExporter.Cli.Tests Rethink test folder structure and add some more 3 years ago
DiscordChatExporter.Core Rename MessageFilter.Filter(...) to MessageFilter.IsMatch(...) 3 years ago
DiscordChatExporter.Gui Normalize namings ("...Type" -> "...Kind") 3 years ago
.gitignore Basic automated tests through the CLI 3 years ago
Changelog.md Update version 3 years ago
Directory.Build.props Update version 3 years ago
DiscordChatExporter.sln Basic automated tests through the CLI 3 years ago
Dockerfile Add NuGet.config 3 years ago
License.txt Update version 3 years ago
NuGet.config Update NuGet.config 3 years ago
Readme.md Add mentions of the Discord server 3 years ago
favicon.ico Add icon 7 years ago
favicon.png Add icon 7 years ago
logo.png Add logo image 5 years ago

Readme.md

DiscordChatExporter

Build Coverage Release Downloads Discord Donate

Project status: active.

DiscordChatExporter can be used to export message history from a Discord channel to a file. It works with direct messages, group messages, and server channels, and supports Discord's dialect of markdown as well as all other rich media features.

If you have questions or issues, please refer to the wiki.

💬 If you want to chat, join my Discord server.

Download

This application comes in two flavors: graphical user interface (GUI) and command line interface (CLI). The following table lists all available download options:

Downloads Supported OS
GUI
  • Windows 7 or higher
CLI
  • 🟢 Stable release (DiscordChatExporter.CLI.zip) ⚙️
  • 🟠 CI build (DiscordChatExporter.CLI.zip) ⚙️
  • 🐋 Docker (tyrrrz/discordchatexporter)
  • 📦 AUR (discord-chat-exporter-cli) 🦄
  • Windows 7 or higher
  • macOS 10.13 (High Sierra) or higher
  • Linux (multiple distros)

Features

  • Graphical user interface (Windows)
  • Command line interface (Windows, Linux, macOS)
  • Support for both user and bot tokens
  • Support for Discord's dialect of markdown
  • Support for Discord's message filter syntax
  • Support for attachments, embeds, emoji, and other rich media features
  • Multiple output formats: HTML (dark/light), TXT, CSV, JSON
  • File partitioning, date ranges, and other export options
  • Exports messages on the fly without buffering in-memory

Screenshots

channel list rendered output

Building the project locally

Prerequisites:

To build the entire solution run the following command in the root of the repository:

> dotnet build

This will generate runtime artifacts for each project:

./DiscordChatExporter.Gui/bin/[Debug|Release]/[runtime]/*
./DiscordChatExporter.Cli/bin/[Debug|Release]/[runtime]/*

You can also build and run a specific project directly. To do that, navigate to its directory and use dotnet run:

> cd DiscordChatExporter.Gui
> dotnet run