Metadata-Version: 2.1
Name: winkicord
Version: 1.0.0
Summary: Effortlessly create a fully functional Discord music bot with just one line of Python code.
Home-page: https://github.com/UjjwalxD/winkicord/
Author: Ujjwal Srivastava
Author-email: Ujjwal Srivastava <ujjwal.winklebot@proton.me>
License: Copyright (c) 2024 @Winkicords,
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
Project-URL: Homepage, https://github.com/UjjwalxD/winkicord
Project-URL: Issues, https://github.com/UjjwalxD/winkicord/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: discord.py==2.4.0
Requires-Dist: wavelink

# - Note: its under development

# Winkicord

**Effortlessly create a fully functional Discord music bot with just one line of Python code.**

[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)

## Overview

Winkicord is a Python package that allows you to quickly create a Discord music bot with minimal effort. With just one line of code, you can get a music bot up and running in your Discord server. It's built on top of `discord.py`, so it's fully compatible with existing Discord bots.

## Features
- Play music from YouTube or other sources
- Pause, stop, and queue functionality
- Easy to integrate into existing bots
- Simple and minimalistic API

## Installation

Make sure you have Python 3.9 or higher installed. Then, you can install `winkicord` via `pip`:

```bash
pip install winkicord
pip install discord.py```

```bash
import discord
from discord.ext import commands
import winkicord

bot = commands.Bot(command_prefix=".", intents=discord.Intents.all())

@bot.event
async def on_ready():
    print(f"Logged in as {bot.user.name}")
    await winkicord.NodePoolCreds.set_creds(
        host="localhost",
        port=2000,
        identifier="localhost",
        password="youshallnotpass",
        inactive_timeout=14000,
        cache=130
    )
    await bot.load_extension('winkicord.music')

bot.run("YOUR_BOT_TOKEN")```


**Note: This Library requires lavalink v4 [lavalink-support](https://discord.gg/lavalink-1082302532421943407)**
