Huggingface transformers for discord.
Project description
disformers
- Huggingface transformers for discord
- base source butyr/huggingface-transformer-chatbots
install
pip install -U disformers
example
-
see example folder
-
use client
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
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file disformers-0.10.7-py3-none-any.whl.
File metadata
- Download URL: disformers-0.10.7-py3-none-any.whl
- Upload date:
- Size: 7.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
29ca1cfc87b48a561cccace4b706825120aae22efb2267312898d2ed946e2666
|
|
| MD5 |
324ff313a01fb9e0e22ccdb573353109
|
|
| BLAKE2b-256 |
83f4bf634e67e0e5d2099c37ba04ea71f650e5f29366f83e9edecf672af623a8
|