lavalink-rs


Namelavalink-rs JSON
Version 0.12.0 PyPI version JSON
download
home_pagehttps://gitlab.com/vicky5124/lavalink-rs/
SummaryLavalink API wrapper for discord audio playing
upload_time2024-04-30 21:37:41
maintainerNone
docs_urlNone
authorvicky5124 <vickyf5124@gmail.com>
requires_python<3.13,>=3.8
licenseMPL-2.0
keywords lavalink discord serenity twilight songbird
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # lavalink-rs

An API Wrapper for `lavalink`. Compatible with all `tokio 1.x` based discord crates or `asyncio` based discord python libraries.

If you have questions, you can get support in the [serenity](https://discord.gg/serenity-rs), [lavalink](https://discord.gg/2rpnXNfRRU) or [hikari](https://discord.gg/hikari)
discord servers, or by opening an issue in the [gitlab repository](https://gitlab.com/vicky5124/lavalink-rs).

Documentation for the library can be found [here for rust](https://docs.rs/lavalink-rs) or [here for python](https://vicky5124.github.io/lavalink-rs/lavalink_rs.html).

## To-Do

### 0.13

- [ ] Implement `__anext__` to QueueRef
- [ ] Implement some const methods
- [ ] RoutePlanner API
- [ ] Support `tokio-websockets`
- [ ] native and webpki roots for rustls feature separation

### Future

- [ ] Improve documentation with examples, better formatting, and fill in missing data
- [ ] Expand event logging
- [ ] discord.py example
- [ ] hata example
- [ ] twilight-rs example
- [ ] Gitlab CI Tests
- [ ] Implement abstractions for ease of use
- [ ] Region based node selection method

### Done

- [x] `native_tls` backend
- [x] Player queues
- [x] Readbale player queues
- [x] Search engine helpers
- [x] Write basic cocumentation
- [x] Songbird utilities
- [x] Serenity utilities
- [x] Twilight utilities
- [x] Load balancer node selection method
- [x] Lavasnek (PyO3)
- [x] Lavasnek events
- [x] Remove third party dependency for custom user data.
- [x] Round-Robin node selection method
- [x] Main and fallback node selection method
- [x] CPU Load based node selection method
- [x] Memory usage based node selection method
- [x] Custom node selection method
- [x] Python stubs
- [x] Basic Twilight 0.16 support
- [x] Hide password from logs
- [x] hikari-lightbulb example
- [x] Implement python builders for all the needed model structures
- [x] Expose Http and methods to python
- [x] Switch from reqwests to `hyper`
- [x] Implement SSL support with `hyper`
- [x] Implement search utilities to python
- [x] load_tracks to return Track in python
- [x] Streamable queue reader

## Links to download stuff you will need

To install Lavalink, you can follow their [getting started guide](https://lavalink.dev/getting-started/index.html).

## How to use

This is how you can install the library to be used.

### Rust

You can install the latest version from crates.io:

```toml
lavalink-rs = "0.12"

# or

[dependencies.lavalink-rs]
version = "0.12"
```

Or the development release:

```toml
lavalink-rs = { git = "https://gitlab.com/vicky5124/lavalink-rs/", branch = "main"}

# or

[dependencies.lavalink-rs]
git = "https://gitlab.com/vicky5124/lavalink-rs/"
branch = "main"
```

If you wish to use a development version of songbird (or serenity, or twilight-model), add the following to the Cargo.toml:

```toml
[patch.crates-io.songbird]
git = "https://github.com/serenity-rs/songbird"
branch = "next"

[dependencies.songbird]
git = "https://github.com/serenity-rs/songbird"
branch = "next"
```

### Python

You can install the latest version from [pypi](https://pypi.org/project/lavalink_rs/) by using `python3 -m pip install lavalink_rs`.

OS | Arch | Python Versions | Supported?
-|-|-|-
Windows | x86 | 3.8-3.12 | ✅
Windows | x64 | 3.8-3.12 | ✅
Windows | aarch64 | - | ❌
Mac OS | x86_64 | 3.8-3.12 | ✅
Mac OS | aarch64 | 3.8-3.12 | ✅
Linux | x86 | 3.8-3.12 | ✅
Linux | x86_64 | 3.8-3.12 | ✅
Linux | armv7 | 3.8-3.12 | ✅
Linux | aarch64 | 3.8-3.12 | ✅
Linux | ppc64le | - | ❌
Linux | s390x | - | ❌

## Building the library

You can build the library using `cargo build`

To build for python, you can use maturin instead.

```
python3 -m venv .venv
source .venv/bin/activate
python3 -m pip install maturin
maturin develop --target x86_64-unknown-linux-gnu
```

## Features

- `macros`: **default feature** - Adds procedural macros for ease of use.
- `rustls-native-roots`: **default feature** - Use rustls with the system trusted roots.
- `rustls-webpki-roots`: Use rustls with the Mozilla set of trusted roots.
- `native-tls` Use the system native tls implementation.
- `serenity` for [serenity](https://lib.rs/crates/serenity) support.
- `songbird` for [songbird](https://lib.rs/crates/songbird) support.
- `twilight` for [twilight-model](https://lib.rs/crates/twilight-model) v0.15 support.
- `twilight16` for [twilight-model](https://lib.rs/crates/twilight-model) v0.16-rc support.
- `python` for python3.8+ support.

## Contributing

To contribute to the project, fork the [gitlab repository](https://gitlab.com/vicky5124/lavalink-rs) and create a merge request over there. Make sure to update the changelog with whatever update you did to the library.


            

Raw data

            {
    "_id": null,
    "home_page": "https://gitlab.com/vicky5124/lavalink-rs/",
    "name": "lavalink-rs",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<3.13,>=3.8",
    "maintainer_email": null,
    "keywords": "lavalink, discord, serenity, twilight, songbird",
    "author": "vicky5124 <vickyf5124@gmail.com>",
    "author_email": "vicky5124 <vickyf5124@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/d2/e5/004db12149665516898ec5a53839cd443531e8734e19d7e85c3533803bcc/lavalink_rs-0.12.0.tar.gz",
    "platform": null,
    "description": "# lavalink-rs\n\nAn API Wrapper for `lavalink`. Compatible with all `tokio 1.x` based discord crates or `asyncio` based discord python libraries.\n\nIf you have questions, you can get support in the [serenity](https://discord.gg/serenity-rs), [lavalink](https://discord.gg/2rpnXNfRRU) or [hikari](https://discord.gg/hikari)\ndiscord servers, or by opening an issue in the [gitlab repository](https://gitlab.com/vicky5124/lavalink-rs).\n\nDocumentation for the library can be found [here for rust](https://docs.rs/lavalink-rs) or [here for python](https://vicky5124.github.io/lavalink-rs/lavalink_rs.html).\n\n## To-Do\n\n### 0.13\n\n- [ ] Implement `__anext__` to QueueRef\n- [ ] Implement some const methods\n- [ ] RoutePlanner API\n- [ ] Support `tokio-websockets`\n- [ ] native and webpki roots for rustls feature separation\n\n### Future\n\n- [ ] Improve documentation with examples, better formatting, and fill in missing data\n- [ ] Expand event logging\n- [ ] discord.py example\n- [ ] hata example\n- [ ] twilight-rs example\n- [ ] Gitlab CI Tests\n- [ ] Implement abstractions for ease of use\n- [ ] Region based node selection method\n\n### Done\n\n- [x] `native_tls` backend\n- [x] Player queues\n- [x] Readbale player queues\n- [x] Search engine helpers\n- [x] Write basic cocumentation\n- [x] Songbird utilities\n- [x] Serenity utilities\n- [x] Twilight utilities\n- [x] Load balancer node selection method\n- [x] Lavasnek (PyO3)\n- [x] Lavasnek events\n- [x] Remove third party dependency for custom user data.\n- [x] Round-Robin node selection method\n- [x] Main and fallback node selection method\n- [x] CPU Load based node selection method\n- [x] Memory usage based node selection method\n- [x] Custom node selection method\n- [x] Python stubs\n- [x] Basic Twilight 0.16 support\n- [x] Hide password from logs\n- [x] hikari-lightbulb example\n- [x] Implement python builders for all the needed model structures\n- [x] Expose Http and methods to python\n- [x] Switch from reqwests to `hyper`\n- [x] Implement SSL support with `hyper`\n- [x] Implement search utilities to python\n- [x] load_tracks to return Track in python\n- [x] Streamable queue reader\n\n## Links to download stuff you will need\n\nTo install Lavalink, you can follow their [getting started guide](https://lavalink.dev/getting-started/index.html).\n\n## How to use\n\nThis is how you can install the library to be used.\n\n### Rust\n\nYou can install the latest version from crates.io:\n\n```toml\nlavalink-rs = \"0.12\"\n\n# or\n\n[dependencies.lavalink-rs]\nversion = \"0.12\"\n```\n\nOr the development release:\n\n```toml\nlavalink-rs = { git = \"https://gitlab.com/vicky5124/lavalink-rs/\", branch = \"main\"}\n\n# or\n\n[dependencies.lavalink-rs]\ngit = \"https://gitlab.com/vicky5124/lavalink-rs/\"\nbranch = \"main\"\n```\n\nIf you wish to use a development version of songbird (or serenity, or twilight-model), add the following to the Cargo.toml:\n\n```toml\n[patch.crates-io.songbird]\ngit = \"https://github.com/serenity-rs/songbird\"\nbranch = \"next\"\n\n[dependencies.songbird]\ngit = \"https://github.com/serenity-rs/songbird\"\nbranch = \"next\"\n```\n\n### Python\n\nYou can install the latest version from [pypi](https://pypi.org/project/lavalink_rs/) by using `python3 -m pip install lavalink_rs`.\n\nOS | Arch | Python Versions | Supported?\n-|-|-|-\nWindows | x86 | 3.8-3.12 | \u2705\nWindows | x64 | 3.8-3.12 | \u2705\nWindows | aarch64 | - | \u274c\nMac OS | x86_64 | 3.8-3.12 | \u2705\nMac OS | aarch64 | 3.8-3.12 | \u2705\nLinux | x86 | 3.8-3.12 | \u2705\nLinux | x86_64 | 3.8-3.12 | \u2705\nLinux | armv7 | 3.8-3.12 | \u2705\nLinux | aarch64 | 3.8-3.12 | \u2705\nLinux | ppc64le | - | \u274c\nLinux | s390x | - | \u274c\n\n## Building the library\n\nYou can build the library using `cargo build`\n\nTo build for python, you can use maturin instead.\n\n```\npython3 -m venv .venv\nsource .venv/bin/activate\npython3 -m pip install maturin\nmaturin develop --target x86_64-unknown-linux-gnu\n```\n\n## Features\n\n- `macros`: **default feature** - Adds procedural macros for ease of use.\n- `rustls-native-roots`: **default feature** - Use rustls with the system trusted roots.\n- `rustls-webpki-roots`: Use rustls with the Mozilla set of trusted roots.\n- `native-tls` Use the system native tls implementation.\n- `serenity` for [serenity](https://lib.rs/crates/serenity) support.\n- `songbird` for [songbird](https://lib.rs/crates/songbird) support.\n- `twilight` for [twilight-model](https://lib.rs/crates/twilight-model) v0.15 support.\n- `twilight16` for [twilight-model](https://lib.rs/crates/twilight-model) v0.16-rc support.\n- `python` for python3.8+ support.\n\n## Contributing\n\nTo contribute to the project, fork the [gitlab repository](https://gitlab.com/vicky5124/lavalink-rs) and create a merge request over there. Make sure to update the changelog with whatever update you did to the library.\n\n",
    "bugtrack_url": null,
    "license": "MPL-2.0",
    "summary": "Lavalink API wrapper for discord audio playing",
    "version": "0.12.0",
    "project_urls": {
        "Homepage": "https://gitlab.com/vicky5124/lavalink-rs/",
        "Source Code": "https://gitlab.com/vicky5124/lavalink-rs/"
    },
    "split_keywords": [
        "lavalink",
        " discord",
        " serenity",
        " twilight",
        " songbird"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c229fe5bcbcf37d47d7c2b6de373d3f6b47a3f3bece36b625457c0b12e836def",
                "md5": "052067515010d6e50efdf599dc93be31",
                "sha256": "f8ad01faf16a1ae7530ad8a36fac830984cb14e704040e3b42857a751f8dbb4e"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "052067515010d6e50efdf599dc93be31",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.13,>=3.8",
            "size": 3369006,
            "upload_time": "2024-04-30T21:35:59",
            "upload_time_iso_8601": "2024-04-30T21:35:59.585842Z",
            "url": "https://files.pythonhosted.org/packages/c2/29/fe5bcbcf37d47d7c2b6de373d3f6b47a3f3bece36b625457c0b12e836def/lavalink_rs-0.12.0-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9c467b6eeda7d4bd5146a39f3c0e186352af2fadd70b70bc8bad14ad133f6b84",
                "md5": "fed731058add2a24f526e08676bbdf31",
                "sha256": "38509910c1b7a48c9549d06f28db13622e3fb5005ec3e35fd522834d9eca62e5"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "fed731058add2a24f526e08676bbdf31",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.13,>=3.8",
            "size": 3280319,
            "upload_time": "2024-04-30T21:36:02",
            "upload_time_iso_8601": "2024-04-30T21:36:02.415858Z",
            "url": "https://files.pythonhosted.org/packages/9c/46/7b6eeda7d4bd5146a39f3c0e186352af2fadd70b70bc8bad14ad133f6b84/lavalink_rs-0.12.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "99a99e099c9eb8d20d21eae64bf2b90b328fa947b2c04807cd3d8fbc64eeb05c",
                "md5": "86ffb338c3914ae9f222ed0bca73aca4",
                "sha256": "6b34e1f8425277270290099f2d4f208086960d2ef41c8148ea40de0c5a6c46af"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "86ffb338c3914ae9f222ed0bca73aca4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.13,>=3.8",
            "size": 4814972,
            "upload_time": "2024-04-30T21:36:04",
            "upload_time_iso_8601": "2024-04-30T21:36:04.659462Z",
            "url": "https://files.pythonhosted.org/packages/99/a9/9e099c9eb8d20d21eae64bf2b90b328fa947b2c04807cd3d8fbc64eeb05c/lavalink_rs-0.12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "02b5f5ef932277e4e21d5eee39e15e7588479a93687f07bc57dfe8caed34fddc",
                "md5": "1126bc643abe3698126c6d5ba8029577",
                "sha256": "2222416ccf31d0342f94e369b69e60f61fc2b621c13d5f9f4bda6399829c914d"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "1126bc643abe3698126c6d5ba8029577",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.13,>=3.8",
            "size": 4802954,
            "upload_time": "2024-04-30T21:36:06",
            "upload_time_iso_8601": "2024-04-30T21:36:06.945250Z",
            "url": "https://files.pythonhosted.org/packages/02/b5/f5ef932277e4e21d5eee39e15e7588479a93687f07bc57dfe8caed34fddc/lavalink_rs-0.12.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a3d440cf4749102871f6a329ff0391489a23e9f26032686a7d28f873189da517",
                "md5": "2d5f45027a7418286edd6868a7c55030",
                "sha256": "3302e0608635397e30305d1ddea2dd9d6bfb15badb75931c5ad7cd2a28f29e70"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "2d5f45027a7418286edd6868a7c55030",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.13,>=3.8",
            "size": 4858398,
            "upload_time": "2024-04-30T21:36:08",
            "upload_time_iso_8601": "2024-04-30T21:36:08.791600Z",
            "url": "https://files.pythonhosted.org/packages/a3/d4/40cf4749102871f6a329ff0391489a23e9f26032686a7d28f873189da517/lavalink_rs-0.12.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "98de9eca1c4df6e8e92b016518af287133b1b5eb691bdd0bbf271b6c54cf6fd8",
                "md5": "8dd963df48ff8cab5a89fb17cd33f3dc",
                "sha256": "0f4146a678bdb26a42352667f440e14d248930de26ff4d4810c96722c9609f12"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8dd963df48ff8cab5a89fb17cd33f3dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.13,>=3.8",
            "size": 4724942,
            "upload_time": "2024-04-30T21:36:11",
            "upload_time_iso_8601": "2024-04-30T21:36:11.310579Z",
            "url": "https://files.pythonhosted.org/packages/98/de/9eca1c4df6e8e92b016518af287133b1b5eb691bdd0bbf271b6c54cf6fd8/lavalink_rs-0.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4ef26e3e853b3d49c5da5242a8848ff44601d9982617741fb43024d1e9778cfc",
                "md5": "d636dee691ce34d0cf69e8a7fa34abba",
                "sha256": "d16902ec3c34dd886b5b0f5ed128ea272f438ea3f4bcc91a6d37b81601d58752"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "d636dee691ce34d0cf69e8a7fa34abba",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.13,>=3.8",
            "size": 2594342,
            "upload_time": "2024-04-30T21:36:13",
            "upload_time_iso_8601": "2024-04-30T21:36:13.557738Z",
            "url": "https://files.pythonhosted.org/packages/4e/f2/6e3e853b3d49c5da5242a8848ff44601d9982617741fb43024d1e9778cfc/lavalink_rs-0.12.0-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a37fedd3e5a63258ea3b882b3e98a9f0e6d5fecaa494fd08fff87c4838053d3e",
                "md5": "c479c7ec136a81d0a2ee14811356909d",
                "sha256": "568ea4344840bb0a14d8dbb31411ab4fe2e942dd51fcde9856953aca413c7b57"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c479c7ec136a81d0a2ee14811356909d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.13,>=3.8",
            "size": 3140695,
            "upload_time": "2024-04-30T21:36:15",
            "upload_time_iso_8601": "2024-04-30T21:36:15.271823Z",
            "url": "https://files.pythonhosted.org/packages/a3/7f/edd3e5a63258ea3b882b3e98a9f0e6d5fecaa494fd08fff87c4838053d3e/lavalink_rs-0.12.0-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0a62231ca5e3f0390e4239bb399154b1b919df3da0306d0c1f58ae97cdc2b831",
                "md5": "eded6a3b088b075325b586df135cd788",
                "sha256": "727e617e0aa42ed8bfbe05c2463c90126d05c21b9f95981d2ca2d2d5e9d158e6"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eded6a3b088b075325b586df135cd788",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.13,>=3.8",
            "size": 3367389,
            "upload_time": "2024-04-30T21:36:17",
            "upload_time_iso_8601": "2024-04-30T21:36:17.616638Z",
            "url": "https://files.pythonhosted.org/packages/0a/62/231ca5e3f0390e4239bb399154b1b919df3da0306d0c1f58ae97cdc2b831/lavalink_rs-0.12.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0ed46e76e51e93604b843d54097dbb3d2fa49ecae1af31137bd235ae64f66e97",
                "md5": "a94429e71916f34449097ef02d24eb4c",
                "sha256": "373122e253861e700e8e575addbe63a8e4ae1fd171bbf2f7e8ba849c33174d50"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a94429e71916f34449097ef02d24eb4c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.13,>=3.8",
            "size": 3280561,
            "upload_time": "2024-04-30T21:36:19",
            "upload_time_iso_8601": "2024-04-30T21:36:19.260405Z",
            "url": "https://files.pythonhosted.org/packages/0e/d4/6e76e51e93604b843d54097dbb3d2fa49ecae1af31137bd235ae64f66e97/lavalink_rs-0.12.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "47ea05f90346d8344daf285febfee13e09d039eb361332e16a05d4a636397e41",
                "md5": "9cfe9b89711928c13e69af041c4d13f1",
                "sha256": "34f8c1e1ca0b624cb67d99a0d5b716b2ced8fd5a6ec8c34c38923c0f4e069241"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9cfe9b89711928c13e69af041c4d13f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.13,>=3.8",
            "size": 4816026,
            "upload_time": "2024-04-30T21:36:21",
            "upload_time_iso_8601": "2024-04-30T21:36:21.174776Z",
            "url": "https://files.pythonhosted.org/packages/47/ea/05f90346d8344daf285febfee13e09d039eb361332e16a05d4a636397e41/lavalink_rs-0.12.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "412cd5f4173abd21c5d34c87304afa80db7db4100e45bbf3eb68df0666500160",
                "md5": "682f458c9489fb9a8b555d0040c60bb3",
                "sha256": "28bd111b846db5dae7a11be2478d18e0dca5a8375a5180a100a02d5bb2d551a0"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "682f458c9489fb9a8b555d0040c60bb3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.13,>=3.8",
            "size": 4804362,
            "upload_time": "2024-04-30T21:36:23",
            "upload_time_iso_8601": "2024-04-30T21:36:23.692415Z",
            "url": "https://files.pythonhosted.org/packages/41/2c/d5f4173abd21c5d34c87304afa80db7db4100e45bbf3eb68df0666500160/lavalink_rs-0.12.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e167b707dbf6e759bcfaf63ce2a169e7bd917e42fdc3fb0985eadabb727aa6f3",
                "md5": "a463f6fb4269b3b3b392dd856ac8fdcf",
                "sha256": "dc1f4ebf97bca6cc4d6e61c73cedc767e1fe40d244473ddd89705f5b48a47bf1"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a463f6fb4269b3b3b392dd856ac8fdcf",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.13,>=3.8",
            "size": 4858477,
            "upload_time": "2024-04-30T21:36:26",
            "upload_time_iso_8601": "2024-04-30T21:36:26.565250Z",
            "url": "https://files.pythonhosted.org/packages/e1/67/b707dbf6e759bcfaf63ce2a169e7bd917e42fdc3fb0985eadabb727aa6f3/lavalink_rs-0.12.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bf8ea26ffbb19a1346ebe5a4a49541d72108ecaeab93b39d5394c3d075ac4c9a",
                "md5": "4548e507909bd12a6bfd1135d699231b",
                "sha256": "a04710ab6990ddf5966479bb130360305759bf5a2047b3e2fa0157d5a38e48ee"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4548e507909bd12a6bfd1135d699231b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.13,>=3.8",
            "size": 4718634,
            "upload_time": "2024-04-30T21:36:29",
            "upload_time_iso_8601": "2024-04-30T21:36:29.420754Z",
            "url": "https://files.pythonhosted.org/packages/bf/8e/a26ffbb19a1346ebe5a4a49541d72108ecaeab93b39d5394c3d075ac4c9a/lavalink_rs-0.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7aea13f232fd50169eb497fc08176286d3a17c95dfdb03678dc05cfed6ec21c2",
                "md5": "6d3792bd4ac07f1baaee9217b2f22ef7",
                "sha256": "e0e81937ffe0e37db0717606104c4c87373e2b4ec158e92bc7e8b298540352dc"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "6d3792bd4ac07f1baaee9217b2f22ef7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.13,>=3.8",
            "size": 2594302,
            "upload_time": "2024-04-30T21:36:31",
            "upload_time_iso_8601": "2024-04-30T21:36:31.331459Z",
            "url": "https://files.pythonhosted.org/packages/7a/ea/13f232fd50169eb497fc08176286d3a17c95dfdb03678dc05cfed6ec21c2/lavalink_rs-0.12.0-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ad4d9d2d718b975096e81007567dea51e8a6d204c75057626ba161a39cc399a5",
                "md5": "677b7aa3a6884b53a7464a87b75f735f",
                "sha256": "929394294de6f662de859f1aae3bc96b32a1a2845d87dccf11f2f1f3ed33a500"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "677b7aa3a6884b53a7464a87b75f735f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.13,>=3.8",
            "size": 3140616,
            "upload_time": "2024-04-30T21:36:33",
            "upload_time_iso_8601": "2024-04-30T21:36:33.084100Z",
            "url": "https://files.pythonhosted.org/packages/ad/4d/9d2d718b975096e81007567dea51e8a6d204c75057626ba161a39cc399a5/lavalink_rs-0.12.0-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eafc0bc643edb5987487dfa7a2ecc53707c85140533f128c06f2f50c333bec8a",
                "md5": "7e5ba3fbddf4aedb9f9c44d38ed4cff7",
                "sha256": "58d3bcc694c11a6c1cd2af2f331678c7f68ae803d76010f7eafa5b280505dd19"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7e5ba3fbddf4aedb9f9c44d38ed4cff7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.13,>=3.8",
            "size": 3369727,
            "upload_time": "2024-04-30T21:36:34",
            "upload_time_iso_8601": "2024-04-30T21:36:34.732107Z",
            "url": "https://files.pythonhosted.org/packages/ea/fc/0bc643edb5987487dfa7a2ecc53707c85140533f128c06f2f50c333bec8a/lavalink_rs-0.12.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eb359e7245069e6f83a7052c62b6528d2a973bb60c0caab884e4c5c70370dc36",
                "md5": "cd7d87e272855037a3777aff8606aafb",
                "sha256": "b645ac2512b78ba5c58df44ea11ddd9743c0d68a1edcbc10628d96047ec59391"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cd7d87e272855037a3777aff8606aafb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.13,>=3.8",
            "size": 3277997,
            "upload_time": "2024-04-30T21:36:36",
            "upload_time_iso_8601": "2024-04-30T21:36:36.390174Z",
            "url": "https://files.pythonhosted.org/packages/eb/35/9e7245069e6f83a7052c62b6528d2a973bb60c0caab884e4c5c70370dc36/lavalink_rs-0.12.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e4d35b2e79288b916993e2c181f6ea9ccfcd860912f7939e67d66665c8c5fdd7",
                "md5": "0917e61965dbaba99ff073585f1f33fb",
                "sha256": "372001d494a846950a88c49991047d500c64e9ba6ec9f45bf5ece7e8233fa2cd"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0917e61965dbaba99ff073585f1f33fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.13,>=3.8",
            "size": 4814289,
            "upload_time": "2024-04-30T21:36:38",
            "upload_time_iso_8601": "2024-04-30T21:36:38.303801Z",
            "url": "https://files.pythonhosted.org/packages/e4/d3/5b2e79288b916993e2c181f6ea9ccfcd860912f7939e67d66665c8c5fdd7/lavalink_rs-0.12.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4c46e305dafcd18366041e02d27d5b66be7749ba51c8cbebc712ca85b61c415d",
                "md5": "919d44b539ae89e73483b55343140f89",
                "sha256": "883fae59ae0857bc7a3208f6f23e2ea29a898c065316d67777274bc92df4b7ce"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "919d44b539ae89e73483b55343140f89",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.13,>=3.8",
            "size": 4801770,
            "upload_time": "2024-04-30T21:36:40",
            "upload_time_iso_8601": "2024-04-30T21:36:40.597103Z",
            "url": "https://files.pythonhosted.org/packages/4c/46/e305dafcd18366041e02d27d5b66be7749ba51c8cbebc712ca85b61c415d/lavalink_rs-0.12.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bc5f7d703e5927f4934c98068bf118c84051e7f15d41afd6085d4cc72a1d57a3",
                "md5": "ba1da15a76910d993bef8cf970b7d08d",
                "sha256": "962262a13932aec02f3a26c6bbe9cbc99fe5df5073fb498dfbfd38a20a969b6b"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ba1da15a76910d993bef8cf970b7d08d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.13,>=3.8",
            "size": 4865854,
            "upload_time": "2024-04-30T21:36:42",
            "upload_time_iso_8601": "2024-04-30T21:36:42.800475Z",
            "url": "https://files.pythonhosted.org/packages/bc/5f/7d703e5927f4934c98068bf118c84051e7f15d41afd6085d4cc72a1d57a3/lavalink_rs-0.12.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aeb87a97b8a964bcbb7783b4088e821c631527f1a8819a61de2d0e0fcf2fa547",
                "md5": "45aee369207570fac517abbeb2117673",
                "sha256": "0f2d7e3e9de1e45cbd803a160474c20740673d39aa567b8a2fd8ee263f819cb0"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "45aee369207570fac517abbeb2117673",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.13,>=3.8",
            "size": 4725815,
            "upload_time": "2024-04-30T21:36:44",
            "upload_time_iso_8601": "2024-04-30T21:36:44.760764Z",
            "url": "https://files.pythonhosted.org/packages/ae/b8/7a97b8a964bcbb7783b4088e821c631527f1a8819a61de2d0e0fcf2fa547/lavalink_rs-0.12.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7efaa85d96649dfa2d27fb64ae63dd9d36f3cec7f1d715a88073681f470218eb",
                "md5": "0cb4c9b6cc13c4725e9fdf016d292cd4",
                "sha256": "a6598714e61b274f2d552b8a4039908b867ff71b8c7b34009646c762e9721a8f"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "0cb4c9b6cc13c4725e9fdf016d292cd4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.13,>=3.8",
            "size": 2593910,
            "upload_time": "2024-04-30T21:36:46",
            "upload_time_iso_8601": "2024-04-30T21:36:46.670097Z",
            "url": "https://files.pythonhosted.org/packages/7e/fa/a85d96649dfa2d27fb64ae63dd9d36f3cec7f1d715a88073681f470218eb/lavalink_rs-0.12.0-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "17735476e3908f339c2c702fd49d218555c84cb302a4c33f238aafb78f908bb6",
                "md5": "ce16a39b00e5c02e3f1d05a988c623f6",
                "sha256": "312d09e75d8575d459e23d4505f86c5d476139d29ed9e20f9b6b6e76a634d3a8"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ce16a39b00e5c02e3f1d05a988c623f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.13,>=3.8",
            "size": 3144429,
            "upload_time": "2024-04-30T21:36:48",
            "upload_time_iso_8601": "2024-04-30T21:36:48.260764Z",
            "url": "https://files.pythonhosted.org/packages/17/73/5476e3908f339c2c702fd49d218555c84cb302a4c33f238aafb78f908bb6/lavalink_rs-0.12.0-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c374de73cdaa452b24aa7bc216684615750fd95690c5712303fd4d1d336c8f3a",
                "md5": "17bb44136923161472b2262305417c33",
                "sha256": "28e9391fe6a2045f7c245255d1f2f0e4c99cb288d7e403d6fc64aef56351d53e"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-cp38-cp38-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "17bb44136923161472b2262305417c33",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<3.13,>=3.8",
            "size": 3368713,
            "upload_time": "2024-04-30T21:36:50",
            "upload_time_iso_8601": "2024-04-30T21:36:50.150526Z",
            "url": "https://files.pythonhosted.org/packages/c3/74/de73cdaa452b24aa7bc216684615750fd95690c5712303fd4d1d336c8f3a/lavalink_rs-0.12.0-cp38-cp38-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ded445a28f4d6694a900837bf1601398c48a2ee659d2cd29384cdf6dc26c3363",
                "md5": "cf79caa844ecf0019cb7568a4bf44024",
                "sha256": "b2fe4023d5c302a2e68a4f05854de5869f7e24781a7b4c54941041431b89b607"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cf79caa844ecf0019cb7568a4bf44024",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<3.13,>=3.8",
            "size": 3278933,
            "upload_time": "2024-04-30T21:36:52",
            "upload_time_iso_8601": "2024-04-30T21:36:52.014429Z",
            "url": "https://files.pythonhosted.org/packages/de/d4/45a28f4d6694a900837bf1601398c48a2ee659d2cd29384cdf6dc26c3363/lavalink_rs-0.12.0-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3a611d648cb9460860f13e8a0dd7eaa7d806664e80d8e00ba83ec6684fbfacd4",
                "md5": "d55fdee73a6d5b4e4e6feffd8163a88f",
                "sha256": "c008d373b61fde16765fc49c4f2fdedb3f9c11534c61d24f776d445a2627a917"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d55fdee73a6d5b4e4e6feffd8163a88f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<3.13,>=3.8",
            "size": 4817062,
            "upload_time": "2024-04-30T21:36:54",
            "upload_time_iso_8601": "2024-04-30T21:36:54.076173Z",
            "url": "https://files.pythonhosted.org/packages/3a/61/1d648cb9460860f13e8a0dd7eaa7d806664e80d8e00ba83ec6684fbfacd4/lavalink_rs-0.12.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "65ca44d905b87a4c1f71425b7a666c2215074261fae69c931f8dd69eece1985d",
                "md5": "c749883c22a3e85d3e8177ef68ead56f",
                "sha256": "606e1d62bf0d77177cacccd5c271e677c8eec6d131c3ccf3cf3ab8830a13c0d3"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c749883c22a3e85d3e8177ef68ead56f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<3.13,>=3.8",
            "size": 4804791,
            "upload_time": "2024-04-30T21:36:56",
            "upload_time_iso_8601": "2024-04-30T21:36:56.098198Z",
            "url": "https://files.pythonhosted.org/packages/65/ca/44d905b87a4c1f71425b7a666c2215074261fae69c931f8dd69eece1985d/lavalink_rs-0.12.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "39bd67495308a5912a9de60696b5b1856ceb45ab4f51365d262a46188b951052",
                "md5": "ae2c5e9f248880f7ca30a531f9a38445",
                "sha256": "095b7e5d42c219a4b82f006af6dd92d162fa0a2a3a5b70ceaab1d141d914042b"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ae2c5e9f248880f7ca30a531f9a38445",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<3.13,>=3.8",
            "size": 4852749,
            "upload_time": "2024-04-30T21:36:59",
            "upload_time_iso_8601": "2024-04-30T21:36:59.188534Z",
            "url": "https://files.pythonhosted.org/packages/39/bd/67495308a5912a9de60696b5b1856ceb45ab4f51365d262a46188b951052/lavalink_rs-0.12.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d1a4f75760bf552bfe25d4472287160f1f8161c961bf8675639aaba05f7d248f",
                "md5": "a564017c73fe0a16ca61f40b7f8c4abf",
                "sha256": "09d20bba977e0d7b26ce7b7be33235748f77fee8f42059389913aab69d7eb7bf"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a564017c73fe0a16ca61f40b7f8c4abf",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<3.13,>=3.8",
            "size": 4722926,
            "upload_time": "2024-04-30T21:37:01",
            "upload_time_iso_8601": "2024-04-30T21:37:01.054982Z",
            "url": "https://files.pythonhosted.org/packages/d1/a4/f75760bf552bfe25d4472287160f1f8161c961bf8675639aaba05f7d248f/lavalink_rs-0.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "65c204954e9eb5bfda42d76d61f1489163d17cda258a6bd5393d7b6ddccac87e",
                "md5": "bd715c907d897efb0ab4528a67d83631",
                "sha256": "6ac14abe2f3ae22ac41cc152764e151574093b7c605d47d0cb247b8f6d1a97b9"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "bd715c907d897efb0ab4528a67d83631",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<3.13,>=3.8",
            "size": 2595193,
            "upload_time": "2024-04-30T21:37:03",
            "upload_time_iso_8601": "2024-04-30T21:37:03.266208Z",
            "url": "https://files.pythonhosted.org/packages/65/c2/04954e9eb5bfda42d76d61f1489163d17cda258a6bd5393d7b6ddccac87e/lavalink_rs-0.12.0-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "25674bd727db3b4cfaa9ac26319dadb68f8a51e68f228462f14eff3d20b4a4bd",
                "md5": "80d004d15ad61fd650d571ee33fabc51",
                "sha256": "00e826700099ac7b7ae9c5cecbe5eb101460eb33ced9297bdc6e3bb0dd06ad2c"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "80d004d15ad61fd650d571ee33fabc51",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<3.13,>=3.8",
            "size": 3140995,
            "upload_time": "2024-04-30T21:37:05",
            "upload_time_iso_8601": "2024-04-30T21:37:05.257511Z",
            "url": "https://files.pythonhosted.org/packages/25/67/4bd727db3b4cfaa9ac26319dadb68f8a51e68f228462f14eff3d20b4a4bd/lavalink_rs-0.12.0-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "07a044b7e2b12fffaeee6aedaefcc3e282ed08c91825fd05eca76bb01d527597",
                "md5": "4465c279a6c6ab81a8add4857a153040",
                "sha256": "60b4f25e6bfe5ae6d4300a727ea7d0904c28f8a0121b14d03b11d1247308233f"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4465c279a6c6ab81a8add4857a153040",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.13,>=3.8",
            "size": 3369261,
            "upload_time": "2024-04-30T21:37:07",
            "upload_time_iso_8601": "2024-04-30T21:37:07.216534Z",
            "url": "https://files.pythonhosted.org/packages/07/a0/44b7e2b12fffaeee6aedaefcc3e282ed08c91825fd05eca76bb01d527597/lavalink_rs-0.12.0-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4f4c4f4d288d47eecd785b20acab4a54664de0a69859b2bd9fd65aa06a5af359",
                "md5": "fcefa4d92b5175e540ccd06973f2711f",
                "sha256": "d3359e5e785044591cfd01670cddd1bdf70a3ff4713b40b03d45e1318e097f3b"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "fcefa4d92b5175e540ccd06973f2711f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.13,>=3.8",
            "size": 3280505,
            "upload_time": "2024-04-30T21:37:09",
            "upload_time_iso_8601": "2024-04-30T21:37:09.111466Z",
            "url": "https://files.pythonhosted.org/packages/4f/4c/4f4d288d47eecd785b20acab4a54664de0a69859b2bd9fd65aa06a5af359/lavalink_rs-0.12.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "115c331a4ad40859a611e2372d7bd5dc22c7b58a5da0c1be4149182195faf23e",
                "md5": "99b59ee582c8a48211e7c4f463aa7beb",
                "sha256": "41ca1b1d8fce4f2c182b827b360d3aac8c1f3f221db7d98f6592087ed13e7b92"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "99b59ee582c8a48211e7c4f463aa7beb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.13,>=3.8",
            "size": 4814188,
            "upload_time": "2024-04-30T21:37:11",
            "upload_time_iso_8601": "2024-04-30T21:37:11.729008Z",
            "url": "https://files.pythonhosted.org/packages/11/5c/331a4ad40859a611e2372d7bd5dc22c7b58a5da0c1be4149182195faf23e/lavalink_rs-0.12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ac98662f056afd1eb669f729b6719f24fa72ef91310aa285ed74de687f70f959",
                "md5": "e75d5175b79b18a91484dbf2c80e7efb",
                "sha256": "093ea0ec52d3f85e75dfb06ef257b7d57f6f3895dc914bf8f00b94053ac69207"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "e75d5175b79b18a91484dbf2c80e7efb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.13,>=3.8",
            "size": 4803761,
            "upload_time": "2024-04-30T21:37:13",
            "upload_time_iso_8601": "2024-04-30T21:37:13.932323Z",
            "url": "https://files.pythonhosted.org/packages/ac/98/662f056afd1eb669f729b6719f24fa72ef91310aa285ed74de687f70f959/lavalink_rs-0.12.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "63dc40eca28723524312e12486a80cc6725f55566fb594642c0f5f2507f2ff04",
                "md5": "ead5e76b5373514537b9d6ced3cf7be1",
                "sha256": "3a0d88e57abe856013be0a7c1be0d891938038d087aeb80020b37e37974c5b75"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ead5e76b5373514537b9d6ced3cf7be1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.13,>=3.8",
            "size": 4859551,
            "upload_time": "2024-04-30T21:37:16",
            "upload_time_iso_8601": "2024-04-30T21:37:16.425899Z",
            "url": "https://files.pythonhosted.org/packages/63/dc/40eca28723524312e12486a80cc6725f55566fb594642c0f5f2507f2ff04/lavalink_rs-0.12.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "14b0317c48b381d6e6011199307b738c2cf906341cb6b72c4fadd8c78a324437",
                "md5": "6caf0d6020c5770ef791498c3ec52d32",
                "sha256": "59b36fc797e8711de668784377aaa529c905d4e05727b54fb25d4ec4ff6595ee"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6caf0d6020c5770ef791498c3ec52d32",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.13,>=3.8",
            "size": 4724706,
            "upload_time": "2024-04-30T21:37:18",
            "upload_time_iso_8601": "2024-04-30T21:37:18.790687Z",
            "url": "https://files.pythonhosted.org/packages/14/b0/317c48b381d6e6011199307b738c2cf906341cb6b72c4fadd8c78a324437/lavalink_rs-0.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e45c0607c569af872312dcac4335cd7f9645ea8042e02b93203f73c15d945a7c",
                "md5": "ea6bc8325aaa477efd3b4ca011b84e51",
                "sha256": "19b2868ec5b877f20860fb21a35d4b8b5bfb19a12cf982fea1cd31472e3086a6"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "ea6bc8325aaa477efd3b4ca011b84e51",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.13,>=3.8",
            "size": 2593497,
            "upload_time": "2024-04-30T21:37:20",
            "upload_time_iso_8601": "2024-04-30T21:37:20.593486Z",
            "url": "https://files.pythonhosted.org/packages/e4/5c/0607c569af872312dcac4335cd7f9645ea8042e02b93203f73c15d945a7c/lavalink_rs-0.12.0-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e1bb32a3ca1be6bd46e9ad681938b7b723a769e24c4a60ab33b3613e18bc0fc0",
                "md5": "09fc5e907e5b1617adfb3e9b75b1d5c1",
                "sha256": "cac117910f87ec956e13fdadc50a01d54d81cd8d0fd91d1a52d064df414557a5"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "09fc5e907e5b1617adfb3e9b75b1d5c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.13,>=3.8",
            "size": 3140756,
            "upload_time": "2024-04-30T21:37:22",
            "upload_time_iso_8601": "2024-04-30T21:37:22.245490Z",
            "url": "https://files.pythonhosted.org/packages/e1/bb/32a3ca1be6bd46e9ad681938b7b723a769e24c4a60ab33b3613e18bc0fc0/lavalink_rs-0.12.0-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a96431663da4ae024705f0fa5719014e6b1c581412b106d4a67b7d8358f8286e",
                "md5": "244b75d70b42d30adb4c53ab3e73a29f",
                "sha256": "fa4bdbbd6c79403d6c16049203632f3cf5612da157f74c546b08a5b90b66051c"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "244b75d70b42d30adb4c53ab3e73a29f",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": "<3.13,>=3.8",
            "size": 4810832,
            "upload_time": "2024-04-30T21:37:23",
            "upload_time_iso_8601": "2024-04-30T21:37:23.941482Z",
            "url": "https://files.pythonhosted.org/packages/a9/64/31663da4ae024705f0fa5719014e6b1c581412b106d4a67b7d8358f8286e/lavalink_rs-0.12.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4bf9281ff2dbe8bb74950fdb41e705c00b246e309c473d6e9e3eb42e95ef0612",
                "md5": "b0deacf56abe70136027a4ea61fcd000",
                "sha256": "68d3cfe6e8285651e21e30a5a95a7b0449267a94fefafe96da4af7ba4ecb0f6c"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "b0deacf56abe70136027a4ea61fcd000",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": "<3.13,>=3.8",
            "size": 4819755,
            "upload_time": "2024-04-30T21:37:25",
            "upload_time_iso_8601": "2024-04-30T21:37:25.883669Z",
            "url": "https://files.pythonhosted.org/packages/4b/f9/281ff2dbe8bb74950fdb41e705c00b246e309c473d6e9e3eb42e95ef0612/lavalink_rs-0.12.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "145586c7b7bc7eb133b41b69024a914b1aa762d3946eef16bfe42d279dbbe4f5",
                "md5": "6ce6b4bac61f9bf5c869d8e9fbbd17a7",
                "sha256": "29ce23883f338a943678746968d81a76a8ce378dee7b9817417b62d36c584d0b"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "6ce6b4bac61f9bf5c869d8e9fbbd17a7",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": "<3.13,>=3.8",
            "size": 4864905,
            "upload_time": "2024-04-30T21:37:28",
            "upload_time_iso_8601": "2024-04-30T21:37:28.132792Z",
            "url": "https://files.pythonhosted.org/packages/14/55/86c7b7bc7eb133b41b69024a914b1aa762d3946eef16bfe42d279dbbe4f5/lavalink_rs-0.12.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d21f388cffc9f575b657d59fdaf8fdf579eda8e2ae00dcb7259dca39b457a3a7",
                "md5": "355d1c10e56889e97a8a348885f10606",
                "sha256": "9d5e7b9d5ee68e61b17dd1397f1d4d54492a1c4fbaf4383d3b529914015eedf7"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "355d1c10e56889e97a8a348885f10606",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": "<3.13,>=3.8",
            "size": 4811065,
            "upload_time": "2024-04-30T21:37:30",
            "upload_time_iso_8601": "2024-04-30T21:37:30.010105Z",
            "url": "https://files.pythonhosted.org/packages/d2/1f/388cffc9f575b657d59fdaf8fdf579eda8e2ae00dcb7259dca39b457a3a7/lavalink_rs-0.12.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e40e8e6a18e8b661caadd2e999c941c044cf233888825b16ea03b6c0400b74bd",
                "md5": "d620822a86d20fa959337d0cf2e960e2",
                "sha256": "dcce459c0cc93573f397920987ab67b184d343669e685c2dec0de420f32415a5"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "d620822a86d20fa959337d0cf2e960e2",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": "<3.13,>=3.8",
            "size": 4819600,
            "upload_time": "2024-04-30T21:37:32",
            "upload_time_iso_8601": "2024-04-30T21:37:32.035899Z",
            "url": "https://files.pythonhosted.org/packages/e4/0e/8e6a18e8b661caadd2e999c941c044cf233888825b16ea03b6c0400b74bd/lavalink_rs-0.12.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "49c51f9d6575b87a30e7609d492b3f21c81d65072e23f370e2ec4f5d8b2c1859",
                "md5": "05d10d238fae497bdcf9198d4070c930",
                "sha256": "780f60aa68ecd776f18a1960438b828d81ab0ca248b349becf8dcee49fe585c5"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "05d10d238fae497bdcf9198d4070c930",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": "<3.13,>=3.8",
            "size": 4864812,
            "upload_time": "2024-04-30T21:37:33",
            "upload_time_iso_8601": "2024-04-30T21:37:33.802578Z",
            "url": "https://files.pythonhosted.org/packages/49/c5/1f9d6575b87a30e7609d492b3f21c81d65072e23f370e2ec4f5d8b2c1859/lavalink_rs-0.12.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "71001fdf095beee497f8c24817ef1ca0dea76bca87072b39827d845f5529ff14",
                "md5": "8ebcf9bed51bd493a24ad00b22898af6",
                "sha256": "86a04692cfdaeddae7feeb6dad45d651094196ff208a4a065353f549e1f92f9b"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8ebcf9bed51bd493a24ad00b22898af6",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": "<3.13,>=3.8",
            "size": 4810835,
            "upload_time": "2024-04-30T21:37:35",
            "upload_time_iso_8601": "2024-04-30T21:37:35.855401Z",
            "url": "https://files.pythonhosted.org/packages/71/00/1fdf095beee497f8c24817ef1ca0dea76bca87072b39827d845f5529ff14/lavalink_rs-0.12.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3ca8e1bbd82b9778d1736b5a57a0a5f2fe3b2d8e6832381fd91eb82d2c0d7257",
                "md5": "fa4e522bc0add78876a03024ee6fd359",
                "sha256": "631029960e3caaf57d47c5066cc2d0d08465fc0bc36e5b634dcfe45ddeab6644"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "fa4e522bc0add78876a03024ee6fd359",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": "<3.13,>=3.8",
            "size": 4818938,
            "upload_time": "2024-04-30T21:37:37",
            "upload_time_iso_8601": "2024-04-30T21:37:37.643475Z",
            "url": "https://files.pythonhosted.org/packages/3c/a8/e1bbd82b9778d1736b5a57a0a5f2fe3b2d8e6832381fd91eb82d2c0d7257/lavalink_rs-0.12.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9eea7f28a8154c88e302dfba25ee636814fc6bd6854f28854a5514e685495151",
                "md5": "de92076976e45a623373140f6d975468",
                "sha256": "49b580cd9ba536d2f7d086bab231e3e272e96dddd8cc61d9900e433e6fb48942"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "de92076976e45a623373140f6d975468",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": "<3.13,>=3.8",
            "size": 4865040,
            "upload_time": "2024-04-30T21:37:39",
            "upload_time_iso_8601": "2024-04-30T21:37:39.443465Z",
            "url": "https://files.pythonhosted.org/packages/9e/ea/7f28a8154c88e302dfba25ee636814fc6bd6854f28854a5514e685495151/lavalink_rs-0.12.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d2e5004db12149665516898ec5a53839cd443531e8734e19d7e85c3533803bcc",
                "md5": "95725a6c3ca3ab515a2e2be9fa08b760",
                "sha256": "55faea5f9151a1fbc88d2e38360864a8579d98c24e97b27917fac2588b3215c3"
            },
            "downloads": -1,
            "filename": "lavalink_rs-0.12.0.tar.gz",
            "has_sig": false,
            "md5_digest": "95725a6c3ca3ab515a2e2be9fa08b760",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<3.13,>=3.8",
            "size": 644172,
            "upload_time": "2024-04-30T21:37:41",
            "upload_time_iso_8601": "2024-04-30T21:37:41.135460Z",
            "url": "https://files.pythonhosted.org/packages/d2/e5/004db12149665516898ec5a53839cd443531e8734e19d7e85c3533803bcc/lavalink_rs-0.12.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-30 21:37:41",
    "github": false,
    "gitlab": true,
    "bitbucket": false,
    "codeberg": false,
    "gitlab_user": "vicky5124",
    "gitlab_project": "lavalink-rs",
    "lcname": "lavalink-rs"
}
        
Elapsed time: 0.26617s