Skip to main content

Model Serving made Efficient in the Cloud

Reason this release was yanked:

potential deadlock when too many disconnects

Project description

MOSEC

discord invitation link PyPI version Python Version PyPi Downloads License Check status

Model Serving made Efficient in the Cloud.

Introduction

Mosec is a high-performance and flexible model serving framework for building ML model-enabled backend and microservices. It bridges the gap between any machine learning models you just trained and the efficient online service API.

  • Highly performant: web layer and task coordination built with Rust 🦀, which offers blazing speed in addition to efficient CPU utilization powered by async I/O
  • Ease of use: user interface purely in Python 🐍, by which users can serve their models in an ML framework-agnostic manner using the same code as they do for offline testing
  • Dynamic batching: aggregate requests from different users for batched inference and distribute results back
  • Pipelined stages: spawn multiple processes for pipelined stages to handle CPU/GPU/IO mixed workloads
  • Cloud friendly: designed to run in the cloud, with the model warmup, graceful shutdown, and Prometheus monitoring metrics, easily managed by Kubernetes or any container orchestration systems
  • Do one thing well: focus on the online serving part, users can pay attention to the model optimization and business logic

Installation

Mosec requires Python 3.7 or above. Install the latest PyPI package with:

pip install -U mosec

Usage

We demonstrate how Mosec can help you easily host a pre-trained stable diffusion model as a service. You need to install diffusers and transformers as prerequisites:

pip install --upgrade diffusers[torch] transformers

Write the server

Firstly, we import the libraries and set up a basic logger to better observe what happens.

from io import BytesIO
from typing import List

import torch  # type: ignore
from diffusers import StableDiffusionPipeline  # type: ignore

from mosec import Server, Worker, get_logger
from mosec.mixin import MsgpackMixin

logger = get_logger()

Then, we build an API for clients to query a text prompt and obtain an image based on the stable-diffusion-v1-5 model in just 3 steps.

  1. Define your service as a class which inherits mosec.Worker. Here we also inherit MsgpackMixin to employ the msgpack serialization format(a).

  2. Inside the __init__ method, initialize your model and put it onto the corresponding device. Optionally you can assign self.example with some data to warm up(b) the model. Note that the data should be compatible with your handler's input format, which we detail next.

  3. Override the forward method to write your service handler(c), with the signature forward(self, data: Any | List[Any]) -> Any | List[Any]. Receiving/returning a single item or a tuple depends on whether dynamic batching(d) is configured.

class StableDiffusion(MsgpackMixin, Worker):
    def __init__(self):
        self.pipe = StableDiffusionPipeline.from_pretrained(
            "runwayml/stable-diffusion-v1-5", torch_dtype=torch.float16
        )
        device = "cuda" if torch.cuda.is_available() else "cpu"
        self.pipe = self.pipe.to(device)
        self.example = ["useless example prompt"] * 4  # warmup (bs=4)

    def forward(self, data: List[str]) -> List[memoryview]:
        logger.debug("generate images for %s", data)
        res = self.pipe(data)
        logger.debug("NSFW: %s", res[1])
        images = []
        for img in res[0]:
            dummy_file = BytesIO()
            img.save(dummy_file, format="JPEG")
            images.append(dummy_file.getbuffer())
        return images

Note

(a) In this example we return an image in the binary format, which JSON does not support (unless encoded with base64 that makes it longer). Hence, msgpack suits our need better. If we do not inherit MsgpackMixin, JSON will be used by default. In other words, the protocol of the service request/response can either be msgpack or JSON.

(b) Warm-up usually helps to allocate GPU memory in advance. If the warm-up example is specified, the service will only be ready after the example is forwarded through the handler. However, if no example is given, the first request's latency is expected to be longer. The example should be set as a single item or a tuple depending on what forward expects to receive. Moreover, in the case where you want to warm up with multiple different examples, you may set multi_examples (demo here).

(c) This example shows a single-stage service, where the StableDiffusion worker directly takes in client's prompt request and responds the image. Thus the forward can be considered as a complete service handler. However, we can also design a multi-stage service with workers doing different jobs (e.g., downloading images, forward model, post-processing) in a pipeline. In this case, the whole pipeline is considered as the service handler, with the first worker taking in the request and the last worker sending out the response. The data flow between workers is done by inter-process communication.

(d) Since dynamic batching is enabled in this example, the forward method will wishfully receive a list of string, e.g., ['a cute cat playing with a red ball', 'a man sitting in front of a computer', ...], aggregated from different clients for batch inference, improving the system throughput.

Finally, we append the worker to the server to construct a single-stage workflow (multiple stages can be pipelined to further boost the throughput, see this example), and specify the number of processes we want it to run in parallel (num=1), and the maximum batch size (max_batch_size=4, the maximum number of requests dynamic batching will accumulate before timeout; timeout is defined with the flag --wait in milliseconds, meaning the longest time Mosec waits until sending the batch to the Worker).

if __name__ == "__main__":
    server = Server()
    # 1) `num` specify the number of processes that will be spawned to run in parallel.
    # 2) By configuring the `max_batch_size` with the value > 1, the input data in your
    # `forward` function will be a list (batch); otherwise, it's a single item.
    server.append_worker(StableDiffusion, num=1, max_batch_size=4, max_wait_time=10)
    server.run()

Run the server

The above snippets are merged in our example file. You may directly run at the project root level. We first have a look at the command line arguments (explanations here):

python examples/stable_diffusion/server.py --help

Then let's start the server with debug logs:

python examples/stable_diffusion/server.py --debug

And in another terminal, test it:

python examples/stable_diffusion/client.py --prompt "a cute cat playing with a red ball" --output cat.jpg --port 8000

You will get an image named "cat.jpg" in the current directory.

You can check the metrics:

curl http://127.0.0.1:8000/metrics

That's it! You have just hosted your stable-diffusion model as a service! 😉

Examples

More ready-to-use examples can be found in the Example section. It includes:

Configuration

  • Dynamic batching
    • max_batch_size is configured when you append_worker (make sure inference with the max value won't cause the out-of-memory in GPU).
    • --wait (default=10ms) is configured through CLI arguments (this usually should <= one batch inference duration).
    • If enabled, it will collect a batch either when it reaches the max_batch_size or the wait time.
  • Check the arguments doc.

Deployment

  • This may require some shared memory, remember to set the --shm-size flag if you are using docker.
  • This service doesn't require Gunicorn or NGINX, but you can certainly use the ingress controller. BTW, it should be the PID 1 process in the container since it controls multiple processes.
  • Remember to collect the metrics.
    • mosec_service_batch_size_bucket shows the batch size distribution.
    • mosec_service_batch_duration_second_bucket shows the duration of dynamic batching for each connection in each stage (starts from receiving the first task).
    • mosec_service_process_duration_second_bucket shows the duration of processing for each connection in each stage (including the IPC time but excluding the mosec_service_batch_duration_second_bucket).
    • mosec_service_remaining_task shows the number of currently processing tasks.
    • mosec_service_throughput shows the service throughput.
  • Stop the service with SIGINT or SIGTERM since it has the graceful shutdown logic.

Adopters

Here are some of the companies and individual users that are using Mosec:

  • MOSS: An open sourced conversational language model like ChatGPT.
  • TensorChord: A platform for building and deploying AI models.

Contributing

We welcome any kind of contribution. Please give us feedback by raising issues or discussing on Discord. You could also directly contribute your code and pull request!

To start develop, you can use envd to create an isolated and clean Python & Rust environment. Check the envd-docs or build.envd for more information.

Qualitative Comparison*

Batcher Pipeline Parallel I/O Format(1) Framework(2) Backend Activity
TF Serving Limited(a) Heavily TF C++
Triton Limited Multiple C++
MMS Limited Heavily MX Java
BentoML Limited(b) Multiple Python
Streamer Customizable Agnostic Python
Flask(3) Customizable Agnostic Python
Mosec Customizable Agnostic Rust

*As accessed on 08 Oct 2021. By no means is this comparison showing that other frameworks are inferior, but rather it is used to illustrate the trade-off. The information is not guaranteed to be absolutely accurate. Please let us know if you find anything that may be incorrect.

(1): Data format of the service's request and response. "Limited" in the sense that the framework has pre-defined requirements on the format. (2): Supported machine learning frameworks. "Heavily" means the serving framework is designed towards a specific ML framework. Thus it is hard, if not impossible, to adapt to others. "Multiple" means the serving framework provides adaptation to several existing ML frameworks. "Agnostic" means the serving framework does not necessarily care about the ML framework. Hence it supports all ML frameworks (in Python). (3): Flask is a representative of general purpose web frameworks to host ML models.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mosec-0.6.1.tar.gz (62.6 kB view details)

Uploaded Source

Built Distributions

mosec-0.6.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

mosec-0.6.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

mosec-0.6.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

mosec-0.6.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

mosec-0.6.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

mosec-0.6.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

mosec-0.6.1-cp311-cp311-musllinux_1_1_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

mosec-0.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

mosec-0.6.1-cp311-cp311-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

mosec-0.6.1-cp310-cp310-musllinux_1_1_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

mosec-0.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

mosec-0.6.1-cp310-cp310-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

mosec-0.6.1-cp39-cp39-musllinux_1_1_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

mosec-0.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

mosec-0.6.1-cp39-cp39-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

mosec-0.6.1-cp38-cp38-musllinux_1_1_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

mosec-0.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

mosec-0.6.1-cp38-cp38-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

mosec-0.6.1-cp37-cp37m-musllinux_1_1_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

mosec-0.6.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

mosec-0.6.1-cp37-cp37m-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

Details for the file mosec-0.6.1.tar.gz.

File metadata

  • Download URL: mosec-0.6.1.tar.gz
  • Upload date:
  • Size: 62.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for mosec-0.6.1.tar.gz
Algorithm Hash digest
SHA256 cc6398ab38aa6a3fcb9b07be9a296e977c0b720547aafe312df8fad35b4771b0
MD5 bbff9fc0320670dd07d7274dafd9d0ab
BLAKE2b-256 9349902ba26ec2cc54355d1ef51bd415842a33adac16e6375a7e91cb6c458e08

See more details on using hashes here.

File details

Details for the file mosec-0.6.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mosec-0.6.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8651a4868a75b418ddf76d3c0e414c4a827d9fb43365f47ca7d1ca9b5cc9ab88
MD5 fca7b15b0dde431620bd89872f4b98bf
BLAKE2b-256 100e1b414b0b96517c351b61e1d1a4724638209a81500fef2b70b593a8986cd1

See more details on using hashes here.

File details

Details for the file mosec-0.6.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mosec-0.6.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e4d544eed8b6cda70aba16bd18575c90fc95763306a010424f35d673599d89a1
MD5 f1f20a6a8ce4b7bf88f3ca84da4a1a96
BLAKE2b-256 9587c841ebb14349d204da8755551467b4e6f60d47a3372578b65d5adf99a957

See more details on using hashes here.

File details

Details for the file mosec-0.6.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mosec-0.6.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a94c8db9f39229c467306f606d7dfe0ad9cf2fc8c664fce648698dabc41ada31
MD5 e3b22539ccb9d6ed94ea5245eefb4552
BLAKE2b-256 aabb47fbf6afbcfedcb0aa57315a0e99c6122d213719e6fc571e79077dfdd886

See more details on using hashes here.

File details

Details for the file mosec-0.6.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mosec-0.6.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6c6fa47ffe1aadc4934f2a32e65bea0fa417663327ef0a005d7c08c1a9eead93
MD5 950df033a5982933fa5a8679e3c9df46
BLAKE2b-256 0e5e8d87ac7f952a671f3ffc062584a154ac385cb684b73610753f352bab3334

See more details on using hashes here.

File details

Details for the file mosec-0.6.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mosec-0.6.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dac18ef6813888f3397ba9b7cb7307c7ec5f31f1becffcea546c9b246743a530
MD5 9ac58faec0b618d39bd9c2846016e1ec
BLAKE2b-256 232fc148de7b92c8464650582178122ac1b5354837fb5ee819a2ccc405e6277e

See more details on using hashes here.

File details

Details for the file mosec-0.6.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mosec-0.6.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 830a81e405596dd8ce01ccf4bfefbe781b088e8a321d41b43ba34c00a0ddd9ef
MD5 df7dc301c8e0864d5fa572f504975d28
BLAKE2b-256 1fdadc92f7ab47d70c26b5f4adba8813e62b7e28b7223bda3e5b1ea8a6212e85

See more details on using hashes here.

File details

Details for the file mosec-0.6.1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for mosec-0.6.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0145996fde71ff9a61aa0447f9dbb1580fc29661cb0fcfaf356e94e1ea275969
MD5 e889c117b3b228228865c03d4a7d907f
BLAKE2b-256 27e5505733feeb8e9bc3925851244cb02e6b2bfeb3f433e449248416ef6261df

See more details on using hashes here.

File details

Details for the file mosec-0.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mosec-0.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c7c7b5e6ec6287fa25c7a372a01b49c489337ec3f851b9d1c1afdaa9c477648
MD5 a3a8f0550937919c7c169550bc855387
BLAKE2b-256 02905877a44170f1176aaee07910a4525741f565b0b01f17994f332c8652ef52

See more details on using hashes here.

File details

Details for the file mosec-0.6.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mosec-0.6.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 59edb491d1f15151e113380200f390334fe850923f19a0e1f791787de7a7bae1
MD5 929945a037d8fa305a2cd101d84c19cc
BLAKE2b-256 887349ce64e5a641858a13859a60de5eb8423a053fbc4fd6eef8c833bfa9dc7b

See more details on using hashes here.

File details

Details for the file mosec-0.6.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for mosec-0.6.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7318685d0fdbf02eb180668f93ae7621da0a3279ab79b7cc00a2b851cba8646f
MD5 729319a24228b55cc832a4f0a469655a
BLAKE2b-256 65ac7e6e038d69f46a2f2cffd2dceb207ea88bd4d02fdf7d6cbaa75a3a45c940

See more details on using hashes here.

File details

Details for the file mosec-0.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mosec-0.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f85723205cc9442199eddc6d59336f0489102530b1780fa31b167b6f8fd3a35e
MD5 38d03319417d76672b5eb9d065b8e3e9
BLAKE2b-256 34a291f0fb1bac81d1139ef8e60f7de47babc3218afbfaad785baefa472f9fa6

See more details on using hashes here.

File details

Details for the file mosec-0.6.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mosec-0.6.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 688f979d8f629c5c14bb3c3b71868e97d1cefb49e9857926946fcb9af3b8a4ea
MD5 97ba8436c3086fa95a664b1f5c6a0517
BLAKE2b-256 c0e9c731fe24767ed6b595bf619b2f781b41489e418ee3db936013177e7a2dfa

See more details on using hashes here.

File details

Details for the file mosec-0.6.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for mosec-0.6.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e4f6e444e7f1cdabd27a6c6f1b6b6534983697fd4cabe77ebf321d5d8db5d5c0
MD5 36eb7df51fda49b784fe5bd06d3ff97b
BLAKE2b-256 e4dc31633e78b09fce8af0ff1904b7afd4d6af31ec7e65eca76e90712a82c435

See more details on using hashes here.

File details

Details for the file mosec-0.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mosec-0.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 542b361b034ea01def23c9dcaecf7c71395df07b4bc5b8fe1686b9f7882d07ba
MD5 55558baef50ba44f9943af08dacbc1dc
BLAKE2b-256 a00040bfd2f2de0d55b57347265c0ad878dfd6b0bdbc4d4fd3adbcc1bbc1013c

See more details on using hashes here.

File details

Details for the file mosec-0.6.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mosec-0.6.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9551b9f3fc0df43c325759816e585622ea2d352be2a80735cf4bd69ba8e84a01
MD5 70bcef5786d354c0fb65833e9978d1bd
BLAKE2b-256 64964283dc9cef291f00f7e93e648b39ea483d09f0c8010a397ce28959c575dc

See more details on using hashes here.

File details

Details for the file mosec-0.6.1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for mosec-0.6.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ad3ba35384e346cc02d08ab05ef4ba6f866d92f319f9d1461cd0137a2059eef8
MD5 dfd0bb61dd913e35dbe7f9a44dbc2f1c
BLAKE2b-256 48f942bdcc09b3a8e3784f5a214d36aa77d94575ceef0d94ea3058fa3c0e5e3f

See more details on using hashes here.

File details

Details for the file mosec-0.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mosec-0.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ea0c2482b074b4349331e75781eebbf7be0127e9cb7f05ba27d55de5c9e8f22
MD5 7f20ddddb5359f92b7c3f6adba7ef850
BLAKE2b-256 6079a5d23ec9fd284bcc5a96359fb81475fb81df314ad1ff09a631778e26ae32

See more details on using hashes here.

File details

Details for the file mosec-0.6.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mosec-0.6.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e5ef188f24f4915dffa5407590f25ea1f906f857f2847f848dc71cd3a41c5a5a
MD5 03c7f56bf4f5ad6232ca480cd77a2d32
BLAKE2b-256 79aa024148942a6fb5103629d4bb987d6b2a7231ff0e1ec01a409783075b67a2

See more details on using hashes here.

File details

Details for the file mosec-0.6.1-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for mosec-0.6.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d449b53b17c7a2ae937705561127e58e95c7a1e084f2368c2e4d1f32f4c604ad
MD5 0af7b8952852e9a52fb2c2751a4f7734
BLAKE2b-256 8cf43dd7ecd3333c3850e16036668c0e6ef7d564f4e8b7628cd13bb19df62c47

See more details on using hashes here.

File details

Details for the file mosec-0.6.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mosec-0.6.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cc8ed6c6ee1325db1c62364718ed053e5c7581b1818a0ac7663a1d0edf2c48d2
MD5 36810d299e4836b163c5bb3105dc4038
BLAKE2b-256 5a3bb74bdec005db4a1e51fe2ca4f9606df45164a532d6cc6d02a591504b0363

See more details on using hashes here.

File details

Details for the file mosec-0.6.1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mosec-0.6.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 80153aefa5579b0bd810b7a3ce6f5d402f5bdc59372920aa3b3e8736b52fe516
MD5 1f428834f756bcf8b958639b4bfbe97f
BLAKE2b-256 79265bdb6ba74624ce59aecd15411fe13613922cdfebabc9f15f2ad2fc6037e9

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page