Giter Site home page Giter Site logo

dorukyum / pycord Goto Github PK

View Code? Open in Web Editor NEW

This project forked from pycord-development/pycord

2.0 0.0 0.0 15.9 MB

Pycord, a maintained fork of discord.py, is a python wrapper for the Discord API

Home Page: https://docs.pycord.dev

License: MIT License

Python 100.00%

pycord's Introduction

Pycord

Discord server invite

PyPI version info

PyPI supported Python versions

PyPI downloads

Latest release

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

  • Modern Pythonic API using async and await.
  • Proper rate limit handling.
  • Optimised for both speed and memory usage.
  • Full Application Command Support

Installing

Python 3.8 or higher is required

To install the library without full voice support, run the following command:

# Linux/macOS
python3 -m pip install -U py-cord

# Windows
py -3 -m pip install -U py-cord

Otherwise, to get full voice support, run the following command:

# Linux/macOS
python3 -m pip install -U "py-cord[voice]"

# Windows
py -3 -m pip install -U py-cord[voice]

To install additional packages for speedup, run the following command:

# Linux/macOS
python3 -m pip install -U "py-cord[speed]"
# Windows
py -3 -m pip install -U py-cord[speed]

To install the development version, do the following:

$ git clone https://github.com/Pycord-Development/pycord
$ cd pycord
$ python3 -m pip install -U .[voice]

or if you do not want to clone the repository:

# Linux/macOS
python3 -m pip install git+https://github.com/Pycord-Development/pycord
# Windows
py -3 -m pip install git+https://github.com/Pycord-Development/pycord

Optional Packages

Please note that while installing voice support on Linux, you must install the following packages via your preferred package manager (e.g. apt, dnf, etc) BEFORE running the above commands:

  • libffi-dev (or libffi-devel on some systems)
  • python-dev (e.g. python3.10-dev for Python 3.10)

Quick Example

import discord

bot = discord.Bot()

@bot.slash_command()
async def hello(ctx, name: str = None):
    name = name or ctx.author.name
    await ctx.respond(f"Hello {name}!")

@bot.user_command(name="Say Hello")
async def hi(ctx, user):
    await ctx.respond(f"{ctx.author.mention} says hello to {user.name}!")

bot.run("token")

Traditional Commands Example

import discord
from discord.ext import commands

intents = discord.Intents.default()
intents.message_content = True
bot = commands.Bot(command_prefix=">", intents=intents)

@bot.command()
async def ping(ctx):
    await ctx.send("pong")

bot.run("token")

You can find more code examples in the examples directory.

Note: Make sure you do not reveal your bot token to anyone, as it can grant access to your bot.

pycord's People

Contributors

apple502j avatar baronkobama avatar bijij avatar bobdotcom avatar codewithswastik avatar dependabot[bot] avatar diceroll123 avatar dorukyum avatar hornwitser avatar hypergonial avatar imayhaveborkedit avatar ioistired avatar izxxr avatar jackenmen avatar justasqu1d avatar khazhyk avatar krittick avatar lulalaby avatar makiyu-py avatar middledot avatar ncplayz avatar neloblivion avatar omlanke avatar plun1331 avatar pre-commit-ci[bot] avatar rapptz avatar sebbylaw avatar sengolda avatar up929312 avatar vincentrps avatar

Stargazers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.