Huggingface transformers for discord

Overview

disformers

install

pip install -U disformers

example

import discord
from disformers.DisFormers import DisFormersBot

client = discord.Client()
disformerbot = DisFormersBot(client, prefix="!")

@client.event
async def on_ready():
    print("Bot is ready.")
    
@client.event
async def on_message(message):
    await disformerbot.client_message(message=message)

if __name__ == "__main__":
    client.run('token')
  • use commands.Bot
import discord
from discord.ext import commands
from disformers.DisFormers import DisFormersBot

class MyBot(commands.Bot):
    def __init__(self, *args, **kwargs):
        super().__init__(*args, **kwargs)

    async def on_ready(self):
        print("Bot is ready.")


my_bot = MyBot(command_prefix="!", intents=discord.Intents.all())
DisFormersBot(my_bot,prefix="!")
#DisFormersBot(client,prefix="!",languague="en") default languague is English
# you can choose English(en) or Korean(ko) languague option

if __name__ == "__main__":
    my_bot.run("token")

contact

Comments
  • ⬆️ Bump torch from 1.9.1 to 1.10.0

    ⬆️ Bump torch from 1.9.1 to 1.10.0

    Bumps torch from 1.9.1 to 1.10.0.

    Release notes

    Sourced from torch's releases.

    PyTorch 1.10 Release, including CUDA Graphs APIs, Frontend and compiler improvements

    1.10.0 Release Notes

    • Highlights
    • Backwards Incompatible Change
    • New Features
    • Improvements
    • Performance
    • Documentation

    Highlights

    We are excited to announce the release of PyTorch 1.10. This release is composed of over 3,400 commits since 1.9, made by 426 contributors. We want to sincerely thank our community for continuously improving PyTorch.

    PyTorch 1.10 updates are focused on improving training and performance of PyTorch, and developer usability. Highlights include:

    • CUDA Graphs APIs are integrated to reduce CPU overheads for CUDA workloads.
    • Several frontend APIs such as FX, torch.special, and nn.Module Parametrization, have moved from beta to stable.
    • Support for automatic fusion in JIT Compiler expands to CPUs in addition to GPUs.
    • Android NNAPI support is now available in beta.

    You can check the blogpost that shows the new features here.

    Backwards Incompatible changes

    Python API

    torch.any/torch.all behavior changed slightly to be more consistent for zero-dimension, uint8 tensors. (#64642)

    These two functions match the behavior of NumPy, returning an output dtype of bool for all support dtypes, except for uint8 (in which case they return a 1 or a 0, but with uint8 dtype). In some cases with 0-dim tensor inputs, the returned uint8 value could mistakenly take on a value > 1. This has now been fixed.

    ... (truncated)

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 0
  • ⬆️ Bump zipp from 3.5.0 to 3.6.0

    ⬆️ Bump zipp from 3.5.0 to 3.6.0

    Bumps zipp from 3.5.0 to 3.6.0.

    Changelog

    Sourced from zipp's changelog.

    v3.6.0

    #78: Only Path is exposed in the public API.

    v3.5.1

    #77: Remove news file intended only for CPython.

    Commits
    • 6591fa7 Declare 'Path' as the sole public API. Fixes #78.
    • 8b20a60 Remove news entry unintentionally pulled from CPython. Fixes #77.
    • f4c9cce Merge https://github.com/jaraco/skeleton
    • 8ea55f2 Add intersphinx mappings for Python to prevent spurious nitpicky failures. Fi...
    • a76a548 .editorconfig: Set max_line_length to 88 for Python files.
    • 719a7ce Remove blacken docs as it cannot honor Python's default repr. Ref asottile/bl...
    • 498b965 Use line continuations to indicate which exclusions are for which workarounds.
    • 212e995 Remove workaround for python/typed_ast#156.
    • 14787e6 Rely on setuptools 56 and drop the explicit mention of the license file in fa...
    • See full diff in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 0
  • ⬆️ Bump charset-normalizer from 2.0.6 to 2.0.7

    ⬆️ Bump charset-normalizer from 2.0.6 to 2.0.7

    Bumps charset-normalizer from 2.0.6 to 2.0.7.

    Release notes

    Sourced from charset-normalizer's releases.

    Version 2.0.7

    We arrived in a pretty stable state.

    Changes:

    • Addition: :bento: Add support for Kazakh (Cyrillic) language detection #109
    • Improvement: :sparkle: Further improve inferring the language from a given code page (single-byte) #112
    • Removed: :fire: Remove redundant logging entry about detected language(s) #115
    • Miscellaneous: :wrench: Trying to leverage PEP263 when PEP3120 is not supported #116
      • While I do not think that this (116) will actually fix something, it will rather raise a SyntaxError (Not about ASCII decoding error) for those trying to install this package using a non-supported Python version
    • Improvement: :zap: Refactoring for potential performance improvements in loops #113 @​adbar
    • Improvement: :sparkles: Various detection improvement (MD+CD) #117
    • Bugfix: :bug: Fix a minor inconsistency between Python 3.5 and other versions regarding language detection #117 #102

    This version pushes forward the detection-coverage to 98%! https://github.com/Ousret/charset_normalizer/runs/3863881150 The great filter (cannot be better than) shall be 99% in conjunction with the current dataset. In future releases.

    Commits
    • ea44bd7 :bookmark: Version 2.0.7 (#119)
    • ccf77d2 :arrow_up: Bump flake8 from 3.9.2 to 4.0.0 (#120)
    • 06b558e :heavy_check_mark: Test against py 3.10 rc2 latest preview (#118)
    • cf1f76a :sparkle: Various detection improvement (MD+CD) (#117)
    • 42a7d3d Refactoring for potential performance improvements in loops (#113)
    • 59e48eb :fire: Remove single_byte_hard|soft_failure counters
    • 1b087b3 :wrench: Trying to leverage PEP263 when PEP3120 is ignored (#116)
    • aad0aef :fire: Remove double logging entry for the same purpose (language/coherence) ...
    • 747faeb :pencil: README minor changes
    • c415db7 :sparkle: Further improve infering the language from a given CP (single-byte)...
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 0
  • ⬆️ Bump transformers from 4.11.0 to 4.11.3

    ⬆️ Bump transformers from 4.11.0 to 4.11.3

    Bumps transformers from 4.11.0 to 4.11.3.

    Release notes

    Sourced from transformers's releases.

    v4.11.3: Patch release

    This patch release fixes a few issues encountered since the release of v4.11.2:

    • [DPR] Correct init (#13796)
    • Fix warning situation: UserWarning: max_length is ignored when padding=True" (#13829)
    • Bart: check if decoder_inputs_embeds is set (#13800)
    • include megatron_gpt2 in installed modules (#13834)
    • Fixing 1-length special tokens cut. (#13862)
    • Fixing empty prompts for text-generation when BOS exists. (#13859)
    • Fixing question-answering with long contexts (#13873)
    • Fixing GPU for token-classification in a better way. (#13856)
    • Fixing Backward compatiblity for zero-shot (#13855)
    • Fix hp search for non sigopt backends (#13897)
    • Fix trainer logging_nan_inf_filter in torch_xla mode #13896 (@​ymwangg)
    • [Trainer] Fix nan-loss condition #13911 (@​anton-l)

    v4.11.2: Patch release

    Fix the Trainer API on TPU:

    v4.11.1: Patch release

    Patch release with a few bug fixes:

    • [Wav2Vec2] Better error message (#13777)
    • Fix LayoutLM ONNX test error (#13710)
    • Fix warning for gradient_checkpointing (#13767)
    • Implement len in IterableDatasetShard (#13780)
    • Fix length of IterableDatasetShard and add test (#13792)
    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 0
  • ⬆️ Bump click from 8.0.1 to 8.0.3

    ⬆️ Bump click from 8.0.1 to 8.0.3

    ⚠️ Dependabot is rebasing this PR ⚠️

    Rebasing might not happen immediately, so don't worry if this takes some time.

    Note: if you make any changes to this PR yourself, they will take precedence over the rebase.


    Bumps click from 8.0.1 to 8.0.3.

    Release notes

    Sourced from click's releases.

    8.0.3

    8.0.2

    Changelog

    Sourced from click's changelog.

    Version 8.0.3

    Released 2021-10-10

    • Fix issue with Path(resolve_path=True) type creating invalid paths. :issue:2088
    • Importing readline does not cause the confirm() prompt to disappear when pressing backspace. :issue:2092
    • Any default values injected by invoke() are cast to the corresponding parameter's type. :issue:2089, 2090

    Version 8.0.2

    Released 2021-10-08

    • is_bool_flag is not set to True if is_flag is False. :issue:1925
    • Bash version detection is locale independent. :issue:1940
    • Empty default value is not shown for multiple=True. :issue:1969
    • Fix shell completion for arguments that start with a forward slash such as absolute file paths. :issue:1929
    • Path type with resolve_path=True resolves relative symlinks to be relative to the containing directory. :issue:1921
    • Completion does not skip Python's resource cleanup when exiting, avoiding some unexpected warning output. :issue:1738, 2017
    • Fix type annotation for type argument in prompt function. :issue:2062
    • Fix overline and italic styles, which were incorrectly added when adding underline. :pr:2058
    • An option with count=True will not show "[x>=0]" in help text. :issue:2072
    • Default values are not cast to the parameter type twice during processing. :issue:2085
    • Options with multiple and flag_value use the flag value instead of leaving an internal placeholder. :issue:2001
    Commits
    • 41f5b7a Merge pull request #2096 from pallets/release-8.0.3
    • 90fb9f5 release version 8.0.3
    • ba0e9dd Merge pull request #2095 from pallets/invoke-cast-default
    • 662a30e invoke type casts default values
    • 3dde6c5 Merge pull request #2093 from alex-ball/patch-1
    • f31d564 click.confirm preserves prompt when readline is imported
    • 3737511 Merge pull request #2094 from pallets/path-resolve-symlink
    • c8ca29b use pathlib to resolve symlinks
    • 96146c9 Merge pull request #2087 from pallets/release-8.0.2
    • a14e7b0 release version 8.0.2
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 0
  • ⬆️ Bump numpy from 1.21.2 to 1.21.3

    ⬆️ Bump numpy from 1.21.2 to 1.21.3

    Bumps numpy from 1.21.2 to 1.21.3.

    Release notes

    Sourced from numpy's releases.

    v1.21.3

    NumPy 1.21.3 Release Notes

    The NumPy 1.21.3 is a maintenance release the fixes a few bugs discovered after 1.21.2. It also provides 64 bit Python 3.10.0 wheels. Note a few oddities about Python 3.10:

    • There are no 32 bit wheels for Windows, Mac, or Linux.
    • The Mac Intel builds are only available in universal2 wheels.

    The Python versions supported in this release are 3.7-3.10. If you want to compile your own version using gcc-11 you will need to use gcc-11.2+ to avoid problems.

    Contributors

    A total of 7 people contributed to this release. People with a "+" by their names contributed a patch for the first time.

    • Aaron Meurer
    • Bas van Beek
    • Charles Harris
    • Developer-Ecosystem-Engineering +
    • Kevin Sheppard
    • Sebastian Berg
    • Warren Weckesser

    Pull requests merged

    A total of 8 pull requests were merged for this release.

    • #19745: ENH: Add dtype-support to 3 `generic/ndarray methods
    • #19955: BUG: Resolve Divide by Zero on Apple silicon + test failures...
    • #19958: MAINT: Mark type-check-only ufunc subclasses as ufunc aliases...
    • #19994: BUG: np.tan(np.inf) test failure
    • #20080: BUG: Correct incorrect advance in PCG with emulated int128
    • #20081: BUG: Fix NaT handling in the PyArray_CompareFunc for datetime...
    • #20082: DOC: Ensure that we add documentation also as to the dict for...
    • #20106: BUG: core: result_type(0, np.timedelta64(4)) would seg. fault.

    Checksums

    MD5

    9acea9630856659ba48fdb582ecc37b4  numpy-1.21.3-cp310-cp310-macosx_10_9_universal2.whl
    a70f80a4e74a3153a8307c4f0ea8d13d  numpy-1.21.3-cp310-cp310-macosx_11_0_arm64.whl
    

    ... (truncated)

    Commits
    • d4d0584 Merge pull request #20141 from charris/prepare-for-1.21.3-release
    • 649a2f6 REL: Prepare for 1.21.3 release.
    • c36c4e3 Merge pull request #20106 from charris/backport-20088
    • b30f189 BUG: core: result_type(0, np.timedelta64(4)) would seg. fault.
    • 707f650 Merge pull request #20082 from charris/backport-18775
    • 222dc20 Merge pull request #20081 from charris/backport-19607
    • 94c8a3c Merge pull request #20080 from charris/backport-20049
    • 8f0c4b0 Apply suggestions from code review
    • 2144b1c DOC: Ensure that we add documentation also as to the dict for types
    • 73e7a12 Fix the implementation of DATETIME_compare
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 0
  • ⬆️ Bump pillow from 8.3.2 to 8.4.0

    ⬆️ Bump pillow from 8.3.2 to 8.4.0

    Bumps pillow from 8.3.2 to 8.4.0.

    Release notes

    Sourced from pillow's releases.

    8.4.0

    https://pillow.readthedocs.io/en/latest/releasenotes/8.4.0.html

    Changes

    Dependencies

    Documentation

    Testing

    Changelog

    Sourced from pillow's changelog.

    8.4.0 (2021-10-15)

    • Prefer global transparency in GIF when replacing with background color #5756 [radarhere]

    • Added "exif" keyword argument to TIFF saving #5575 [radarhere]

    • Copy Python palette to new image in quantize() #5696 [radarhere]

    • Read ICO AND mask from end #5667 [radarhere]

    • Actually check the framesize in FliDecode.c #5659 [wiredfool]

    • Determine JPEG2000 mode purely from ihdr header box #5654 [radarhere]

    • Fixed using info dictionary when writing multiple APNG frames #5611 [radarhere]

    • Allow saving 1 and L mode TIFF with PhotometricInterpretation 0 #5655 [radarhere]

    • For GIF save_all with palette, do not include palette with each frame #5603 [radarhere]

    • Keep transparency when converting from P to LA or PA #5606 [radarhere]

    • Copy palette to new image in transform() #5647 [radarhere]

    • Added "transparency" argument to EpsImagePlugin load() #5620 [radarhere]

    • Corrected pathlib.Path detection when saving #5633 [radarhere]

    • Added WalImageFile class #5618 [radarhere]

    • Consider I;16 pixel size when drawing text #5598 [radarhere]

    • If default conversion from P is RGB with transparency, convert to RGBA #5594 [radarhere]

    ... (truncated)

    Commits
    • 40e7ff6 8.4.0 version bump
    • 0fc4fb6 Merge pull request #5765 from python-pillow/rm-tidelift-action
    • ce3c925 Delete tidelift.yml
    • 1b5e662 Merge pull request #5761 from nulano/stroke
    • 5c69dc7 Create tidelift.yml
    • e04f2ed Merge pull request #5744 from kmilos/patch-2
    • 19f4c6f don't use bitmap glyphs when drawing text with stroker
    • dbb0a41 [pre-commit.ci] auto fixes from pre-commit.com hooks
    • 1140f65 Ensure reset after test failure
    • 0b7fcbb Merge branch 'master' into patch-2
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 0
  • ⬆️ Bump pyyaml from 5.4.1 to 6.0

    ⬆️ Bump pyyaml from 5.4.1 to 6.0

    Bumps pyyaml from 5.4.1 to 6.0.

    Changelog

    Sourced from pyyaml's changelog.

    6.0 (2021-10-13)

    Commits
    • 8cdff2c 6.0 release
    • a4fb55e Update Python 3.10 versions for Windows build
    • e45b964 Add Python 3.10 to tox.ini
    • 4808fba 6.0b1 release
    • d5aba40 Omnibus CI/artifact build update
    • a6d384c Various setup fixes
    • 8f3f979 No longer using appveyor
    • c274365 The yaml.load{,_all} functions require Loader= now
    • 2f87ac4 Add a basic test file for yaml.load and yaml.dump
    • 7bd92df Makefile tweaks
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 0
Releases(0.0.6)
  • 0.0.6(Oct 24, 2021)

    • fix Delete await self.bot.process.command(message)

    • add auto update feature

    Full Changelog: https://github.com/SpaceDEVofficial/disformers/commits/77f318e

    Source code(tar.gz)
    Source code(zip)
Owner
SpaceDEVofficial
Youth Development Team
SpaceDEVofficial
It's a Discord bot to control your PC using your Discord Channel or using Reco: Discord PC Remote Controller App.

Reco PC Server Reco PC Server is a cross platform PC Controller Discord Bot which is a modified and improved version of Chimera for Reco-Discord PC Re

Arvinth Krishna 12 Aug 31, 2022
A small and fun Discord Bot that is written in Python and discord-interactions (with discord.py)

Articuno (discord-interactions) A small and fun Discord Bot that is written in Python and discord-interactions (with discord.py) Get started If you wa

Blue 8 Dec 26, 2022
Satoshi is a discord bot template in python using discord.py that allow you to track some live crypto prices with your own discord bot.

Satoshi ~ DiscordCryptoBot Satoshi is a simple python discord bot using discord.py that allow you to track your favorites cryptos prices with your own

Théo 2 Sep 15, 2022
Discord bot script for sending multiple media files to a discord channel according to discord limitations.

Discord Bulk Image Sending Bot Send bulk images to Discord channel. This is a bot script that will allow you to send multiple images to Discord channe

Nikola Arbov 1 Jan 13, 2022
DeKrypt 24 Sep 21, 2022
A Python wrapper for discord slash-commands, designed to extend discord.py.

dislash.py An extending library for discord.py that allows to build awesome slash-commands. ⭐

null 173 Dec 19, 2022
An Open-Source Discord bot created to provide basic functionality which should be in every discord guild. We use this same bot with additional configurations for our guilds.

A Discord bot completely written to be taken from the source and built according to your own custom needs. This bot supports some core features and is

Tesseract Coding 14 Jan 11, 2022
Provide discord buttons feature for discord.py

dpy_buttons wrapper library for discord.py, providing discord buttons feature. Future of the library Will be merged into discord interaction api libra

Minjun Kim (Lapis0875) 17 Feb 2, 2022
A Discord BOT that uses Google Sheets for storing the roles and permissions of a discord server.

Discord Role Manager Bot Role Manager is a discord BOT that utilizes Google Sheets for the organization of a server's hierarchy and permissions. Detai

Dion Rigatos 17 Oct 13, 2022
Discord ToolBox is a discord bot developed by DJD320 created for the purpose of having some convenient tools in the form of a single bot.

Discord ToolBox Discord ToolBox is a discord bot developed by DJD320 created for the purpose of having some convenient tools in the form of a single b

null 3 Aug 7, 2021
🚀 An asynchronous python API wrapper meant to replace discord.py - Snappy discord api wrapper written with aiohttp & websockets

Pincer An asynchronous python API wrapper meant to replace discord.py ❗ The package is currently within the planning phase ?? Links |Join the discord

Pincer 125 Dec 26, 2022
Pycord, a maintained fork of discord.py, is a python wrapper for the Discord API

pycord A fork of discord.py. PyCord is a modern, easy to use, feature-rich, and async ready API wrapper for Discord written in Python. Key Features Mo

Pycord Development 2.3k Dec 31, 2022
An asyncio Python wrapper around the Discord API, forked off of Rapptz's Discord.py.

Novus A modern, easy to use, feature-rich, and async ready API wrapper for Discord written in Python. A full fork of Rapptz's Discord.py library, with

Voxel Fox 60 Jan 3, 2023
MusicBot is the original Discord music bot written for Python 3.5+, using the discord.py library

The original MusicBot for Discord (formerly SexualRhinoceros/MusicBot)

Just Some Bots 2.9k Jan 2, 2023
Discord Panel is an AIO panel for Discord that aims to have all the needed tools related to user token interactions, as in nuking and also everything you could possibly need for raids

Discord Panel Discord Panel is an AIO panel for Discord that aims to have all the needed tools related to user token interactions, as in nuking and al

null 11 Mar 30, 2022
Discord music bot using discord.py, slash commands, and yt-dlp.

bop Discord music bot using discord.py, slash commands, and yt-dlp. Features Play music from YouTube videos and playlists Queue system with shuffle Sk

Hizkia Felix 3 Aug 11, 2022
A simple but useful Discord Selfbot with essential features, made with discord.py-self.

Discord Selfbot Xyno Discord Selfbot Xyno is a simple but useful selfbot for Discord. It has currently limited useful features but it will be updated

Amit Pathak 7 Apr 24, 2022
Discord bot for Ukrfans Discord server

Ukrfans Discord Bot Discord bot for Ukrfans Discord server. ?? Prerequisites Python ⚙️ Build & Run Create an .env file in the root directory and add t

null 3 Jun 24, 2022
Michelle is a Discord Bot coded in Python with Discord.py by Mudit07.

Michelle is a Discord Bot coded in Python with Discord.py by Mudit07.

Michelle 3 Oct 9, 2021