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
Personal Discord Python Bot based on Discord.py

Personal Discord bot using the discord.py library by Rapptz

2 Dec 14, 2022
A script to automate the process of downloading Markdown and CSV backups of Notion

Automatic-Notion-Backup A script to automate the process of downloading Markdown and CSV backups of Notion. In addition, the data is processed to remo

Jorge Manuel Lozano Gómez 2 Nov 02, 2022
A ideia é fornecer uma base ampla de questões do ENEM como uma api REST

base10 "A ideia é fornecer uma base ampla de questões do ENEM como uma api REST" TODO Documentar a api com apifairy Criar testes Criar crawler para si

Wadson Garbes 4 Apr 24, 2022
OpenZeppelin Contracts written in Cairo for StarkNet, a decentralized ZK Rollup

OpenZeppelin Cairo Contracts A library for secure smart contract development written in Cairo for StarkNet, a decentralized ZK Rollup. ⚠️ WARNING! ⚠️

OpenZeppelin 592 Jan 04, 2023
Construindo API's robustas utilizando Python

🐂 Construindo API's robustas utilizando Python Neste tutorial vamos aprender a construir API's utilizando Python e FastAPI, integrá-las a serviços ex

luizalabs 296 Dec 13, 2022
DiscWrappy - A Python wrapper for the Discord bot API

DiscWrappy - A Python wrapper for the Discord bot API

Jeff Morris 4 Apr 25, 2022
Automate UCheck COVID-19 self-assessment form submission

ucheck Automate UCheck COVID-19 self-assessment form submission. Disclaimer ucheck automatically completes the University of Tornto's UCheck COVID-19

Ira Horecka 15 Nov 30, 2022
Python Wrapper for aztro - The Astrology API | Get Daily Horoscope 💫

PyAztro PyAztro is a client library for aztro written in Python. aztro provides horoscope info for sun signs such as Lucky Number, Lucky Color, Mood,

Sameer Kumar 30 Jan 08, 2023
An Inline Telegram YouTube Downloader bot with custom, permanent thumbnail support and cancel upload facility. Make your fork now.

Inline-Tube-Mate (YouTube Downloader) An Inline Telegram bot that can download YouTube videos with permanent thumbnail support Bot need to be in Inlin

Renjith Mangal 41 Dec 14, 2022
Python SDK for LUSID by FINBOURNE, a bi-temporal investment management data platform with portfolio accounting capabilities.

LUSID® Python SDK This is the Python SDK for LUSID by FINBOURNE, a bi-temporal investment management data platform with portfolio accounting capabilit

FINBOURNE 6 Dec 24, 2022
Adriano's Diets Consulting Bot - Parses and extracts informations about your diet (files in the Adriano's format).

Adriano's Diets Consulting Bot - Parses and extracts informations about your diet (files in the Adriano's format).

Marco A. 2 Feb 07, 2022
Nft-maker - Create your own NFT!

nft-maker How to If you're going to use this program, change the pictures in the "images" folder. All images must be of the same resolution and size.

Georgii Arakelian 4 Mar 13, 2022
use python script to fix vmp dump api in ida

FixVmpDump use python script to fix vmp dump api in ida. support x86 and x64. details in my blog: https://blog.csdn.net/yan_star/article/details/11279

97 Nov 02, 2022
A powerful application to automatically deploy GitHub Release.

A powerful application to automatically deploy GitHub Release.

Fentaniao 43 Sep 17, 2022
A Python Tumblr API v2 Client

PyTumblr Installation Install via pip: $ pip install pytumblr Install from source: $ git clone https://github.com/tumblr/pytumblr.git $ cd pytumblr $

Tumblr 677 Dec 21, 2022
Spacecrypto-bombcrypto-bot - SpaceCrypto And Bombcrypto Bot - MultiScreen

SpaceCrypto And Bombcrypto Bot - MultiScreen This is a open source project inspi

Paulo Bramante 5 Nov 03, 2022
Student-Management-System-in-Python - Student Management System in Python

Student-Management-System-in-Python Student Management System in Python

G.Niruthian 3 Jan 01, 2022
allow windows programs to call dssp/mkdssp command from wsl; rework biopython on windows (PDB -> dssp -> fasta)

dssp-wsl Converting PDB (Protein Data Bank) file format to DSSP file format is required for generating datasets of peptides and their secondary struct

Taine Zhao 1 Feb 23, 2022
A python API for BSCScan (Binance Smart Chain Explorer), available on PyPI.

bscscan-python A complete Python API for BscScan.com, available on PyPI. Powered by BscScan.com APIs. This is a gently modified fork of the etherscan-

Panagiotis Kotsias 246 Dec 31, 2022