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
Project developed as part of a selection process for the company Denox

📝 Tabela de conteúdos Sobre Requisitos para rodar o projeto Instalação Rotas da API Observações 🧐 Sobre Projeto desenvolvido como parte de um proces

Ícaro Sant'Ana 1 Mar 01, 2022
Bavera is an extensive and extendable Python 3.x library for the Discord API

Bavera is an extensive and extendable Python 3.x library for the Discord API. Bavera boasts the following major features: Expressive, functiona

Bavera 1 Nov 17, 2021
Automatically searching for vaccine appointments

Vaccine Appointments Automatically searching for vaccine appointments Usage To copy this package, run: git clone https://github.com/TheIronicCurtain/v

58 Apr 13, 2021
Use CSV files as a Nornir Inventory source with hosts, groups and defaults.

nornir_csv Use CSV files as a Nornir Inventory source with hosts, groups and defaults. This can be used as an equivalent to the Simple Inventory plugi

Matheus Augusto da Silva 2 Aug 13, 2022
批量下载抖音无水印视频

版权说明 本项目fork自Johnserf-Seed TikTokDownload。目的是为了增加个性化的功能,若想体验更多完善的功能请支持原作者的项目。 免责声明 本代码仅用于学习,下载后请勿用于商业用途。 环境要求 请检查宿主机,是否安装了python环境,并且配置了环境变量 pytho

Zhiwu Mao 44 Dec 28, 2022
Telegram bot for making Heroku app.json by @AbirHasan2005

Heroku-app.json A Telegram bot for making Heroku app.json by @AbirHasan2005. Demo Bot Host Bot Deploy to Heroku Click Below Button to Deploy to Heroku

Abir Hasan 46 Nov 13, 2022
The Python client library for the Tuneup Technology App.

Tuneup Technology App Python Client Library The Python client library for the Tuneup Technology App. This library allows you to interact with the cust

Tuneup Technology 0 Jun 29, 2022
Repositório para a Live Coding do dia 22/12/2021 sobre AWS Step Functions

DIO Live Step Functions - 22/12/2021 Serviços AWS utilizados AWS Step Functions AWS Lambda Amazon S3 Amazon Rekognition Amazon DynamoDB Amazon Cloudwa

Cassiano Ricardo de Oliveira Peres 5 Mar 01, 2022
RP2 is a privacy-focused, free, open-source US cryptocurrency tax calculator

Privacy-focused, free, open-source cryptocurrency US tax calculator, up to date for 2021: it handles multiple coins/exchanges and computes long/short-term capital gains, cost bases, in/out lot relati

eprbell 123 Jan 04, 2023
Lambda-function - Python codes that allow notification of changes made to some services using the AWS Lambda Function

AWS Lambda Function This repository contains python codes that allow notificatio

Elif Apaydın 3 Feb 11, 2022
A repo to automate the booking process for vaccinations

OntarioVaccineFormAutomaker A repo to automate the booking process for vaccinations Requirements Allow ALL sights to be able to know your location (on

Rafid Dewan 7 May 31, 2021
Weather telegram bot with aiogram, on Russian language

weather_bot Weather telegram bot with aiogram, on Russian language #RU Бот по определению погоды в Telegram, написана на библиотеке aiogram, весь инте

LinkxWan 0 Jan 06, 2022
Aula-API - a school system widely used in Denmark, as you can see and read about in the python file

Information : Hello, thank you for reading this first of all. This is a Aula-API

Binary.club 2 May 28, 2022
Python tool to Check running WebClient services on multiple targets based on @leechristensen

WebClient Service Scanner Python tool to Check running WebClient services on multiple targets based on @tifkin_ idea. This tool uses impacket project.

Pixis 153 Dec 28, 2022
Python Library for Accessing the Cohere API

Cohere Python SDK This package provides functionality developed to simplify interfacing with the Cohere API in Python 3. Documentation See the API's d

cohere.ai 42 Jan 03, 2023
Powerful Url uploader bot With Mongodb support 🔥

Uploader X Bot Telegram RoBot to Upload Links. Features: 👉 Upload YouTube-dl Supported Links to Telegram. 👉 Upload HTTP/HTTPS as File/Video to Teleg

C͡linton Abraꫝam 250 Jan 06, 2023
A python library to interact with the EarnApp API

EarnApp.py Table of contents General info Documentation Setup General info A python library to interact with the EarnApp API. Documentation First, imp

3 Dec 14, 2022
Client to allow skytrack to be used with GSPro Golf simulator application

Skytrack Interface for GSPro A Basic Interface connection from Skytrack Launch Monitors to be able to play simulator golf via GSPro About The Project

James Peruggia 2 Oct 24, 2021
The best discord.py template with a changeable prefix

Discord.py Bot Template By noma4321#0035 With A Custom Prefix To Every Guild Function Features Has a custom prefix that is changeable for every guild

Noma4321 5 Nov 24, 2022
Cleiton Leonel 4 Apr 22, 2022