interactions.py icon indicating copy to clipboard operation
interactions.py copied to clipboard

A highly extensible, easy to use, and feature complete bot framework for Discord

Results 107 interactions.py issues
Sort by recently updated
recently updated
newest added

### Library Version 5.11.0 ### Describe the Bug While creating a new tag for a forum you can set the moderation value for it. ![image](https://github.com/interactions-py/interactions.py/assets/51890392/af101b91-e144-4b91-967d-c8e71b5129b2) ![image](https://github.com/interactions-py/interactions.py/assets/51890392/131b8810-ba25-4b13-9f92-36a5695011a3) https://discord.com/developers/docs/resources/channel#forum-tag-object-forum-tag-structure ### Steps to...

question
specific condition

### Library Version 5.10.0 ### Describe the Bug Using `Paginator` from the `interactions.ext.paginators` extension will throw a `TypeError` for missing embed footers. From `@algorythm_cs` on Discord: ``` File "...\interactions\ext\paginators.py", line...

bug
help wanted
specific condition

### Problem Description Sometimes you want to trigger something every hour at full hour. Therefor you have to create 24 TimeTriggers. Don´t want to think about every quarter hour. 😮...

enhancement
on hold

While we're not quite at the point of making breaking changes yet, this tracker serves to list things that we want to change when we decide to pull the trigger....

enhancement
help wanted
breaking
on hold

### Library Version latest ### Describe the Bug The guild that a message command is used on is not defined (i.e. `ctx.target.guild` is None). Most of the time, `ctx.guild` can...

help wanted
question

### Library Version 5.8.0 ### Describe the Bug `create_forum_channel()` and `create_media_channel()` is missing ![image](https://github.com/interactions-py/interactions.py/assets/51890392/0d7ba3cc-1b14-4d03-b0ce-db4cbd76808d) ### Steps to Reproduce try to create a forum/media channel without using the normal `create_channel(channel_type=ChannelType.GUILD_FORUM/MEDIA)` method...

good first issue
on hold

## Pull Request Type - [x] Feature addition - [x] Bugfix (PR would not work without them) - [x] Documentation update - [ ] Code refactor - [ ] Tests...

documentation
enhancement
pending

updates: - [github.com/pre-commit/pre-commit-hooks: v4.6.0 → v5.0.0](https://github.com/pre-commit/pre-commit-hooks/compare/v4.6.0...v5.0.0) - [github.com/astral-sh/ruff-pre-commit: v0.4.3 → v0.11.13](https://github.com/astral-sh/ruff-pre-commit/compare/v0.4.3...v0.11.13) - [github.com/psf/black: 24.4.2 → 25.1.0](https://github.com/psf/black/compare/24.4.2...25.1.0)

## Pull Request Type - [X] Feature addition - [ ] Bugfix - [ ] Documentation update - [ ] Code refactor - [ ] Tests improvement - [ ]...

### Problem Description To reduce lines of code for switching from buttons to select menu I would recommend to implement a function in Paginators Class. before: ```py paginator.show_select_menu = True...