bcml


Namebcml JSON
Version 3.10.8 PyPI version JSON
download
home_pageNone
SummaryA mod manager for The Legend of Zelda: Breath of the Wild
upload_time2023-02-11 15:41:31
maintainerNone
docs_urlNone
authorCaleb Smith
requires_python>=3.7
licenseNone
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ![BCML Logo](https://i.imgur.com/OiqKPx0.png)

# BCML: BOTW Cross-Platform Mod Loader

A mod merging and managing tool for _The Legend of Zelda: Breath of the Wild_

![BCML Banner](https://i.imgur.com/vmZanVl.png)

## Purpose

Why a mod loader for BOTW? Installing a mod is usually easy enough once you have a
homebrewed console or an emulator. Is there a need for a special tool?

Yes. As soon as you start trying to install multiple mods, you will find complications.
The BOTW game ROM is fundamentally structured for performance and storage use on a
family console, without any support for modification. As such, files like the
[resource size table](https://zeldamods.org/wiki/Resource_system) or
[TitleBG.pack](https://zeldamods.org/wiki/TitleBG.pack) will almost inevitably begin to
clash once you have more than a mod or two. Symptoms can include mods simply taking no
effect, odd bugs, actors that don't load, hanging on the load screen, or complete
crashing. BCML exists to resolve this problem. It identifies, isolates, and merges the
changes made by each mod into a single modpack that just works.

## Prerequisites

-   Windows 10+ (7-8 _might_ work but are not officially supported) or basically any modern Linux
    distribution
-   A legal, unpacked game dump of _The Legend of Zelda: Breath of the Wild_ for Switch
    (version 1.6.0) or Wii U (version 1.5.0)
-   [The latest x64 Visual C++ redistributable](https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads#section-2)
-   Cemu (optional)

## Setup

There are two main ways to install BCML.

### PyPI

Install Python 3.7 - 3.10 (**64 bit version**), making sure to add it to your PATH, and then
run `pip install bcml`.

**Note for Linux users**: Because of the ways different distros handle Python packaging,
it often works better to install BCML in some contained environment. There are a few options for
this. The easiest would be to use [`pipx`](https://github.com/pypa/pipx). You can install `pipx`
through pip, and then run `pipx install bcml`. In some cases you might need to also run `pipx
inject bcml pywebview[qt]`.

**Note for Linux white screen bug**: Try setting the environmental variable: `QTWEBENGINE_DISABLE_SANDBOX=1`.

Another option for Linux users is using a virtual environment ("venv"). To do so, you can run
something like this:

```sh
python -m venv bcml_env
source bcml_env/bin/activate # will activate the venv
pip install bcml
```

**Full Linux Example with CEMU**

`sudo pacman -S python39` Adjust for you distribution, arch defaults to a newer python

```mkdir -p ~/.local/share/cemu/graphicPacks/BreathOfTheWild_BCML
python3.9 -m venv /.local/bcml_env
source ~/.local/bcml_env/bin/activate
python3.9 -m pip install bcml
~/.local/bcml_env/bin/bcml
```

to launch BCML in the future

`source ~/.local/bcml_env/bin/activate; ~/.local/bcml_env/bin/bcml`

- In BCML, check 'without cemu' and set export path to '~/.local/share/cemu/graphicPacks/BreathOfTheWild_BCML'
- install your mods
- execute `curl https://pastebin.com/raw/igCLK2tz -o ~/.local/share/cemu/graphicPacks/BreathOfTheWild_BCML/rules.txt`

* If your mods still don't load, verify that ~/.local/share/cemu/graphicPacks/BreathOfTheWild_BCML/rules.txt exist and try 'disable links for master mod' in BCML settings

### Building from Source

Building from source requires, in addition to the general prerequisites:

-   Python 3.7 - 3.10 64 bit

-   Rust 1.60+ (nightly)

-   Node.js v14+

-   mkdocs and mkdocs-material

    Run `pip install mkdocs mkdocs-material` in venv if not using `bootstrap.sh`

Steps to build from source:

1. Create and activate a Python virtual environment (venv)

    1. Open terminal to repo root folder
    2. `python -m venv venv`
    3. Activate the venv (usually `venv/bin/activate` on Linux or `venv\Scripts\activate.ps1` on Windows)

2. Install Python requirements

    1. Open terminal to repo root folder
    2. Run `pip install -r requirements.txt`
    3. Also install Maturin: `pip install maturin`

3. Build Rust extension module

    1. Open terminal to repo root folder
    2. Run `maturin develop` (or `maturin develop --release` for performance)

4. Prepare the webpack bundle

    1. Open terminal to `bcml/assets`
    2. Run `npm install`
    3. Run `npm run build` (or `npm run test` to watch while editing)

5. Build the docs

    1. Open terminal to repo root folder
    2. Run `mkdocs build`

6. Create an installable wheel with `maturin build` or run without installing with
   `python -m bcml`

Note that on Linux, you can simply run `bootstrap.sh` to perform these steps
automatically unless you would like more control.

## Usage and Troubleshooting

For information on how to use BCML, see the Help dialog in-app or read the documentation
[on the repo](https://github.com/NiceneNerd/BCML/tree/master/docs). For issues and
troubleshooting, please check the official
[Troubleshooting](https://github.com/NiceneNerd/BCML/wiki/Troubleshooting) page.

## Contributing

-   Issues: <https://github.com/NiceneNerd/BCML/issues>
-   Source: <https://github.com/NiceneNerd/BCML>

BOTW is an immensely complex game, and there are a number of new mergers that could be
written. If you find an aspect of the game that can be complicated by mod conflicts, but
BCML doesn't yet handle it, feel free to try writing a merger for it and submitting a
PR.

Python and JSX code for BCML is subject to formatting standards. Python should be
formatted with Black. JSX should be formatted with Prettier, using the following
settings:

```json
{
    "prettier.arrowParens": "avoid",
    "prettier.jsxBracketSameLine": true,
    "prettier.printWidth": 88,
    "prettier.tabWidth": 4,
    "prettier.trailingComma": "none"
}
```

## License

This software is licensed under the terms of the GNU General Public License, version 3
or later. The source is publicly available on
[GitHub](https://github.com/NiceneNerd/BCML).

This software includes the 7-Zip console application `7z.exe` and the library `7z.dll`,
which are licensed under the GNU Lesser General Public License. The source code for this
application is available for free at <https://www.7-zip.org/download.html>.

This software includes part of a modified copy of the `pywebview` Python package,
copyright 2020 Roman Sirokov under the BSD-3-Clause License. The source code for the
original library is available for free at <https://github.com/r0x0r/pywebview>.


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "bcml",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": null,
    "author": "Caleb Smith",
    "author_email": null,
    "download_url": null,
    "platform": null,
    "description": "![BCML Logo](https://i.imgur.com/OiqKPx0.png)\n\n# BCML: BOTW Cross-Platform Mod Loader\n\nA mod merging and managing tool for _The Legend of Zelda: Breath of the Wild_\n\n![BCML Banner](https://i.imgur.com/vmZanVl.png)\n\n## Purpose\n\nWhy a mod loader for BOTW? Installing a mod is usually easy enough once you have a\nhomebrewed console or an emulator. Is there a need for a special tool?\n\nYes. As soon as you start trying to install multiple mods, you will find complications.\nThe BOTW game ROM is fundamentally structured for performance and storage use on a\nfamily console, without any support for modification. As such, files like the\n[resource size table](https://zeldamods.org/wiki/Resource_system) or\n[TitleBG.pack](https://zeldamods.org/wiki/TitleBG.pack) will almost inevitably begin to\nclash once you have more than a mod or two. Symptoms can include mods simply taking no\neffect, odd bugs, actors that don't load, hanging on the load screen, or complete\ncrashing. BCML exists to resolve this problem. It identifies, isolates, and merges the\nchanges made by each mod into a single modpack that just works.\n\n## Prerequisites\n\n-   Windows 10+ (7-8 _might_ work but are not officially supported) or basically any modern Linux\n    distribution\n-   A legal, unpacked game dump of _The Legend of Zelda: Breath of the Wild_ for Switch\n    (version 1.6.0) or Wii U (version 1.5.0)\n-   [The latest x64 Visual C++ redistributable](https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads#section-2)\n-   Cemu (optional)\n\n## Setup\n\nThere are two main ways to install BCML.\n\n### PyPI\n\nInstall Python 3.7 - 3.10 (**64 bit version**), making sure to add it to your PATH, and then\nrun `pip install bcml`.\n\n**Note for Linux users**: Because of the ways different distros handle Python packaging,\nit often works better to install BCML in some contained environment. There are a few options for\nthis. The easiest would be to use [`pipx`](https://github.com/pypa/pipx). You can install `pipx`\nthrough pip, and then run `pipx install bcml`. In some cases you might need to also run `pipx\ninject bcml pywebview[qt]`.\n\n**Note for Linux white screen bug**: Try setting the environmental variable: `QTWEBENGINE_DISABLE_SANDBOX=1`.\n\nAnother option for Linux users is using a virtual environment (\"venv\"). To do so, you can run\nsomething like this:\n\n```sh\npython -m venv bcml_env\nsource bcml_env/bin/activate # will activate the venv\npip install bcml\n```\n\n**Full Linux Example with CEMU**\n\n`sudo pacman -S python39` Adjust for you distribution, arch defaults to a newer python\n\n```mkdir -p ~/.local/share/cemu/graphicPacks/BreathOfTheWild_BCML\npython3.9 -m venv /.local/bcml_env\nsource ~/.local/bcml_env/bin/activate\npython3.9 -m pip install bcml\n~/.local/bcml_env/bin/bcml\n```\n\nto launch BCML in the future\n\n`source ~/.local/bcml_env/bin/activate; ~/.local/bcml_env/bin/bcml`\n\n- In BCML, check 'without cemu' and set export path to '~/.local/share/cemu/graphicPacks/BreathOfTheWild_BCML'\n- install your mods\n- execute `curl https://pastebin.com/raw/igCLK2tz -o ~/.local/share/cemu/graphicPacks/BreathOfTheWild_BCML/rules.txt`\n\n* If your mods still don't load, verify that ~/.local/share/cemu/graphicPacks/BreathOfTheWild_BCML/rules.txt exist and try 'disable links for master mod' in BCML settings\n\n### Building from Source\n\nBuilding from source requires, in addition to the general prerequisites:\n\n-   Python 3.7 - 3.10 64 bit\n\n-   Rust 1.60+ (nightly)\n\n-   Node.js v14+\n\n-   mkdocs and mkdocs-material\n\n    Run `pip install mkdocs mkdocs-material` in venv if not using `bootstrap.sh`\n\nSteps to build from source:\n\n1. Create and activate a Python virtual environment (venv)\n\n    1. Open terminal to repo root folder\n    2. `python -m venv venv`\n    3. Activate the venv (usually `venv/bin/activate` on Linux or `venv\\Scripts\\activate.ps1` on Windows)\n\n2. Install Python requirements\n\n    1. Open terminal to repo root folder\n    2. Run `pip install -r requirements.txt`\n    3. Also install Maturin: `pip install maturin`\n\n3. Build Rust extension module\n\n    1. Open terminal to repo root folder\n    2. Run `maturin develop` (or `maturin develop --release` for performance)\n\n4. Prepare the webpack bundle\n\n    1. Open terminal to `bcml/assets`\n    2. Run `npm install`\n    3. Run `npm run build` (or `npm run test` to watch while editing)\n\n5. Build the docs\n\n    1. Open terminal to repo root folder\n    2. Run `mkdocs build`\n\n6. Create an installable wheel with `maturin build` or run without installing with\n   `python -m bcml`\n\nNote that on Linux, you can simply run `bootstrap.sh` to perform these steps\nautomatically unless you would like more control.\n\n## Usage and Troubleshooting\n\nFor information on how to use BCML, see the Help dialog in-app or read the documentation\n[on the repo](https://github.com/NiceneNerd/BCML/tree/master/docs). For issues and\ntroubleshooting, please check the official\n[Troubleshooting](https://github.com/NiceneNerd/BCML/wiki/Troubleshooting) page.\n\n## Contributing\n\n-   Issues: <https://github.com/NiceneNerd/BCML/issues>\n-   Source: <https://github.com/NiceneNerd/BCML>\n\nBOTW is an immensely complex game, and there are a number of new mergers that could be\nwritten. If you find an aspect of the game that can be complicated by mod conflicts, but\nBCML doesn't yet handle it, feel free to try writing a merger for it and submitting a\nPR.\n\nPython and JSX code for BCML is subject to formatting standards. Python should be\nformatted with Black. JSX should be formatted with Prettier, using the following\nsettings:\n\n```json\n{\n    \"prettier.arrowParens\": \"avoid\",\n    \"prettier.jsxBracketSameLine\": true,\n    \"prettier.printWidth\": 88,\n    \"prettier.tabWidth\": 4,\n    \"prettier.trailingComma\": \"none\"\n}\n```\n\n## License\n\nThis software is licensed under the terms of the GNU General Public License, version 3\nor later. The source is publicly available on\n[GitHub](https://github.com/NiceneNerd/BCML).\n\nThis software includes the 7-Zip console application `7z.exe` and the library `7z.dll`,\nwhich are licensed under the GNU Lesser General Public License. The source code for this\napplication is available for free at <https://www.7-zip.org/download.html>.\n\nThis software includes part of a modified copy of the `pywebview` Python package,\ncopyright 2020 Roman Sirokov under the BSD-3-Clause License. The source code for the\noriginal library is available for free at <https://github.com/r0x0r/pywebview>.\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A mod manager for The Legend of Zelda: Breath of the Wild",
    "version": "3.10.8",
    "split_keywords": [],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0eaaebdc1c3bba9d9de989803cf5391f3d4f1b40bd992b924db7a394efea4b62",
                "md5": "1beb68da0333616282fb43e76bc83d8c",
                "sha256": "1bdc84f727cbd5b1faa495ab30318882889de5ab1363bb84c017c492c4a7daf3"
            },
            "downloads": -1,
            "filename": "bcml-3.10.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1beb68da0333616282fb43e76bc83d8c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 18812297,
            "upload_time": "2023-02-11T15:41:31",
            "upload_time_iso_8601": "2023-02-11T15:41:31.517922Z",
            "url": "https://files.pythonhosted.org/packages/0e/aa/ebdc1c3bba9d9de989803cf5391f3d4f1b40bd992b924db7a394efea4b62/bcml-3.10.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d27e25f8588249b7ea581da7aba2410b72677817eff45abbaca8175326395cd6",
                "md5": "e5f4a5d2cb36004723cc34726ced4110",
                "sha256": "402b983a2355428c961b8121b3ceba3d8ea005574dfd740351ddf581a638ad13"
            },
            "downloads": -1,
            "filename": "bcml-3.10.8-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e5f4a5d2cb36004723cc34726ced4110",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 18843552,
            "upload_time": "2023-02-11T15:44:15",
            "upload_time_iso_8601": "2023-02-11T15:44:15.777917Z",
            "url": "https://files.pythonhosted.org/packages/d2/7e/25f8588249b7ea581da7aba2410b72677817eff45abbaca8175326395cd6/bcml-3.10.8-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "269ec4b48efd8959272a775c794e35a84f966db0234352779b47a12ebb129b00",
                "md5": "d8cabcb80decc46fa5f2ab3715bbe918",
                "sha256": "fef942f32f484f101c1de98dac83d9b50e9269b365bc68fc2de4fba76282bfc3"
            },
            "downloads": -1,
            "filename": "bcml-3.10.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d8cabcb80decc46fa5f2ab3715bbe918",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 18812297,
            "upload_time": "2023-02-11T15:41:34",
            "upload_time_iso_8601": "2023-02-11T15:41:34.139464Z",
            "url": "https://files.pythonhosted.org/packages/26/9e/c4b48efd8959272a775c794e35a84f966db0234352779b47a12ebb129b00/bcml-3.10.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "80c25f5ff0c2080bd8d92413e2cca039d1f4b4af6e7525dac3c3aa3a43d6a6d5",
                "md5": "d5f7db3bbd8ebb5859346dd80286cca2",
                "sha256": "852602f205c150df2b4ea83eda6b3679af5fcc6af71eb23ed30677082ba0beed"
            },
            "downloads": -1,
            "filename": "bcml-3.10.8-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d5f7db3bbd8ebb5859346dd80286cca2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 18843551,
            "upload_time": "2023-02-11T15:44:11",
            "upload_time_iso_8601": "2023-02-11T15:44:11.988134Z",
            "url": "https://files.pythonhosted.org/packages/80/c2/5f5ff0c2080bd8d92413e2cca039d1f4b4af6e7525dac3c3aa3a43d6a6d5/bcml-3.10.8-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "239ba2efb6f2b577888dded9b32359ea0ab3d0600ee2e43145ec5629e5dd5f74",
                "md5": "9dbe2ef1908ccce97ac8d39eb59535b9",
                "sha256": "bed849250ebab0edfe0482f0530f46f1f7a05235202582beacde648c1753dd04"
            },
            "downloads": -1,
            "filename": "bcml-3.10.8-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9dbe2ef1908ccce97ac8d39eb59535b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 18812371,
            "upload_time": "2023-02-11T15:41:21",
            "upload_time_iso_8601": "2023-02-11T15:41:21.217184Z",
            "url": "https://files.pythonhosted.org/packages/23/9b/a2efb6f2b577888dded9b32359ea0ab3d0600ee2e43145ec5629e5dd5f74/bcml-3.10.8-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4a63b0aa11f41a396445d5be3986b68999572a93112aa8f68682caf12a80a48d",
                "md5": "a3e3dbf709706d6b645dd96f5edf71fb",
                "sha256": "05d6e9a1bacf73a8d77ecc8afd074254b911d9e0e590503e25b3c26f7a3a3066"
            },
            "downloads": -1,
            "filename": "bcml-3.10.8-cp37-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a3e3dbf709706d6b645dd96f5edf71fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 18843468,
            "upload_time": "2023-02-11T15:44:31",
            "upload_time_iso_8601": "2023-02-11T15:44:31.661536Z",
            "url": "https://files.pythonhosted.org/packages/4a/63/b0aa11f41a396445d5be3986b68999572a93112aa8f68682caf12a80a48d/bcml-3.10.8-cp37-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bd1ca5a7d867ffe230cfdfdaa96be747d1218cfa621db0a8553354c8f0a1458f",
                "md5": "9d562057944da8c30264ac42c6fd369b",
                "sha256": "bed905a1327b3985f3b8dc810ca16d15623a12f106680b9055f8a1ce45d91f44"
            },
            "downloads": -1,
            "filename": "bcml-3.10.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9d562057944da8c30264ac42c6fd369b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 18812366,
            "upload_time": "2023-02-11T15:41:25",
            "upload_time_iso_8601": "2023-02-11T15:41:25.071677Z",
            "url": "https://files.pythonhosted.org/packages/bd/1c/a5a7d867ffe230cfdfdaa96be747d1218cfa621db0a8553354c8f0a1458f/bcml-3.10.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "66f972a8c1244f86a2a48d8d767f09f49f4e10264e3086971ac898b9f2b19906",
                "md5": "71fab67c1e5d95f0efe15ccc63ab156b",
                "sha256": "7a18e4c4d49bd5afe67cc1e52fbe5cc840faa6da6d3ec2ccaf8f066cf844214c"
            },
            "downloads": -1,
            "filename": "bcml-3.10.8-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "71fab67c1e5d95f0efe15ccc63ab156b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 18843511,
            "upload_time": "2023-02-11T15:44:28",
            "upload_time_iso_8601": "2023-02-11T15:44:28.582782Z",
            "url": "https://files.pythonhosted.org/packages/66/f9/72a8c1244f86a2a48d8d767f09f49f4e10264e3086971ac898b9f2b19906/bcml-3.10.8-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7b38e046784deb60343bb078a0be52d2ea2fee943b86a674ebc655b8d90fe28f",
                "md5": "84eccb72f1c6d56d7198cb93113fe03d",
                "sha256": "1ac5f61fa2a7070c5600dbcd661f8edee5726eb22895287fd92d1a25c219fb96"
            },
            "downloads": -1,
            "filename": "bcml-3.10.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "84eccb72f1c6d56d7198cb93113fe03d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 18812293,
            "upload_time": "2023-02-11T15:41:28",
            "upload_time_iso_8601": "2023-02-11T15:41:28.227492Z",
            "url": "https://files.pythonhosted.org/packages/7b/38/e046784deb60343bb078a0be52d2ea2fee943b86a674ebc655b8d90fe28f/bcml-3.10.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f846ec4c2f8a0ff1b0932b59851adfdea520f6a10eefdf8f35a264a5e6797718",
                "md5": "84daa805e972247c6a5ee97cc05de24e",
                "sha256": "a200cca31ddf5155dfa8deee5628f9a9dc36b3ebde01ad4982efea3d8fbf099f"
            },
            "downloads": -1,
            "filename": "bcml-3.10.8-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "84daa805e972247c6a5ee97cc05de24e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 18843541,
            "upload_time": "2023-02-11T15:44:19",
            "upload_time_iso_8601": "2023-02-11T15:44:19.280467Z",
            "url": "https://files.pythonhosted.org/packages/f8/46/ec4c2f8a0ff1b0932b59851adfdea520f6a10eefdf8f35a264a5e6797718/bcml-3.10.8-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "063a05f8d3c5f2be335fac1b45f60702fb02c0e22bfa452c7b1d0ce5ff2efa74",
                "md5": "21701f06384a03e493ea4116f0762a41",
                "sha256": "89f7bbe8e41266b2cb2ada2f5915d242e3c04b21fa879f78ad94c504710412ec"
            },
            "downloads": -1,
            "filename": "bcml-3.10.8-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "21701f06384a03e493ea4116f0762a41",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 18813444,
            "upload_time": "2023-02-11T15:41:37",
            "upload_time_iso_8601": "2023-02-11T15:41:37.432136Z",
            "url": "https://files.pythonhosted.org/packages/06/3a/05f8d3c5f2be335fac1b45f60702fb02c0e22bfa452c7b1d0ce5ff2efa74/bcml-3.10.8-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-02-11 15:41:31",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "lcname": "bcml"
}
        
Elapsed time: 0.05079s