Metadata-Version: 2.1
Name: lavaplayer
Version: 1.0.4a0
Summary: A sample Python project
Home-page: https://github.com/HazemMeqdad/lavaplayer
Author: HazemMeqdad
Author-email: hazemmeqdad@gmail.com
License: UNKNOWN
Project-URL: Bug Reports, https://github.com/HazemMeqdad/lavaplayer/issues
Project-URL: Source, https://github.com/HazemMeqdad/lavaplayer/
Project-URL: Documentation, https://lavaplayer.readthedocs.io/en/latest
Keywords: lavalink,discord,discord-lavalink,lavaplayer
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3 :: Only
Description-Content-Type: text/markdown
License-File: LICENSE

# lavaplayer

Represents a Lavalink client used to manage nodes and connections.

## setup

```shell
pip install lavaplayer
```
## setup lavalink

you need to java 11* LTS or newer required.

install [lavalink](https://github.com/freyacodes/Lavalink/releases/download/3.4/Lavalink.jar) last version, create [application.yml](https://github.com/freyacodes/Lavalink/blob/master/LavalinkServer/application.yml.example), run the server
```shell
java -jar Lavalink.jar
```
## config lavaplayer server info

from `.LavalinkClient()` set information connection
```python
host="127.0.0.1",  # server ip address
port=8888,  # port
password="password",  # password authentication
bot_id=123 # bot id
```

## license
take to [LICENSE](./LICENSE) file


