Skip to content
This repository has been archived by the owner on Apr 10, 2023. It is now read-only.
/ files Public archive

An extension library for interactions.py allowing files in interaction responses.

License

Notifications You must be signed in to change notification settings

B1ue-Dev/files

Repository files navigation

interactions-files

PyPI - Downloads Version Python Requirement

An extension library for interactions.py allowing files in interaction responses.

Table of Contents

Installation

pip install -U interactions-files

Information

This is interactions-files, an extension library for interactions.py allowing files in interaction responses.

By default, interactions.py does not allow you to send files in CommandContext and ComponentContext. This extension exists to solve that problem by adding files field to the .send() and .edit().

Quickstart

You can load interactions-files like every other Extension by using:

client.load('interactions.ext.files')

After that, you can start sending files in Context. For example of doing this, go to this.

Alternatively, you can use the functions provided by the Extension. Take a look at an example below:

import io
import interactions
from interactions.ext.files import command_send

client = interactions.Client(token="Pfft!")

@client.command(
    name="file",
    description="Send a file.",
)
async def _test(ctx: interactions.CommandContext):
    txt = io.StringIO("This is a text file.")
    file = interactions.File(filename="file.txt", fp=txt)
    await command_send(ctx, "Below is a file.", files=file)

client.start()

For more information on the fuctions, check out the documentation.

Documentation

API Reference

About

An extension library for interactions.py allowing files in interaction responses.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages