A simple Discord chat exporter for Python Discord bots.
Project description
Py-Discord-HTML-Transcripts
Credits
This code was NOT made by me, but is a fork and altered for my needs. All credit goes to the original developer.
Requirements
discord.py
v2.4.0 or later
Installation
To install the library to your virtual environment, for bot usage, run the command:
pip install py-discord-html-transcripts
Usage
There are currently 3 methods (functions) to chat-exporter
which you can use to export your chat.
Expand the blocks below to learn the functions, arguments and usages.
Basic Usage
.quick_export()
is the simplest way of using chat-exporter.
Using the quick_export function will gather the history of the channel you give, build the transcript then post the file and embed directly to the channel - returning a message object gathered from the message it posted.
This is mostly seen as a demo function, as opposed to a command you should actually use.
Required Argument(s):
channel
: discord.TextChannel
object, whether ctx.channel
or any channel you gather.
Optional Argument(s):
bot
: commands.Bot
object to gather members who are no longer in your guild.
Return Argument:
discord.Message
: The message quick_export will send, containing the embed and exported chat file.
Example:
import discord
import chat_exporter
from discord.ext import commands
intents = discord.Intents.default()
intents.members = True
intents.message_content = True
bot = commands.Bot(command_prefix="!", intents=intents)
...
@bot.command()
async def save(ctx: commands.Context):
await chat_exporter.quick_export(ctx.channel)
...
Customisable Usage
.export()
is the most efficient and flexible method to export a chat using chat-exporter.
Using the export function will generate a transcript using the channel you pass in, along with using any of the custom kwargs passed in to set limits, timezone, 24h formats and more (listed below).
This would be the main function to use within chat-exporter.
Required Argument(s):
channel
: discord.TextChannel
object, whether ctx.channel
or any channel you gather.
Optional Argument(s):
limit
: Integer value to set the limit (amount of messages) the chat exporter gathers when grabbing the history (default=unlimited).
tz_info
: String value of a TZ Database name to set a custom timezone for the exported messages (default=UTC)
guild
: discord.Guild
object which can be passed in to solve bugs for certain forks
military_time
: Boolean value to set a 24h format for times within your exported chat (default=False | 12h format)
fancy_times
: Boolean value which toggles the 'fancy times' (Today|Yesterday|Day)
before
: datetime.datetime
object which allows to gather messages from before a certain date
after
: datetime.datetime
object which allows to gather messages from after a certain date
bot
: commands.Bot
object to gather members who are no longer in your guild.
Return Argument:
transcript
: The HTML build-up for you to construct the HTML File with Discord.
Example:
import io
...
@bot.command()
async def save(ctx: commands.Context, limit: int = 100, tz_info: str = "UTC", military_time: bool = True):
transcript = await chat_exporter.export(
ctx.channel,
limit=limit,
tz_info=tz_info,
military_time=military_time,
bot=bot,
)
if transcript is None:
return
transcript_file = discord.File(
io.BytesIO(transcript.encode()),
filename=f"transcript-{ctx.channel.name}.html",
)
await ctx.send(file=transcript_file)
Raw Usage
.raw_export()
is for the crazy people who like to do their own thing when using chat-exporter.
Using the raw_export function will generate a transcript using the list of messages you pass in, along with using any of the custom kwargs passed in to set limits, timezone, 24h formats and more (listed below).
This would be for people who want to filter what content to export.
Required Argument(s):
channel
: discord.TextChannel
object, whether ctx.channel
or any channel you gather (this is just for padding the header).
messages
: A list of Message objects which you wish to export to an HTML file.
Optional Argument(s):
tz_info
: String value of a TZ Database name to set a custom timezone for the exported messages (default=UTC)
military_time
: Boolean value to set a 24h format for times within your exported chat (default=False | 12h format)
fancy_times
: Boolean value which toggles the 'fancy times' (Today|Yesterday|Day)
bot
: commands.Bot
object to gather members who are no longer in your guild.
Return Argument:
transcript
: The HTML build-up for you to construct the HTML File with Discord.
Example:
import io
...
@bot.command()
async def purge(ctx: commands.Context, tz_info: str, military_time: bool):
deleted_messages = await ctx.channel.purge()
transcript = await chat_exporter.raw_export(
ctx.channel,
messages=deleted_messages,
tz_info=tz_info,
military_time=military_time,
bot=bot,
)
if transcript is None:
return
transcript_file = discord.File(
io.BytesIO(transcript.encode()),
filename=f"transcript-{ctx.channel.name}.html",
)
await ctx.send(file=transcript_file)
Screenshots
General
Discord
Chat-Exporter
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file py_discord_html_transcripts-2.1.0.tar.gz
.
File metadata
- Download URL: py_discord_html_transcripts-2.1.0.tar.gz
- Upload date:
- Size: 36.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6bc775754c105a3d9e42a690674653cd611e04ce4836e26194e29286cdba99e5 |
|
MD5 | bf02e65695faf09dd9568dfe83b1b7d6 |
|
BLAKE2b-256 | 738e8155903916500607a2328d670a3bb31427a80a4ab590fb6503aee2a867b1 |
File details
Details for the file py_discord_html_transcripts-2.1.0-py3-none-any.whl
.
File metadata
- Download URL: py_discord_html_transcripts-2.1.0-py3-none-any.whl
- Upload date:
- Size: 49.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c706506f6eb63f097ef347abd617c28ab25d3694e2aa9dc85ca2e56acc229255 |
|
MD5 | a4d7936e48c5beffeab2362e38e9cf03 |
|
BLAKE2b-256 | e864b575587f9e4927eb3f0ba3caa4ec2752585208170deb93b903fcb0708117 |