Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: pawel02/music_bot Loading
base: main
Choose a base ref
...
head repository: Riyadhz20/music_bot Loading
compare: main
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 9 commits
  • 8 files changed
  • 1 contributor

Commits on Jan 18, 2023

  1. Delete .gitignore

    No need for this
    Riyadhz20 committed Jan 18, 2023
    Configuration menu
    Copy the full SHA
    b08dbe5 View commit details
    Browse the repository at this point in the history
  2. Delete .dockerignore

    No Need For this
    Riyadhz20 committed Jan 18, 2023
    Configuration menu
    Copy the full SHA
    f4d2213 View commit details
    Browse the repository at this point in the history
  3. Delete Dockerfile

    No Need For this for the bot to run
    Riyadhz20 committed Jan 18, 2023
    Configuration menu
    Copy the full SHA
    a1ee426 View commit details
    Browse the repository at this point in the history
  4. Update README.md

    Added more instructions
    Riyadhz20 committed Jan 18, 2023
    Configuration menu
    Copy the full SHA
    e80de04 View commit details
    Browse the repository at this point in the history
  5. Code Edits 18-1-2023

    From---
    Line 9: 
    bot = commands.Bot(command_prefix='/')
    
    Line 15 and 16:
    bot.add_cog(help_cog(bot))
    bot.add_cog(music_cog(bot))
    
    Line 19:
    bot.run(os.getenv("TOKEN"))
    
    To---
    Line 9: 
    bot = commands.Bot(intents=discord.Intents.all() , command_prefix='/' , description='The Best Music-Bot For the Best User!')
    
    Line 15 and 16:
    @bot.event
    async def on_ready():
        await bot.add_cog(help_cog(bot))
        await bot.add_cog(music_cog(bot))
    
    Line 19:
    with open('Token') as file:
        bot.run(file.read())
    Riyadhz20 committed Jan 18, 2023
    Configuration menu
    Copy the full SHA
    cedc9fc View commit details
    Browse the repository at this point in the history
  6. Code Edit 18-1-2023

    Tab Error "I think fix'
    add 'quality':'0' 
    "more testing will be coming to understand YoutubeDL more
    Riyadhz20 committed Jan 18, 2023
    Configuration menu
    Copy the full SHA
    809b918 View commit details
    Browse the repository at this point in the history
  7. Only Requirements

    only needs-->>
    
    python3.7
    discord.py 1.7.3
    ffmpeg 1.4
    PyNaCl 1.5.0
    youtube-dl 2021.12.17
    
    no need for these-->>
    
    aiohttp==3.7.4.post0
    astroid==2.5.1
    async-timeout==3.0.1
    attrs==21.4.0
    cffi==1.14.5
    chardet==4.0.0
    colorama==0.4.4
    cryptography==3.4.7
    idna==3.3
    isort==5.8.0
    lazy-object-proxy==1.6.0
    mccabe==0.6.1
    multidict==6.0.2
    pycparser==2.20
    pylint==2.7.2
    pymongo==3.12.1
    pyspnego==0.1.5
    six==1.15.0
    smbprotocol==1.5.0
    toml==0.10.2
    typing_extensions==4.1.1
    wrapt==1.12.1
    yarl==1.7.2
    Riyadhz20 committed Jan 18, 2023
    Configuration menu
    Copy the full SHA
    122147d View commit details
    Browse the repository at this point in the history
  8. For the Token

    only place the token here Copy -->> Paste
    Riyadhz20 committed Jan 18, 2023
    Configuration menu
    Copy the full SHA
    fdb30c8 View commit details
    Browse the repository at this point in the history
  9. Fix Pause Command

    good to go 😁👍
    Riyadhz20 committed Jan 18, 2023
    Configuration menu
    Copy the full SHA
    9900320 View commit details
    Browse the repository at this point in the history
Loading