From 7e54ed70654bc0b80ac58094400ffb2e7e1ff765 Mon Sep 17 00:00:00 2001 From: "Swas.py" <61446939+CodeWithSwastik@users.noreply.github.com> Date: Sat, 28 Aug 2021 22:59:39 +0530 Subject: [PATCH 1/6] Update README.rst --- README.rst | 39 +++++++++++++++++---------------------- 1 file changed, 17 insertions(+), 22 deletions(-) diff --git a/README.rst b/README.rst index a81adde71f..cac70720b1 100644 --- a/README.rst +++ b/README.rst @@ -1,22 +1,17 @@ -discord.py +pycord ========== .. image:: https://discord.com/api/guilds/336642139381301249/embed.png - :target: https://discord.gg/r3sSKJJ + :target: https://discord.gg/dK2qkEJ37N :alt: Discord server invite -.. image:: https://img.shields.io/pypi/v/discord.py.svg +.. image:: https://img.shields.io/pypi/v/py-cord.svg :target: https://pypi.python.org/pypi/discord.py :alt: PyPI version info .. image:: https://img.shields.io/pypi/pyversions/discord.py.svg :target: https://pypi.python.org/pypi/discord.py :alt: PyPI supported Python versions -A modern, easy to use, feature-rich, and async ready API wrapper for Discord written in Python. - -The Future of discord.py --------------------------- - -Please read the `gist `_ for the future of this project. It's been a good one. +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 ------------- @@ -35,28 +30,28 @@ To install the library without full voice support, you can just run the followin .. code:: sh # Linux/macOS - python3 -m pip install -U discord.py + python3 -m pip install -U py-cord # Windows - py -3 -m pip install -U discord.py + py -3 -m pip install -U py-cord Otherwise to get voice support you should run the following command: .. code:: sh # Linux/macOS - python3 -m pip install -U "discord.py[voice]" + python3 -m pip install -U "py-cord[voice]" # Windows - py -3 -m pip install -U discord.py[voice] + py -3 -m pip install -U py-cord[voice] To install the development version, do the following: .. code:: sh - $ git clone https://github.com/Rapptz/discord.py - $ cd discord.py + $ git clone https://github.com/Pycord-Development/pycord.py + $ cd pycord $ python3 -m pip install -U .[voice] @@ -75,9 +70,9 @@ Quick Example .. code:: py - import discord + import pycord - class MyClient(discord.Client): + class MyClient(pycord.Client): async def on_ready(self): print('Logged on as', self.user) @@ -97,10 +92,10 @@ Bot Example .. code:: py - import discord - from discord.ext import commands + import pycord + from pycord.ext import commands - bot = commands.Bot(command_prefix='>') + bot = pycord.Bot(command_prefix='>') @bot.command() async def ping(ctx): @@ -113,6 +108,6 @@ You can find more examples in the examples directory. Links ------ -- `Documentation `_ -- `Official Discord Server `_ +- `Documentation `_ +- `Official Discord Server `_ - `Discord API `_ From 59dc375e691efc95969bc548234663f738f6ff8f Mon Sep 17 00:00:00 2001 From: "Swas.py" <61446939+CodeWithSwastik@users.noreply.github.com> Date: Sat, 28 Aug 2021 23:02:25 +0530 Subject: [PATCH 2/6] Update README.rst --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index cac70720b1..ec7c6a13a1 100644 --- a/README.rst +++ b/README.rst @@ -5,7 +5,7 @@ pycord :target: https://discord.gg/dK2qkEJ37N :alt: Discord server invite .. image:: https://img.shields.io/pypi/v/py-cord.svg - :target: https://pypi.python.org/pypi/discord.py + :target: https://pypi.python.org/pypi/py-cord.py :alt: PyPI version info .. image:: https://img.shields.io/pypi/pyversions/discord.py.svg :target: https://pypi.python.org/pypi/discord.py From 9e3d29334bd6655cc5784adbbab4d51741b87df6 Mon Sep 17 00:00:00 2001 From: "Swas.py" <61446939+CodeWithSwastik@users.noreply.github.com> Date: Sat, 28 Aug 2021 23:02:40 +0530 Subject: [PATCH 3/6] Update README.rst --- README.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index ec7c6a13a1..d5e825057f 100644 --- a/README.rst +++ b/README.rst @@ -7,8 +7,8 @@ pycord .. image:: https://img.shields.io/pypi/v/py-cord.svg :target: https://pypi.python.org/pypi/py-cord.py :alt: PyPI version info -.. image:: https://img.shields.io/pypi/pyversions/discord.py.svg - :target: https://pypi.python.org/pypi/discord.py +.. image:: https://img.shields.io/pypi/pyversions/py-cord.svg + :target: https://pypi.python.org/pypi/py-cord.py :alt: PyPI supported Python versions A fork of discord.py. PyCord is a modern, easy to use, feature-rich, and async ready API wrapper for Discord written in Python. From 6132f9b31bbfe04dc5fd330826f10ceb2ceed413 Mon Sep 17 00:00:00 2001 From: BobDotCom <71356958+BobDotCom@users.noreply.github.com> Date: Sat, 28 Aug 2021 12:33:14 -0500 Subject: [PATCH 4/6] Update README.rst --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index d5e825057f..0af584ff86 100644 --- a/README.rst +++ b/README.rst @@ -1,7 +1,7 @@ pycord ========== -.. image:: https://discord.com/api/guilds/336642139381301249/embed.png +.. image:: https://discord.com/api/guilds/881207955029110855/embed.png :target: https://discord.gg/dK2qkEJ37N :alt: Discord server invite .. image:: https://img.shields.io/pypi/v/py-cord.svg From 1e734b4f58358115d811ff2e61a9d7e19ba79f78 Mon Sep 17 00:00:00 2001 From: BobDotCom <71356958+BobDotCom@users.noreply.github.com> Date: Sat, 28 Aug 2021 12:35:48 -0500 Subject: [PATCH 5/6] Update README.rst --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 0af584ff86..67add58b92 100644 --- a/README.rst +++ b/README.rst @@ -1,7 +1,7 @@ pycord ========== -.. image:: https://discord.com/api/guilds/881207955029110855/embed.png +.. image:: https://discord.com/api/guilds/681882711945641997/embed.png :target: https://discord.gg/dK2qkEJ37N :alt: Discord server invite .. image:: https://img.shields.io/pypi/v/py-cord.svg From fb6b4f1843175f0ca456ea0257d85a0524eed423 Mon Sep 17 00:00:00 2001 From: BobDotCom <71356958+BobDotCom@users.noreply.github.com> Date: Sat, 28 Aug 2021 15:51:29 -0500 Subject: [PATCH 6/6] Update README.rst --- README.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index 67add58b92..7d63dfaa33 100644 --- a/README.rst +++ b/README.rst @@ -70,9 +70,9 @@ Quick Example .. code:: py - import pycord + import discord - class MyClient(pycord.Client): + class MyClient(discord.Client): async def on_ready(self): print('Logged on as', self.user) @@ -92,10 +92,10 @@ Bot Example .. code:: py - import pycord - from pycord.ext import commands + import discord + from discord.ext import commands - bot = pycord.Bot(command_prefix='>') + bot = commands.Bot(command_prefix='>') @bot.command() async def ping(ctx):