# DiscordChatExporter [![Build](https://github.com/Tyrrrz/DiscordChatExporter/workflows/CI/badge.svg?branch=master)](https://github.com/Tyrrrz/DiscordChatExporter/actions) [![Coverage](https://codecov.io/gh/Tyrrrz/DiscordChatExporter/branch/master/graph/badge.svg)](https://codecov.io/gh/Tyrrrz/DiscordChatExporter) [![Release](https://img.shields.io/github/release/Tyrrrz/DiscordChatExporter.svg)](https://github.com/Tyrrrz/DiscordChatExporter/releases) [![Downloads](https://img.shields.io/github/downloads/Tyrrrz/DiscordChatExporter/total.svg)](https://github.com/Tyrrrz/DiscordChatExporter/releases) [![Discord](https://img.shields.io/discord/869237470565392384?label=discord)](https://discord.gg/2SUWKFnHSm) [![Donate](https://img.shields.io/badge/donate-$$$-purple.svg)](https://tyrrrz.me/donate) ✅ **Project status: active**. [What does it mean?](https://github.com/Tyrrrz/shared/blob/master/docs/project-status.md) **DiscordChatExporter** can be used to export message history from a [Discord](https://discord.com) 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](https://github.com/Tyrrrz/DiscordChatExporter/wiki)**. 💬 **If you want to chat, join my [Discord server](https://discord.gg/2SUWKFnHSm)**. ## 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)
- ⚙️ - Requires .NET runtime to be installed manually: - [.NET v6.0 Runtime for **Windows x64**](https://dotnet.microsoft.com/download/dotnet-core/thank-you/runtime-desktop-6.0.0-windows-x64-installer) - [.NET v6.0 Runtime for **Windows x86**](https://dotnet.microsoft.com/download/dotnet-core/thank-you/runtime-desktop-6.0.0-windows-x86-installer) - [.NET v6.0 Runtime for **macOS x64**](https://dotnet.microsoft.com/download/dotnet-core/thank-you/runtime-6.0.0-macos-x64-installer) - [.NET v6.0 Runtime for **Linux**](https://docs.microsoft.com/en-us/dotnet/core/install/linux) (find your distro) - 🦄 - Community-maintained resource ## 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](.screenshots/list.png) ![rendered output](.screenshots/output.png) ## Building the project locally Prerequisites: - [.NET 6.0 SDK](https://dotnet.microsoft.com/download/dotnet/6.0) - _(Recommended)_ C#/.NET IDE, such as [JetBrains Rider](https://www.jetbrains.com/rider), [VS Code](https://code.visualstudio.com/docs/languages/csharp), or [Visual Studio](https://visualstudio.microsoft.com). To build the entire solution run the following command in the root of the repository: ```sh > dotnet build ``` This will generate runtime artifacts for each project: ```plaintext ./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`: ```sh > cd DiscordChatExporter.Gui > dotnet run ```