Skip to main content

cymongoose

cymongoose is a zero-dependency Python package that includes a Cython wrapper for Mongoose, a lightweight embedded networking library written in C. It supports HTTP servers, WebSockets, TCP/UDP sockets, and more through a clean, event-driven API.

Documentation | API Reference | Examples

Features

  • HTTP/HTTPS, WebSocket/WSS, MQTT/MQTTS: full protocol support with TLS

  • TCP/UDP, DNS, SNTP: raw sockets and network utilities

  • JSON-RPC: built-in RPC dispatcher with Python handler callbacks

  • Timers: periodic callbacks with thread-safe cancellation

  • Event-driven: non-blocking I/O with a simple event loop

  • GIL-free: 24 methods release the GIL for true parallel execution

  • High performance: 60k+ req/sec (6-37x faster than pure Python frameworks)

  • WSGI support: serve Flask, Django, Bottle apps on the C event loop

  • ASGI support: serve FastAPI, Starlette, Django async apps with WebSocket, streaming, and lifespan

  • Asyncio support: AsyncManager for asyncio integration

  • Utilities: URL parsing, glob-style pattern matching, hashing (MD5/SHA1/SHA256/HMAC), base64, CRC32

  • Type hints: full .pyi stubs and py.typed marker

Installation

pip install cymongoose

From source:

git clone https://github.com/shakfu/cymongoose
cd cymongoose
make

Requires Python 3.10+, CMake 3.15+, Cython 3.0+, and a C compiler.

Quick Start

from cymongoose import Manager, MG_EV_HTTP_MSG

def handler(conn, event, data):
    if event == MG_EV_HTTP_MSG:
        conn.reply(200, "Hello, World!")

mgr = Manager(handler)
mgr.listen("http://127.0.0.1:8000")
mgr.run()

More examples:

# Serve static files
def handler(conn, event, data):
    if event == MG_EV_HTTP_MSG:
        conn.serve_dir(data, root_dir="./public")

# WebSocket echo
from cymongoose import MG_EV_WS_MSG

def handler(conn, event, data):
    if event == MG_EV_HTTP_MSG:
        conn.ws_upgrade(data)
    elif event == MG_EV_WS_MSG:
        conn.ws_send(data.text)

# Per-listener handlers on different ports
mgr = Manager()
mgr.listen("http://127.0.0.1:8080", handler=api_handler)
mgr.listen("http://127.0.0.1:8090", handler=web_handler)
mgr.run()

WSGI Framework Support

Run existing Flask/Django/Bottle apps on cymongoose:

from cymongoose.wsgi import serve
from myapp import app  # any WSGI application

serve(app, "http://127.0.0.1:8000", workers=8)

ASGI Framework Support

Run FastAPI/Starlette/Django async apps on cymongoose:

from cymongoose.asgi import serve
from myapp import app  # any ASGI application

serve(app, "http://127.0.0.1:8000")

See the quickstart guide and examples for more.

Testing

make test           # Run all tests (560 tests)
make test-asan      # Run with AddressSanitizer (memory safety)
make qa             # Run lint + type check + format

Project Status

The feature set is considered complete. The vendored Mongoose C library (currently 7.21) is tracked and integrated as needed. From this point on, the project prioritizes correctness, robustness, and stability. We welcome contributions to this end.

Development

make build          # Rebuild the Cython extension
make clean          # Remove build artifacts
make docs-serve     # Serve documentation locally
make help           # Show all available targets

License

Licensed under GPL-2.0-or-later, matching the Mongoose C library license. See LICENSE for details.

For proprietary use, a commercial Mongoose license from Cesanta is required.

Links

Download files

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

Source Distribution

cymongoose-0.2.5.tar.gz (754.4 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

cymongoose-0.2.5-cp314-cp314-win_amd64.whl (299.6 kB view details)

Uploaded CPython 3.14Windows x86-64

cymongoose-0.2.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (381.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

cymongoose-0.2.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (368.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

cymongoose-0.2.5-cp314-cp314-macosx_11_0_arm64.whl (316.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

cymongoose-0.2.5-cp314-cp314-macosx_10_15_x86_64.whl (358.6 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

cymongoose-0.2.5-cp313-cp313-win_amd64.whl (292.0 kB view details)

Uploaded CPython 3.13Windows x86-64

cymongoose-0.2.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (380.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

cymongoose-0.2.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (365.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

cymongoose-0.2.5-cp313-cp313-macosx_11_0_arm64.whl (314.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cymongoose-0.2.5-cp313-cp313-macosx_10_13_x86_64.whl (358.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

cymongoose-0.2.5-cp312-cp312-win_amd64.whl (292.0 kB view details)

Uploaded CPython 3.12Windows x86-64

cymongoose-0.2.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (381.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

cymongoose-0.2.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (365.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

cymongoose-0.2.5-cp312-cp312-macosx_11_0_arm64.whl (314.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cymongoose-0.2.5-cp312-cp312-macosx_10_13_x86_64.whl (357.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

cymongoose-0.2.5-cp311-cp311-win_amd64.whl (292.6 kB view details)

Uploaded CPython 3.11Windows x86-64

cymongoose-0.2.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (387.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

cymongoose-0.2.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (372.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

cymongoose-0.2.5-cp311-cp311-macosx_11_0_arm64.whl (319.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cymongoose-0.2.5-cp311-cp311-macosx_10_9_x86_64.whl (356.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

cymongoose-0.2.5-cp310-cp310-win_amd64.whl (291.6 kB view details)

Uploaded CPython 3.10Windows x86-64

cymongoose-0.2.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (387.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

cymongoose-0.2.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (372.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

cymongoose-0.2.5-cp310-cp310-macosx_11_0_arm64.whl (319.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

cymongoose-0.2.5-cp310-cp310-macosx_10_9_x86_64.whl (356.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file cymongoose-0.2.5.tar.gz.

File metadata

  • Download URL: cymongoose-0.2.5.tar.gz
  • Upload date:
  • Size: 754.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.2

File hashes

Hashes for cymongoose-0.2.5.tar.gz
Algorithm Hash digest
SHA256 8c0ec19752d493702c566735a28918f1b81a756197f78e4931c566dbad849a8f
MD5 dbd980dd07bc8865360dd5ab2e92cf11
BLAKE2b-256 db5e0fcd3b3602976210cf450e4c2c2b2b15945a5697d1663aff99df95592d9a

See more details on using hashes here.

File details

Details for the file cymongoose-0.2.5-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: cymongoose-0.2.5-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 299.6 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.2

File hashes

Hashes for cymongoose-0.2.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 27a213041b9ddad8d9fa50a6ec627ed40a794c8380ee685a105cd4481e50d569
MD5 c09844a204dcc24e56f4c31d8a10bcce
BLAKE2b-256 a8dcd63639284af0b38367ba7784f122d0b1c2abfa8819cdcfefc381dc037daf

See more details on using hashes here.

File details

Details for the file cymongoose-0.2.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cymongoose-0.2.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f240d3c6a62b93232b91c2a23b207e183992d2080cbd82403bdced3341b84e86
MD5 e756cacc1dec06966e098dbd676464a3
BLAKE2b-256 be011f8730814fbb061736f402d5a759705d39b497d903b72333ab11bfeab701

See more details on using hashes here.

File details

Details for the file cymongoose-0.2.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cymongoose-0.2.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bff6946cd1a60d61d2db8285726984f876c55b3d1052d89cd021905fd56e8ab6
MD5 178f36b6831a8fdb6824f9c90220fbd3
BLAKE2b-256 b2eedce29d64bb44237439119e688382c34453fd2dad958902b783579dcd3751

See more details on using hashes here.

File details

Details for the file cymongoose-0.2.5-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cymongoose-0.2.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07fd477d7ab19d00eadbc2764cd55cac65859e5f4838c17c74e5e13508da223f
MD5 dbf81cd9cb48081d9cfed8746ce17b28
BLAKE2b-256 86229eaba19352811f209e2c6d67e036da0dc4233371e1559e023a0dc5938fdd

See more details on using hashes here.

File details

Details for the file cymongoose-0.2.5-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for cymongoose-0.2.5-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8158d4a80f4c7a4f599b7ba3ea87a8e7c890f86829873d63f3a76a7a4539095a
MD5 bba7794d808a3ada66fabe6360dca99e
BLAKE2b-256 9c7287222b91078273b90dcd4bafd94161c35ce72c13754f1a464ebdce851bce

See more details on using hashes here.

File details

Details for the file cymongoose-0.2.5-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: cymongoose-0.2.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 292.0 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.2

File hashes

Hashes for cymongoose-0.2.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d0f106f83d6303331d59f889873ddf76bcd0bd0ad78f60e8edab9f5eb3bb2298
MD5 1144ad37234beb78f002c0b28454ee35
BLAKE2b-256 196a9d11967bc70ff8ffec26d6e85905c699624526232a5272759b44651ccaca

See more details on using hashes here.

File details

Details for the file cymongoose-0.2.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cymongoose-0.2.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e64142fc30890ad006ca6f95e027f5cbd5acdcd6330160f88139077c7778baea
MD5 a3a47245f9edb75b2a0b06f98f6d2dcf
BLAKE2b-256 63f2d13261d1456126ae9a41d2a414655c0ed93eaff26c7c31ecaabe405ebefe

See more details on using hashes here.

File details

Details for the file cymongoose-0.2.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cymongoose-0.2.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ba2fe3c142f23a6eb19c994cf612725c71f34652ab8ec29b69045b0819c93125
MD5 57717366093dffa71752999aa2f69e1d
BLAKE2b-256 5794836a176b2b08fe7f0102320407a21a4d0cfb9a2ab20f7fedcfca0e34df86

See more details on using hashes here.

File details

Details for the file cymongoose-0.2.5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cymongoose-0.2.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00fa3fcfb0ce9ab0705539809098e983e1afc39c8eb8fc7d3e6a30bb91fb174c
MD5 445ebd25b6f986bfcf1e1585146804d1
BLAKE2b-256 6b1736cce1ead27c9050a8302b78d66bd08f49f3dc2289ad70454da138c38bcc

See more details on using hashes here.

File details

Details for the file cymongoose-0.2.5-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for cymongoose-0.2.5-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2d744a8da32d3e6c2c636c52030ba3d4f3054a34ca7d72dc259fae88f7e0d7c0
MD5 248a854b48152aa3346120ba0c557e2f
BLAKE2b-256 b498e970c083cc2ccb0c9e8461d8496afaf1c4f394b5e7c3c23473d78c5aa178

See more details on using hashes here.

File details

Details for the file cymongoose-0.2.5-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: cymongoose-0.2.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 292.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.2

File hashes

Hashes for cymongoose-0.2.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 86795c3716530c153a9097be31cc9ab23c35e5df22c83d288dcb02b05d97f680
MD5 3d73e889d30838b6542662731a3fd534
BLAKE2b-256 279ade70e035dca54841d249da94d0e69bd07ed4726ead95f66122249227dce3

See more details on using hashes here.

File details

Details for the file cymongoose-0.2.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cymongoose-0.2.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b1b3926529c4caf1567075ae7bd07ae14ab052dd6eaeff52e41b2341f4646a8b
MD5 5d5f298a45e2110860d2a15884231498
BLAKE2b-256 81393ab6bfbb8102386d7c51e8bcf0f0b2e6b54bbe33d6858843e902dd25624a

See more details on using hashes here.

File details

Details for the file cymongoose-0.2.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cymongoose-0.2.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a115e1b1df26cb7f05c853663a6e98b99e50725a13e8fe1fb4cfe2ad24d7b154
MD5 a16b6c1c46af3d8682de20237b0a3107
BLAKE2b-256 f92b8aadfaab79cc264996f8e4e30a6a35a1d6763c4de78ebf1ddfa4b2f0c64e

See more details on using hashes here.

File details

Details for the file cymongoose-0.2.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cymongoose-0.2.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2581d5470b975d0cfd68b4725affa136e88bef14b893d1bf51da131649f886a
MD5 6de25d36d60e8bbf12a93a43e8b5b48e
BLAKE2b-256 d74952dae0a1ce7ad7b3d059d91812e58f85b0508d87b1155402e53ca3e30fe0

See more details on using hashes here.

File details

Details for the file cymongoose-0.2.5-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for cymongoose-0.2.5-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fececd2c20b8eb8291915b1a17c52c9d3d016e0fca4df64953e11a61e08f51b5
MD5 ae7517875d2c963d0bf520afd2ff4729
BLAKE2b-256 3ae0ff2163fa7f02c7151d5c74a927b4cf243c2b313bc6e7fd5ef2208323103a

See more details on using hashes here.

File details

Details for the file cymongoose-0.2.5-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: cymongoose-0.2.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 292.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.2

File hashes

Hashes for cymongoose-0.2.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7e08af824e030d829f3b5d5b32f76ed5aec695075ec7cb58a45f66aea4c767c9
MD5 29c566dad41248807a804e372099c0e1
BLAKE2b-256 b333aff8731a1895bb57d1d4b9b572a92f31756e9f8a79b47c0ae452e0d4e7c2

See more details on using hashes here.

File details

Details for the file cymongoose-0.2.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cymongoose-0.2.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7da2553e6855beadb8093a4595d1dea56d57cb9b759e52659edba79165682605
MD5 4cffa38d2b1148c4cab8b7fbd756cc59
BLAKE2b-256 92c5a7018727adafbc151729a4eb3f8f04454056806cd606f49632122b4a6d5d

See more details on using hashes here.

File details

Details for the file cymongoose-0.2.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cymongoose-0.2.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e7618fe523a51968eeb7e45e8ffbabe5ec45530a69089a995a77d38c1f736949
MD5 b73d4d2afd8b2e5777ee21a0386713d6
BLAKE2b-256 ed35612b170138a80da309c422ca2850bd657c261defb24add9cb75235a028e7

See more details on using hashes here.

File details

Details for the file cymongoose-0.2.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cymongoose-0.2.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 29898a5893de596d5ea8db64df16803ca837a1cce2f646f1a5158d5fb29c4ad8
MD5 0074201857975025fcd4696b614ac01e
BLAKE2b-256 b09511cc701150b2f17374cc58c68686f8280cb6babfca63853e1bb9440fafc4

See more details on using hashes here.

File details

Details for the file cymongoose-0.2.5-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cymongoose-0.2.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5d659f49a9a71cf8f6cd053b916d12e30510d8f15882e864e33ee8174b732e59
MD5 16c43413a0a6bb3c9ae4342287d6fbb8
BLAKE2b-256 e94388e8c109f3c74b5e9be5c928d449728989cb7f33e2c5b3c41ad932b9d3a8

See more details on using hashes here.

File details

Details for the file cymongoose-0.2.5-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: cymongoose-0.2.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 291.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.2

File hashes

Hashes for cymongoose-0.2.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 488dad98d7d039bba5e551e49c8ebf925462b35080ac20e071d0b0a0c99f6d29
MD5 f1331ed6ac132e5efa02572098d1f236
BLAKE2b-256 325059e234e8117ae14f11ace14826ece814c7b3e83546c91f946aa04cbdc9a8

See more details on using hashes here.

File details

Details for the file cymongoose-0.2.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cymongoose-0.2.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c054c14623b9662b54d25eca2872906d6ece64065cd814476bcda07fcb291cf2
MD5 25f7a54518b629886b0628b0ddddace7
BLAKE2b-256 0f2f73cb0f1603087f71ed2c17e7c16cf09f521bd8f395386cde70b820019d97

See more details on using hashes here.

File details

Details for the file cymongoose-0.2.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cymongoose-0.2.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4b319fc8d5b4bcfaeda7a24498f3ed01d94cc6a1056cf9e152458c69702fb688
MD5 25615dffaaf36520ab2c79a766ca6256
BLAKE2b-256 56ae56e7b59f2466f631d96c99312d9ddec3cb9db897ecc2b390449a5011c3df

See more details on using hashes here.

File details

Details for the file cymongoose-0.2.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cymongoose-0.2.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fa74ec2e8bb4fbfd62f067b279c19b618a855ee5158c379878a8f2a5791a2fae
MD5 658a082dd89bfcf86729292ddbf65f8d
BLAKE2b-256 1d31e18e0915b89c2a288722d08e7e009ed6e6f09389971386464795321e3bab

See more details on using hashes here.

File details

Details for the file cymongoose-0.2.5-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cymongoose-0.2.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 44ba8703f87444c3ec8e8bdf93cd8c1b7332207f15ba04a23b4f4e3b91a20c06
MD5 b045122d59b683c20509a3a8de52c0ea
BLAKE2b-256 b86312bc792ace849864bb069a5765218672fd750aa96d2ff9eabde7632f04be

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.2.5 This release

26 files

0.2.3

26 files

0.2.2

26 files

0.2.1

26 files

0.2.0

26 files

0.1.14

26 files

0.1.13

26 files

0.1.12

26 files

0.1.11

55 files

0.1.10

21 files

0.1.9

21 files

0.1.8

21 files

0.1.7

26 files

0.1.6

63 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page