logxide


Namelogxide JSON
Version 0.1.0 PyPI version JSON
download
home_pageNone
SummaryHigh-performance, Rust-powered drop-in replacement for Python's logging module
upload_time2025-07-16 01:05:14
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseMIT
keywords logging rust async performance drop-in-replacement high-performance thread-safe structured-logging
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # LogXide

**High-Performance Rust-Powered Logging for Python**

LogXide is a drop-in replacement for Python's standard logging module, delivering exceptional performance through its async Rust implementation.

## Key Features

- **High Performance**: Rust-powered async logging with exceptional throughput
- **Drop-in Replacement**: Full compatibility with Python's logging module API
- **Thread-Safe**: Complete support for multi-threaded applications
- **Async Processing**: Non-blocking log message processing with Tokio runtime
- **Rich Formatting**: All Python logging format specifiers with advanced features
- **Level Filtering**: Hierarchical logger levels with inheritance

## Quick Start

```python
import logxide
logxide.install()  # Make logxide the default logging module

# Now use logging as normal
import logging
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)
logger.info("Hello from LogXide!")
```

Or use directly:

```python
from logxide import logging

logging.basicConfig(
    level=logging.INFO,
    format='%(asctime)s - %(name)s - %(levelname)s - %(message)s'
)

logger = logging.getLogger('myapp')
logger.info('Hello from LogXide!')
```

## Installation

```bash
pip install logxide
```

## Documentation

- **[Usage Guide](docs/usage.md)** - Complete usage examples and API guide
- **[Integration Guide](docs/integration.md)** - Flask, Django, and FastAPI integration
- **[Performance Benchmarks](docs/benchmarks.md)** - Comprehensive performance analysis
- **[Architecture](docs/architecture.md)** - Technical architecture and design
- **[Installation](docs/installation.md)** - Installation and setup guide
- **[Development](docs/development.md)** - Contributing and development guide
- **[API Reference](docs/reference.md)** - Complete API documentation

## Performance

LogXide delivers exceptional performance through its Rust-powered async architecture. See our [comprehensive benchmarks](docs/benchmarks.md) for detailed performance analysis.

**Key highlights:**
- **10-50x faster** than other libraries in I/O-heavy scenarios
- **Async architecture** prevents blocking on log operations
- **Concurrent handler execution** for maximum throughput

## Compatibility

- **Python**: 3.12+ (3.13+ recommended)
- **Platforms**: macOS, Linux, Windows
- **API**: 100% compatible with Python's `logging` module
- **Dependencies**: None (Rust compiled into native extension)

## Contributing

We welcome contributions! See our [development guide](docs/development.md) for details.

```bash
# Quick development setup
git clone https://github.com/Indosaram/logxide
cd logxide
pip install maturin
maturin develop
pytest tests/
```

## License

[Add your license information here]

---

**LogXide delivers the performance you need without sacrificing the Python logging API you know.**

*Built with Rust for high-performance Python applications.*

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "logxide",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": "Indosaram <freedomzero91@gmail.com>",
    "keywords": "logging, rust, async, performance, drop-in-replacement, high-performance, thread-safe, structured-logging",
    "author": null,
    "author_email": "Indosaram <freedomzero91@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/b5/ae/b96dd49f7207262918d0b79bb11d93e3b78effb980acc5435b49101e1cac/logxide-0.1.0.tar.gz",
    "platform": null,
    "description": "# LogXide\n\n**High-Performance Rust-Powered Logging for Python**\n\nLogXide is a drop-in replacement for Python's standard logging module, delivering exceptional performance through its async Rust implementation.\n\n## Key Features\n\n- **High Performance**: Rust-powered async logging with exceptional throughput\n- **Drop-in Replacement**: Full compatibility with Python's logging module API\n- **Thread-Safe**: Complete support for multi-threaded applications\n- **Async Processing**: Non-blocking log message processing with Tokio runtime\n- **Rich Formatting**: All Python logging format specifiers with advanced features\n- **Level Filtering**: Hierarchical logger levels with inheritance\n\n## Quick Start\n\n```python\nimport logxide\nlogxide.install()  # Make logxide the default logging module\n\n# Now use logging as normal\nimport logging\nlogging.basicConfig(level=logging.INFO)\nlogger = logging.getLogger(__name__)\nlogger.info(\"Hello from LogXide!\")\n```\n\nOr use directly:\n\n```python\nfrom logxide import logging\n\nlogging.basicConfig(\n    level=logging.INFO,\n    format='%(asctime)s - %(name)s - %(levelname)s - %(message)s'\n)\n\nlogger = logging.getLogger('myapp')\nlogger.info('Hello from LogXide!')\n```\n\n## Installation\n\n```bash\npip install logxide\n```\n\n## Documentation\n\n- **[Usage Guide](docs/usage.md)** - Complete usage examples and API guide\n- **[Integration Guide](docs/integration.md)** - Flask, Django, and FastAPI integration\n- **[Performance Benchmarks](docs/benchmarks.md)** - Comprehensive performance analysis\n- **[Architecture](docs/architecture.md)** - Technical architecture and design\n- **[Installation](docs/installation.md)** - Installation and setup guide\n- **[Development](docs/development.md)** - Contributing and development guide\n- **[API Reference](docs/reference.md)** - Complete API documentation\n\n## Performance\n\nLogXide delivers exceptional performance through its Rust-powered async architecture. See our [comprehensive benchmarks](docs/benchmarks.md) for detailed performance analysis.\n\n**Key highlights:**\n- **10-50x faster** than other libraries in I/O-heavy scenarios\n- **Async architecture** prevents blocking on log operations\n- **Concurrent handler execution** for maximum throughput\n\n## Compatibility\n\n- **Python**: 3.12+ (3.13+ recommended)\n- **Platforms**: macOS, Linux, Windows\n- **API**: 100% compatible with Python's `logging` module\n- **Dependencies**: None (Rust compiled into native extension)\n\n## Contributing\n\nWe welcome contributions! See our [development guide](docs/development.md) for details.\n\n```bash\n# Quick development setup\ngit clone https://github.com/Indosaram/logxide\ncd logxide\npip install maturin\nmaturin develop\npytest tests/\n```\n\n## License\n\n[Add your license information here]\n\n---\n\n**LogXide delivers the performance you need without sacrificing the Python logging API you know.**\n\n*Built with Rust for high-performance Python applications.*\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "High-performance, Rust-powered drop-in replacement for Python's logging module",
    "version": "0.1.0",
    "project_urls": {
        "Bug Tracker": "https://github.com/Indosaram/logxide/issues",
        "Changelog": "https://github.com/Indosaram/logxide/blob/main/CHANGELOG.md",
        "Documentation": "https://Indosaram.readthedocs.io/logxide",
        "Homepage": "https://github.com/Indosaram/logxide",
        "Repository": "https://github.com/Indosaram/logxide",
        "Source Code": "https://github.com/Indosaram/logxide"
    },
    "split_keywords": [
        "logging",
        " rust",
        " async",
        " performance",
        " drop-in-replacement",
        " high-performance",
        " thread-safe",
        " structured-logging"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "986a9e0a885e78bbd781aecf9b5a4faa56702792cb40738380845eb0d7869a55",
                "md5": "f3c273bad9217c89a3571ebfc6392c88",
                "sha256": "b9ef665265818c19293833d11f56438af5746d24daa87454723f5081acfd4526"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f3c273bad9217c89a3571ebfc6392c88",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 576755,
            "upload_time": "2025-07-16T01:03:46",
            "upload_time_iso_8601": "2025-07-16T01:03:46.798384Z",
            "url": "https://files.pythonhosted.org/packages/98/6a/9e0a885e78bbd781aecf9b5a4faa56702792cb40738380845eb0d7869a55/logxide-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6ff18ff4166eb0422fd91e1ca3684d94390c6ea136546fcbdaa0f8dbc0eac980",
                "md5": "fb75b33c4f719b389ddd56783bff5a83",
                "sha256": "fbbcbeffd86a518f857220bb92f611e3a6bdecd0b86e5fb2a1803997fd6333e7"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "fb75b33c4f719b389ddd56783bff5a83",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 584775,
            "upload_time": "2025-07-16T01:04:02",
            "upload_time_iso_8601": "2025-07-16T01:04:02.945092Z",
            "url": "https://files.pythonhosted.org/packages/6f/f1/8ff4166eb0422fd91e1ca3684d94390c6ea136546fcbdaa0f8dbc0eac980/logxide-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "08d14ec28ad5abd9525494a1f14b78447d35bf64eb705f5415f08cce9d4975d8",
                "md5": "6ad9f51851b92bee975ad72dc6286c42",
                "sha256": "00df6dcce6c3ad84b141a800fb871cc207ec91bcfd98c12eedc0258dfc72221a"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "6ad9f51851b92bee975ad72dc6286c42",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 623758,
            "upload_time": "2025-07-16T01:04:44",
            "upload_time_iso_8601": "2025-07-16T01:04:44.550291Z",
            "url": "https://files.pythonhosted.org/packages/08/d1/4ec28ad5abd9525494a1f14b78447d35bf64eb705f5415f08cce9d4975d8/logxide-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "51b86b37609f40c17af3a86ae39992a9027268cce8585ccb6cadbef469bfe442",
                "md5": "edfe831010e17e6b65309880119a3a46",
                "sha256": "56f93cb2adcd419ff42278aa313205a9399e4441694220e26f661f4c68973e61"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "edfe831010e17e6b65309880119a3a46",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 738545,
            "upload_time": "2025-07-16T01:04:16",
            "upload_time_iso_8601": "2025-07-16T01:04:16.762586Z",
            "url": "https://files.pythonhosted.org/packages/51/b8/6b37609f40c17af3a86ae39992a9027268cce8585ccb6cadbef469bfe442/logxide-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3526e791f8f58ee1087156cc21bf318db5ffda73b86fa7b179e10ae15c0a62c1",
                "md5": "be52e8ac3af8071e88533467cbc8c6eb",
                "sha256": "074b136e83cfe8acb5b78d7e4075baa34a32834db6eb47c2c66585dca891f67e"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "be52e8ac3af8071e88533467cbc8c6eb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 608689,
            "upload_time": "2025-07-16T01:04:30",
            "upload_time_iso_8601": "2025-07-16T01:04:30.784066Z",
            "url": "https://files.pythonhosted.org/packages/35/26/e791f8f58ee1087156cc21bf318db5ffda73b86fa7b179e10ae15c0a62c1/logxide-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3e45d2d188b11776e23235a14b0601502acc6bd5e8f4433a456ea3854e41aca2",
                "md5": "49d7e2862c9c3d31062535c6703ed5fe",
                "sha256": "cab82516807c7e01dca25e0eccdb3f98c2369f4687fa264110ae4f67bf7d2329"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "49d7e2862c9c3d31062535c6703ed5fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 576631,
            "upload_time": "2025-07-16T01:04:55",
            "upload_time_iso_8601": "2025-07-16T01:04:55.213159Z",
            "url": "https://files.pythonhosted.org/packages/3e/45/d2d188b11776e23235a14b0601502acc6bd5e8f4433a456ea3854e41aca2/logxide-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "17a8cd4b04cc0bc7fd188f56d9e971e2d40d550ca39ddf0b5abdc525ed68ef29",
                "md5": "874b75328e6e1198aa32d1435c75efcb",
                "sha256": "d8b917173121814049a40941dcadc52d5f7396638531314324ac076ddd781862"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "874b75328e6e1198aa32d1435c75efcb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 336220,
            "upload_time": "2025-07-16T01:05:22",
            "upload_time_iso_8601": "2025-07-16T01:05:22.119073Z",
            "url": "https://files.pythonhosted.org/packages/17/a8/cd4b04cc0bc7fd188f56d9e971e2d40d550ca39ddf0b5abdc525ed68ef29/logxide-0.1.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1002f379bfe4d1ae69ab1b51f3c3d8a9e89408dde21189ee4901beb4227e55dc",
                "md5": "3a0d5a9de4f496b8034b9116818cd669",
                "sha256": "2c6158a4276649614a77a6902f62ff1566346050b0742d4df5d01e3ade4a2d7c"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3a0d5a9de4f496b8034b9116818cd669",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 352506,
            "upload_time": "2025-07-16T01:05:15",
            "upload_time_iso_8601": "2025-07-16T01:05:15.603874Z",
            "url": "https://files.pythonhosted.org/packages/10/02/f379bfe4d1ae69ab1b51f3c3d8a9e89408dde21189ee4901beb4227e55dc/logxide-0.1.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7d6e70d15923c1d72017d3dc449f875228af1bab41ae8849ab2fb5b34227722f",
                "md5": "311ef84bc97cf64fec2f762dfc00a76a",
                "sha256": "e99654491a35dbb64d3022773b626b9bb5c2f7e7bfd376266f8d8e4331bf2193"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "311ef84bc97cf64fec2f762dfc00a76a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 527337,
            "upload_time": "2025-07-16T01:05:10",
            "upload_time_iso_8601": "2025-07-16T01:05:10.586778Z",
            "url": "https://files.pythonhosted.org/packages/7d/6e/70d15923c1d72017d3dc449f875228af1bab41ae8849ab2fb5b34227722f/logxide-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "33c11c792b6cf73c40c65bc94d7486302e00e39c9d7a82f113d9dfe7583fb412",
                "md5": "460a33dbf66121184d0bd286f9f28300",
                "sha256": "ef8b2cde3e04112232c49730b681819b7823a8918ff7b7d7a020ade434d57fe7"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "460a33dbf66121184d0bd286f9f28300",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 516626,
            "upload_time": "2025-07-16T01:05:06",
            "upload_time_iso_8601": "2025-07-16T01:05:06.147519Z",
            "url": "https://files.pythonhosted.org/packages/33/c1/1c792b6cf73c40c65bc94d7486302e00e39c9d7a82f113d9dfe7583fb412/logxide-0.1.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e34299c9da5a58ed2b52cadc6aceaf79daffe45c4dab521280d74910f81ea3b3",
                "md5": "eb0d5d4611692f0f51fb29ec0fa247be",
                "sha256": "27a6704872f7777c33802045c35f12764835aa0ae75e95c6f94fdd8088d32f76"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "eb0d5d4611692f0f51fb29ec0fa247be",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 577051,
            "upload_time": "2025-07-16T01:03:48",
            "upload_time_iso_8601": "2025-07-16T01:03:48.790778Z",
            "url": "https://files.pythonhosted.org/packages/e3/42/99c9da5a58ed2b52cadc6aceaf79daffe45c4dab521280d74910f81ea3b3/logxide-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "765675b2eea2544800b75e68113cd961d4ccab018ea06f57819c3cf97e9ba142",
                "md5": "c067eaf2aeed5f3be56cd291fc3e4085",
                "sha256": "a7fe7d424875a40f92f4aede7d8b58af59dd48bfad0226d94627f0d2da43318f"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c067eaf2aeed5f3be56cd291fc3e4085",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 584863,
            "upload_time": "2025-07-16T01:04:04",
            "upload_time_iso_8601": "2025-07-16T01:04:04.336788Z",
            "url": "https://files.pythonhosted.org/packages/76/56/75b2eea2544800b75e68113cd961d4ccab018ea06f57819c3cf97e9ba142/logxide-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fc416a757b5f5cb3f81d50bcbfecc2cbc6a3576b848d3f25b1f7ee83afe550bd",
                "md5": "4d3d9f8de16909bedc6c82b9ffb6115e",
                "sha256": "9dcad5253f59673f66744327286b80a978fac24d51bbb74fba8ee728065c2b92"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4d3d9f8de16909bedc6c82b9ffb6115e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 623564,
            "upload_time": "2025-07-16T01:04:46",
            "upload_time_iso_8601": "2025-07-16T01:04:46.113038Z",
            "url": "https://files.pythonhosted.org/packages/fc/41/6a757b5f5cb3f81d50bcbfecc2cbc6a3576b848d3f25b1f7ee83afe550bd/logxide-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e9bf762d9b8df616fe531354cee21c7347ce5e6470fff62c579b649038e9408d",
                "md5": "c14fd253f1ddb904cae9e09226fa4763",
                "sha256": "11b11375cb5ab29dab56c5b11bd9e63fa783165720dc765907ab850ee0a59e84"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "c14fd253f1ddb904cae9e09226fa4763",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 739231,
            "upload_time": "2025-07-16T01:04:18",
            "upload_time_iso_8601": "2025-07-16T01:04:18.575553Z",
            "url": "https://files.pythonhosted.org/packages/e9/bf/762d9b8df616fe531354cee21c7347ce5e6470fff62c579b649038e9408d/logxide-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e77661341a32d232eaa34d84d2ee967ec4c02f2ab1976eb6853bcd384ad775d2",
                "md5": "fdbc34f23906e6ca5330ca52f0e4373a",
                "sha256": "07f26db1e4515896b96aa41655836dbb6920c82800bfee613c11f60275bff6d8"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "fdbc34f23906e6ca5330ca52f0e4373a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 608812,
            "upload_time": "2025-07-16T01:04:32",
            "upload_time_iso_8601": "2025-07-16T01:04:32.956718Z",
            "url": "https://files.pythonhosted.org/packages/e7/76/61341a32d232eaa34d84d2ee967ec4c02f2ab1976eb6853bcd384ad775d2/logxide-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9bf7b8671645e13264f40d239869a0b4aea80f324dc8ad5478f3026706d631fc",
                "md5": "f18f65775ead0c4438b592c5e861462c",
                "sha256": "63b58d8a3010051a056fdb0b398b2201071ffd91b6ccf0e23a44cdf38f253804"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f18f65775ead0c4438b592c5e861462c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 576116,
            "upload_time": "2025-07-16T01:04:56",
            "upload_time_iso_8601": "2025-07-16T01:04:56.583765Z",
            "url": "https://files.pythonhosted.org/packages/9b/f7/b8671645e13264f40d239869a0b4aea80f324dc8ad5478f3026706d631fc/logxide-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cdea8e88fdb95b4da4778e95edd0662025e063375b5481c42c15652bbc33322f",
                "md5": "33e55b1fd6eefafbd58fc2d98759fc68",
                "sha256": "0a5736436614f706b47cb6f1e2f4942609758e6846fced4ce51a8caf176b9026"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "33e55b1fd6eefafbd58fc2d98759fc68",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 336280,
            "upload_time": "2025-07-16T01:05:23",
            "upload_time_iso_8601": "2025-07-16T01:05:23.412590Z",
            "url": "https://files.pythonhosted.org/packages/cd/ea/8e88fdb95b4da4778e95edd0662025e063375b5481c42c15652bbc33322f/logxide-0.1.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0e8a4a68ab5df960034f12623bc37d07d3a64d05dbd61a4516d33ba4484faef8",
                "md5": "5898d4ac4240fd8387bc1fab76f35ceb",
                "sha256": "75c9bb1543242f5e6fc3e36cd685bb14709ad4c5697bcf4c40af03484d255f63"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5898d4ac4240fd8387bc1fab76f35ceb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 352591,
            "upload_time": "2025-07-16T01:05:16",
            "upload_time_iso_8601": "2025-07-16T01:05:16.825737Z",
            "url": "https://files.pythonhosted.org/packages/0e/8a/4a68ab5df960034f12623bc37d07d3a64d05dbd61a4516d33ba4484faef8/logxide-0.1.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e95c2fce190fdfdc2da1556c127040b64f5dea9629afbe57a50a1c2f1c0e6fc6",
                "md5": "8e3f4d5cc08224a3841d757594b11471",
                "sha256": "397e74f5a6429ce8d24b383e3272b2ed6b292d7a97d38ca4c49c3ece0bef3871"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8e3f4d5cc08224a3841d757594b11471",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 524503,
            "upload_time": "2025-07-16T01:05:11",
            "upload_time_iso_8601": "2025-07-16T01:05:11.949783Z",
            "url": "https://files.pythonhosted.org/packages/e9/5c/2fce190fdfdc2da1556c127040b64f5dea9629afbe57a50a1c2f1c0e6fc6/logxide-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "95e7b9bd3a32022dfc72867861f8ac9fdadfdad1c544b9f9e45947186b90cc95",
                "md5": "cc1f6ad2974fdc24fce8479b96c164f0",
                "sha256": "fec7ec46bbba0107632942fbb09e1fc4ed47302548d7c3968d0cc030fae12a45"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cc1f6ad2974fdc24fce8479b96c164f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 512072,
            "upload_time": "2025-07-16T01:05:07",
            "upload_time_iso_8601": "2025-07-16T01:05:07.519530Z",
            "url": "https://files.pythonhosted.org/packages/95/e7/b9bd3a32022dfc72867861f8ac9fdadfdad1c544b9f9e45947186b90cc95/logxide-0.1.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d84f90c8dd3d12e65406d58fc5efb8cee7aac552763fc28fdc1da0b8d90ee5dd",
                "md5": "6165de479918e9f59b4ce5d2a828d5c3",
                "sha256": "eb9baaf7a75ef77b158d71b5f1ec5ba1abee91b44033d133be6bba0323486f0c"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6165de479918e9f59b4ce5d2a828d5c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 578245,
            "upload_time": "2025-07-16T01:03:50",
            "upload_time_iso_8601": "2025-07-16T01:03:50.411590Z",
            "url": "https://files.pythonhosted.org/packages/d8/4f/90c8dd3d12e65406d58fc5efb8cee7aac552763fc28fdc1da0b8d90ee5dd/logxide-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e6c2577fec81aac3acdc72bd65ecfcd790e1cd2bde21e3e7f2993a61aa1be92f",
                "md5": "a91986537fc71b6c95ec579c189506e8",
                "sha256": "17a784c4ba7f16b63becea74880ed7355f9f25ff1085618c3494c121e38d9675"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a91986537fc71b6c95ec579c189506e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 585770,
            "upload_time": "2025-07-16T01:04:05",
            "upload_time_iso_8601": "2025-07-16T01:04:05.983655Z",
            "url": "https://files.pythonhosted.org/packages/e6/c2/577fec81aac3acdc72bd65ecfcd790e1cd2bde21e3e7f2993a61aa1be92f/logxide-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d2a08925d3e94e8c860c893063a9a83033ae58bfc419f8d839b5d84b2eb43918",
                "md5": "c9f86574f6eaf0fb1fa10010af625280",
                "sha256": "020407afd694594bf47cb470db0cf4e4e86d5e08e28097e88e5f6e66668e47c3"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c9f86574f6eaf0fb1fa10010af625280",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 624133,
            "upload_time": "2025-07-16T01:04:47",
            "upload_time_iso_8601": "2025-07-16T01:04:47.755874Z",
            "url": "https://files.pythonhosted.org/packages/d2/a0/8925d3e94e8c860c893063a9a83033ae58bfc419f8d839b5d84b2eb43918/logxide-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "221bf635c74e551bca4ad3b104c271ba3042df2a4d17f0b7298cabd59c7a1a83",
                "md5": "1dbe2bc9124dcd869a7be3c7c6595fd4",
                "sha256": "830602616c69f07defe137adafd36a3ab8a085883c3c835772dc7d7c617ee03f"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "1dbe2bc9124dcd869a7be3c7c6595fd4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 740361,
            "upload_time": "2025-07-16T01:04:20",
            "upload_time_iso_8601": "2025-07-16T01:04:20.045777Z",
            "url": "https://files.pythonhosted.org/packages/22/1b/f635c74e551bca4ad3b104c271ba3042df2a4d17f0b7298cabd59c7a1a83/logxide-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "32844faa6ddba81588d2eba39de9d98553249690bf3f830d262bd185432aa158",
                "md5": "fb5fca35af2236baca246d9f4cb18c6b",
                "sha256": "7e60aa159fb64e6c4238a52067ce225affcd9051ac0b43d9171deb73bb990636"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "fb5fca35af2236baca246d9f4cb18c6b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 611629,
            "upload_time": "2025-07-16T01:04:34",
            "upload_time_iso_8601": "2025-07-16T01:04:34.584515Z",
            "url": "https://files.pythonhosted.org/packages/32/84/4faa6ddba81588d2eba39de9d98553249690bf3f830d262bd185432aa158/logxide-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e21e1728c1c367c8464ceb7a04567dd43246456c1a3feb87be46b4d8ff9c5790",
                "md5": "8b84a62c54861e798babd2f6d7da4268",
                "sha256": "a7d60831f86744a7ea8eb5b21e8f624772738a9e4d2e0cd4e42fb8bbbcc28002"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8b84a62c54861e798babd2f6d7da4268",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 577975,
            "upload_time": "2025-07-16T01:04:58",
            "upload_time_iso_8601": "2025-07-16T01:04:58.424734Z",
            "url": "https://files.pythonhosted.org/packages/e2/1e/1728c1c367c8464ceb7a04567dd43246456c1a3feb87be46b4d8ff9c5790/logxide-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a4b31a68ca19fa3a6782fc50b55ae6325a632044811a1f08274cb63db8f2f576",
                "md5": "2d175c0b1b4c03a4414da44c463b0df3",
                "sha256": "77faf5fae5bd0b493591d861c325ff617214f830b471b4272325f83e17b5465b"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "2d175c0b1b4c03a4414da44c463b0df3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 337256,
            "upload_time": "2025-07-16T01:05:24",
            "upload_time_iso_8601": "2025-07-16T01:05:24.701177Z",
            "url": "https://files.pythonhosted.org/packages/a4/b3/1a68ca19fa3a6782fc50b55ae6325a632044811a1f08274cb63db8f2f576/logxide-0.1.0-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a41545e803fe075727a8c4423fa9b2138bc007b8ac18b0dbc07a2ef8460f4b5e",
                "md5": "a445680500abd671670047080a58e589",
                "sha256": "916ddf072c9057c251adf73a79c14841d68dc2e0162e3234009589b7630e2c16"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a445680500abd671670047080a58e589",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 354107,
            "upload_time": "2025-07-16T01:05:18",
            "upload_time_iso_8601": "2025-07-16T01:05:18.083592Z",
            "url": "https://files.pythonhosted.org/packages/a4/15/45e803fe075727a8c4423fa9b2138bc007b8ac18b0dbc07a2ef8460f4b5e/logxide-0.1.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0e24f798a7eca522bf7003748b1b6fdccf5592a013f4cb197234c190fdf79383",
                "md5": "35aa7c3d58f4f0f2ff78733f9772906a",
                "sha256": "ed7a90317773ac238f811b84dce7cdf30d38808701f1f4f005197c5dfcf297d3"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "35aa7c3d58f4f0f2ff78733f9772906a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 524211,
            "upload_time": "2025-07-16T01:05:13",
            "upload_time_iso_8601": "2025-07-16T01:05:13.363961Z",
            "url": "https://files.pythonhosted.org/packages/0e/24/f798a7eca522bf7003748b1b6fdccf5592a013f4cb197234c190fdf79383/logxide-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "be3efec94d68b8ac331efa7ba4ca5d470e7ae0ccadc84ea2af55eea49496170a",
                "md5": "1845e69a8105fac119ec583ca362972a",
                "sha256": "0ac9d9d1f12143cf38df41c6a19319601ae4381b61e8552246cd1f79cf8ca582"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1845e69a8105fac119ec583ca362972a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 512011,
            "upload_time": "2025-07-16T01:05:09",
            "upload_time_iso_8601": "2025-07-16T01:05:09.142869Z",
            "url": "https://files.pythonhosted.org/packages/be/3e/fec94d68b8ac331efa7ba4ca5d470e7ae0ccadc84ea2af55eea49496170a/logxide-0.1.0-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d8f556c5fadfce655022f9751abc2fba352f012d80af9a0cfefd98f0b632d6b5",
                "md5": "31199f290cc48764ddca95e736959923",
                "sha256": "8da459b7a1a93f3c0b29a981a88bb76f74e3da2bd05a1d5871079afba47658a2"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "31199f290cc48764ddca95e736959923",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 577370,
            "upload_time": "2025-07-16T01:03:51",
            "upload_time_iso_8601": "2025-07-16T01:03:51.882867Z",
            "url": "https://files.pythonhosted.org/packages/d8/f5/56c5fadfce655022f9751abc2fba352f012d80af9a0cfefd98f0b632d6b5/logxide-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d4e133e2b3621d397dfefba95dd33902ccf87c7d3bffb83a48a484008d08c55d",
                "md5": "0f1250a7a9e649e0c20af1dfbead3790",
                "sha256": "5991ec19023f14a12327708ea46215f20844b307f4925c3f9df133235b15f0c1"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "0f1250a7a9e649e0c20af1dfbead3790",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 585069,
            "upload_time": "2025-07-16T01:04:07",
            "upload_time_iso_8601": "2025-07-16T01:04:07.693080Z",
            "url": "https://files.pythonhosted.org/packages/d4/e1/33e2b3621d397dfefba95dd33902ccf87c7d3bffb83a48a484008d08c55d/logxide-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b8254f303708bcd17fa3d8405189d6f24413f86b9e0702cb25dddbfb5d291bd5",
                "md5": "a78e3a9ec94c8f90011eb1969a206972",
                "sha256": "4e4c8ee995b4cc873f5ba52d42f2717a862160fcfd6ff7ffab7724dd74c2b83f"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a78e3a9ec94c8f90011eb1969a206972",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 622546,
            "upload_time": "2025-07-16T01:04:49",
            "upload_time_iso_8601": "2025-07-16T01:04:49.086253Z",
            "url": "https://files.pythonhosted.org/packages/b8/25/4f303708bcd17fa3d8405189d6f24413f86b9e0702cb25dddbfb5d291bd5/logxide-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3cf0b8660b14670ad2dd932e69c0a84b2d93427c79c479b1748e8c0c5858787f",
                "md5": "6bfdcded08033383920129b3f6d93cda",
                "sha256": "f7893c8bc9c000ae74865f5e284501b43128d3fafa96e101672ebf9d346d7563"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "6bfdcded08033383920129b3f6d93cda",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 740397,
            "upload_time": "2025-07-16T01:04:21",
            "upload_time_iso_8601": "2025-07-16T01:04:21.753478Z",
            "url": "https://files.pythonhosted.org/packages/3c/f0/b8660b14670ad2dd932e69c0a84b2d93427c79c479b1748e8c0c5858787f/logxide-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1dd7c5186585deaee4614b736479c02f4cbad627d419a6630131c670adbcc01e",
                "md5": "dd21402ed736d4b5b4a72b4a32798d18",
                "sha256": "9804fc03a89a3f7c4d5b6747dbdd0a97b1c104464edbc5a51ab21302f141f582"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "dd21402ed736d4b5b4a72b4a32798d18",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 610925,
            "upload_time": "2025-07-16T01:04:35",
            "upload_time_iso_8601": "2025-07-16T01:04:35.960188Z",
            "url": "https://files.pythonhosted.org/packages/1d/d7/c5186585deaee4614b736479c02f4cbad627d419a6630131c670adbcc01e/logxide-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5d62a583226c6e606fbcc49e91051e6ed42ddfec5c2cf8b1861b557a0a13809f",
                "md5": "f4c5b79968913e8adaf9dadb52a6cbb5",
                "sha256": "b554d26d9dc57a2a05111f2a711ffa6664335e99e79892180b6a131ee54d6431"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f4c5b79968913e8adaf9dadb52a6cbb5",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 577294,
            "upload_time": "2025-07-16T01:04:59",
            "upload_time_iso_8601": "2025-07-16T01:04:59.792415Z",
            "url": "https://files.pythonhosted.org/packages/5d/62/a583226c6e606fbcc49e91051e6ed42ddfec5c2cf8b1861b557a0a13809f/logxide-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "94ad22ba46e863902eca4067ee94253f71ec9bfcad5a2dede6521908be7b1488",
                "md5": "06ad4b59a95008fbe829f8e7be1da31d",
                "sha256": "b883842f16aaf2a1dd4aa410f2b3c27ff2de137c910bc447a3a18df901052b94"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "06ad4b59a95008fbe829f8e7be1da31d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 576440,
            "upload_time": "2025-07-16T01:03:53",
            "upload_time_iso_8601": "2025-07-16T01:03:53.685336Z",
            "url": "https://files.pythonhosted.org/packages/94/ad/22ba46e863902eca4067ee94253f71ec9bfcad5a2dede6521908be7b1488/logxide-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "59a62ee306316d040751ca83b1f59380a458376582b0d2cd67eb80e3cf3d4547",
                "md5": "ffc7b732750ac541ee5ee05966adcbd7",
                "sha256": "8251796df38a2ea391507761542c3d0d748fb18f05bd250f58117eb8add3d142"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ffc7b732750ac541ee5ee05966adcbd7",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 584287,
            "upload_time": "2025-07-16T01:04:09",
            "upload_time_iso_8601": "2025-07-16T01:04:09.209973Z",
            "url": "https://files.pythonhosted.org/packages/59/a6/2ee306316d040751ca83b1f59380a458376582b0d2cd67eb80e3cf3d4547/logxide-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0f9e94945104fa45c3c0f27dc91acae4f9e226a39ed334cd9046184c5d642ec0",
                "md5": "1624a0e7930bc340cb18db4f40fe9c8a",
                "sha256": "4b76c90cee1b85d357c84d9363db09926baf384b7235e1792409333ffacb33ff"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "1624a0e7930bc340cb18db4f40fe9c8a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 738892,
            "upload_time": "2025-07-16T01:04:23",
            "upload_time_iso_8601": "2025-07-16T01:04:23.532438Z",
            "url": "https://files.pythonhosted.org/packages/0f/9e/94945104fa45c3c0f27dc91acae4f9e226a39ed334cd9046184c5d642ec0/logxide-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "79699686f30cf8481ca8d778979a416f8faed9942fde24b38044bd2eda984415",
                "md5": "35b0843b3babf47e9719e6ad0778dd4f",
                "sha256": "b1e2e03567484f0b7cc157c8f0dfcc08c406baa04579b8979df30457ae0d55a5"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "35b0843b3babf47e9719e6ad0778dd4f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 610018,
            "upload_time": "2025-07-16T01:04:37",
            "upload_time_iso_8601": "2025-07-16T01:04:37.435838Z",
            "url": "https://files.pythonhosted.org/packages/79/69/9686f30cf8481ca8d778979a416f8faed9942fde24b38044bd2eda984415/logxide-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f35431eb0b658c9235c5842e9af443df2d5b602034bfda3997ba895c7b37e279",
                "md5": "a93ef511a1948bdf36c6ec0da31eb26d",
                "sha256": "20ce59d275493fa46004aad8e18167519a3ded48ea80bfa840b04dc485990473"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "a93ef511a1948bdf36c6ec0da31eb26d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 336852,
            "upload_time": "2025-07-16T01:05:26",
            "upload_time_iso_8601": "2025-07-16T01:05:26.157085Z",
            "url": "https://files.pythonhosted.org/packages/f3/54/31eb0b658c9235c5842e9af443df2d5b602034bfda3997ba895c7b37e279/logxide-0.1.0-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a0ed6e5d0f53702be4e9c3601fae09becb3ae8a8bf576b81dc3ae646d42bf605",
                "md5": "ea21b67cf618e7c6f6aff0125d657e36",
                "sha256": "588e99b34ee7af26cf59fc7151179551ea0457af70ce9fec0074780b1346aee1"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ea21b67cf618e7c6f6aff0125d657e36",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 353207,
            "upload_time": "2025-07-16T01:05:19",
            "upload_time_iso_8601": "2025-07-16T01:05:19.347102Z",
            "url": "https://files.pythonhosted.org/packages/a0/ed/6e5d0f53702be4e9c3601fae09becb3ae8a8bf576b81dc3ae646d42bf605/logxide-0.1.0-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c18029f623c5a300030d3844811dfa8a9ed4039dbc88b9a7a3c9d266b336ad80",
                "md5": "956bafe021c101ab398b07d9cffc878f",
                "sha256": "bdb8e1dc2c96d2be9556773b53fca82a02e74bdf797dc31914e7dffc17731f3f"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "956bafe021c101ab398b07d9cffc878f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 577841,
            "upload_time": "2025-07-16T01:03:55",
            "upload_time_iso_8601": "2025-07-16T01:03:55.422693Z",
            "url": "https://files.pythonhosted.org/packages/c1/80/29f623c5a300030d3844811dfa8a9ed4039dbc88b9a7a3c9d266b336ad80/logxide-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0aa924feb5772917611bfa2d52cbc314412faeec0bfac9661d68dac49da5413a",
                "md5": "5cb629aaaa9966ef72dc58a3020a1995",
                "sha256": "f4d72c31d1790d3b65d816a5578159ae7ce8e0577da0ccb45e011a37f0404030"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "5cb629aaaa9966ef72dc58a3020a1995",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 585509,
            "upload_time": "2025-07-16T01:04:10",
            "upload_time_iso_8601": "2025-07-16T01:04:10.956350Z",
            "url": "https://files.pythonhosted.org/packages/0a/a9/24feb5772917611bfa2d52cbc314412faeec0bfac9661d68dac49da5413a/logxide-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "89b0257e2edf3b2b3cc312e710f93c8ac7e8db37b5ffdfd9e16562c34cee7467",
                "md5": "3a404535dfa6681f55fe80fed3256346",
                "sha256": "e5c6ad3871bc3c9ee04a2327be839c9698f1e28148c05b4a7bfc50a10c4549f7"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "3a404535dfa6681f55fe80fed3256346",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 623974,
            "upload_time": "2025-07-16T01:04:50",
            "upload_time_iso_8601": "2025-07-16T01:04:50.566225Z",
            "url": "https://files.pythonhosted.org/packages/89/b0/257e2edf3b2b3cc312e710f93c8ac7e8db37b5ffdfd9e16562c34cee7467/logxide-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4af1336db878fd5c054bc8c7f7b622ab7203aef952dbfa79ca5afe2a3f31421e",
                "md5": "41c2d8b4ec1c083da5dde467304ffaff",
                "sha256": "e2cb6cf915803f433d58fb0806acf8ec1a2ea80ba7dc62d365eb69968cd49279"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "41c2d8b4ec1c083da5dde467304ffaff",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 739284,
            "upload_time": "2025-07-16T01:04:24",
            "upload_time_iso_8601": "2025-07-16T01:04:24.792328Z",
            "url": "https://files.pythonhosted.org/packages/4a/f1/336db878fd5c054bc8c7f7b622ab7203aef952dbfa79ca5afe2a3f31421e/logxide-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4b4ffde54677ef203d1b92fec6e47df6b18e63c97021aea2a784bbfd7b6a2941",
                "md5": "257244b10749bd79fe3f2348db3ff1f2",
                "sha256": "b1f09bd6829b5acd324ea9c4ad7407de9687ed3cd4a22ca38d7f413c381ba97a"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "257244b10749bd79fe3f2348db3ff1f2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 610175,
            "upload_time": "2025-07-16T01:04:38",
            "upload_time_iso_8601": "2025-07-16T01:04:38.865013Z",
            "url": "https://files.pythonhosted.org/packages/4b/4f/fde54677ef203d1b92fec6e47df6b18e63c97021aea2a784bbfd7b6a2941/logxide-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cb9d8f7eca6458b41c1923c49099628b5bf14beade11ce3b33ac3e7b3e5dd0c4",
                "md5": "828efc4809c5ddaccd0941d5bc1b4423",
                "sha256": "ecc3661b38e2beda9ad9bb219aa004633643da05da9e62d409ddc0a422dbade0"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "828efc4809c5ddaccd0941d5bc1b4423",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 577635,
            "upload_time": "2025-07-16T01:05:01",
            "upload_time_iso_8601": "2025-07-16T01:05:01.093473Z",
            "url": "https://files.pythonhosted.org/packages/cb/9d/8f7eca6458b41c1923c49099628b5bf14beade11ce3b33ac3e7b3e5dd0c4/logxide-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a2a101880d6911b925d00947335a652cec4f8d434088c6589dcadad8828deb92",
                "md5": "e9f2e672a3f3c89a5d4aec264747b9dd",
                "sha256": "316b10ab892ce489fbc0433518674547011ee569360604818c170e5921d34f28"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "e9f2e672a3f3c89a5d4aec264747b9dd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 336711,
            "upload_time": "2025-07-16T01:05:27",
            "upload_time_iso_8601": "2025-07-16T01:05:27.799558Z",
            "url": "https://files.pythonhosted.org/packages/a2/a1/01880d6911b925d00947335a652cec4f8d434088c6589dcadad8828deb92/logxide-0.1.0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d2fda109e7b1804d4532e690dff8144b97a58a769270e2f346396e8dde23df0e",
                "md5": "5c59217f1913161babfdb4efca5e8398",
                "sha256": "18f7e527146fe886598e4303e7536c86c60f3a32bd1ad74ba0e81f1f5dfdb7bd"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5c59217f1913161babfdb4efca5e8398",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 352776,
            "upload_time": "2025-07-16T01:05:20",
            "upload_time_iso_8601": "2025-07-16T01:05:20.729085Z",
            "url": "https://files.pythonhosted.org/packages/d2/fd/a109e7b1804d4532e690dff8144b97a58a769270e2f346396e8dde23df0e/logxide-0.1.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "91e4081f9e06118b52be07b025745239df6a8e782b6d4563949d966512c01a1f",
                "md5": "55c1288764a96a4f6a033d1bc0427ff2",
                "sha256": "4ccdc58e0ba3c0ab56945ea6f08a3499ceafd0a4e3d236a8af6e9f2eb65d3fc9"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "55c1288764a96a4f6a033d1bc0427ff2",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 578494,
            "upload_time": "2025-07-16T01:03:57",
            "upload_time_iso_8601": "2025-07-16T01:03:57.055332Z",
            "url": "https://files.pythonhosted.org/packages/91/e4/081f9e06118b52be07b025745239df6a8e782b6d4563949d966512c01a1f/logxide-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ba64342a53880b1f15d6dcaaa0fd987360f9eb5b2f268e2b2d48f0d0dce4f298",
                "md5": "2efa8c109f29402f96bc956b76571f56",
                "sha256": "bebf866217d78658ce039c236a9ebbe99b26392a0971c44c62f0f0985697ccf9"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "2efa8c109f29402f96bc956b76571f56",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 586336,
            "upload_time": "2025-07-16T01:04:12",
            "upload_time_iso_8601": "2025-07-16T01:04:12.313070Z",
            "url": "https://files.pythonhosted.org/packages/ba/64/342a53880b1f15d6dcaaa0fd987360f9eb5b2f268e2b2d48f0d0dce4f298/logxide-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d81e111817e3688bde7b1a22fc259e0924ab870903c9388a240887e04edfb7f6",
                "md5": "cee86a88e911e266c1c251c142db498f",
                "sha256": "4228806b91cba5efba08d090a5a87fdb498ad6703a307a199bce50cc419e1acb"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "cee86a88e911e266c1c251c142db498f",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 626158,
            "upload_time": "2025-07-16T01:04:52",
            "upload_time_iso_8601": "2025-07-16T01:04:52.008690Z",
            "url": "https://files.pythonhosted.org/packages/d8/1e/111817e3688bde7b1a22fc259e0924ab870903c9388a240887e04edfb7f6/logxide-0.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "51cb3563a4410166ab3bbf531c12464f7c0c38f95de2c9ac2ffc6841474f0836",
                "md5": "5d00e64c3284a170438c0c00620faa7a",
                "sha256": "b2fda447743a8541405814f9baf62c9285d5b8f68db3757628ab6f732a2bd0b3"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "5d00e64c3284a170438c0c00620faa7a",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 740335,
            "upload_time": "2025-07-16T01:04:26",
            "upload_time_iso_8601": "2025-07-16T01:04:26.696480Z",
            "url": "https://files.pythonhosted.org/packages/51/cb/3563a4410166ab3bbf531c12464f7c0c38f95de2c9ac2ffc6841474f0836/logxide-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "79c1c7faa933229221d8e168c14104c123c8eb4d250b331622aef58b3da94950",
                "md5": "5e325320ce55b7623a52177f02642b50",
                "sha256": "f841f874d3ab0fd130c99656291102d6ae52c7a90827fa26835a3c7554e58920"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "5e325320ce55b7623a52177f02642b50",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 609567,
            "upload_time": "2025-07-16T01:04:40",
            "upload_time_iso_8601": "2025-07-16T01:04:40.240643Z",
            "url": "https://files.pythonhosted.org/packages/79/c1/c7faa933229221d8e168c14104c123c8eb4d250b331622aef58b3da94950/logxide-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c0362b196f112cfceaff0a33c889af4e4bd018fe6ebe6fc23b9ee8cd57d096f6",
                "md5": "98817763f5acd27d3686f2e9d11aa109",
                "sha256": "12b32f4b3b812107c6f519cddfa87d2652d8b84f7bfad52a1ec4de6e105333e8"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "98817763f5acd27d3686f2e9d11aa109",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 578333,
            "upload_time": "2025-07-16T01:05:03",
            "upload_time_iso_8601": "2025-07-16T01:05:03.193189Z",
            "url": "https://files.pythonhosted.org/packages/c0/36/2b196f112cfceaff0a33c889af4e4bd018fe6ebe6fc23b9ee8cd57d096f6/logxide-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "919b6d28807861e788d683b3b7cf47f37f2c6ca6ef3f88be50e11681aa4b7312",
                "md5": "82c0ae074d4a6afc928201a7feea5ff3",
                "sha256": "76f10b0274d1047e1ed5d000795055192bc799f18142481ae8f6dbdfd71991ac"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "82c0ae074d4a6afc928201a7feea5ff3",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 578426,
            "upload_time": "2025-07-16T01:03:58",
            "upload_time_iso_8601": "2025-07-16T01:03:58.806638Z",
            "url": "https://files.pythonhosted.org/packages/91/9b/6d28807861e788d683b3b7cf47f37f2c6ca6ef3f88be50e11681aa4b7312/logxide-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "caaaeca15558982837b45f48d7682269cd85e6ec6c2a6f0e412eed99cd69e19d",
                "md5": "757f8a984ffb01485fc72512675add09",
                "sha256": "6a38e94fac8a9eeac7f8500603a1026dd274f59cdaa2624e4f231ce5f36edb88"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "757f8a984ffb01485fc72512675add09",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 586252,
            "upload_time": "2025-07-16T01:04:14",
            "upload_time_iso_8601": "2025-07-16T01:04:14.058937Z",
            "url": "https://files.pythonhosted.org/packages/ca/aa/eca15558982837b45f48d7682269cd85e6ec6c2a6f0e412eed99cd69e19d/logxide-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "030290f4f03ed4b1030a5917a5c4530914921a1bf5bff510b0865b0ffbab342b",
                "md5": "4e1100ac1e011bff1f13392164d17a62",
                "sha256": "42bea3a519dd3f788631a4e3cef075a99ff2fbc519ff9f8f45c2f7f56e6ad08f"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4e1100ac1e011bff1f13392164d17a62",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 626082,
            "upload_time": "2025-07-16T01:04:53",
            "upload_time_iso_8601": "2025-07-16T01:04:53.801967Z",
            "url": "https://files.pythonhosted.org/packages/03/02/90f4f03ed4b1030a5917a5c4530914921a1bf5bff510b0865b0ffbab342b/logxide-0.1.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "477919f7d45acc25731946c4bdc437125e96ec9ce53462e2c4ebe93166574a63",
                "md5": "aafaa2765902f399115bcaa516d979fa",
                "sha256": "6ee9f2adb1b18d59eee4943876adb53c004987756d2ef56f2c60b298559a6aae"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "aafaa2765902f399115bcaa516d979fa",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 740599,
            "upload_time": "2025-07-16T01:04:28",
            "upload_time_iso_8601": "2025-07-16T01:04:28.042064Z",
            "url": "https://files.pythonhosted.org/packages/47/79/19f7d45acc25731946c4bdc437125e96ec9ce53462e2c4ebe93166574a63/logxide-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4ed5c4aa422003b8a3dfa0140ca2899c0b4b7adbf90792b947a4218f5d2dcb96",
                "md5": "821a1bda9ac5e07986115ab795ad641d",
                "sha256": "b0665a43e3dd397759344b1a75a089b315d2b0421144f3898632d71005e61ccc"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "821a1bda9ac5e07986115ab795ad641d",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 609523,
            "upload_time": "2025-07-16T01:04:41",
            "upload_time_iso_8601": "2025-07-16T01:04:41.923275Z",
            "url": "https://files.pythonhosted.org/packages/4e/d5/c4aa422003b8a3dfa0140ca2899c0b4b7adbf90792b947a4218f5d2dcb96/logxide-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d5ef6834c1e2294609bb82d5ed83ac63ee3b91512497151567fe63e3c7bb946f",
                "md5": "87b38f21137a32f9f169a5a82b0c7f1e",
                "sha256": "c965b6914f864a67646a9839615f1d0e501f63a87bb64c3fcba8c8e2a5b447bb"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "87b38f21137a32f9f169a5a82b0c7f1e",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 578205,
            "upload_time": "2025-07-16T01:05:04",
            "upload_time_iso_8601": "2025-07-16T01:05:04.621063Z",
            "url": "https://files.pythonhosted.org/packages/d5/ef/6834c1e2294609bb82d5ed83ac63ee3b91512497151567fe63e3c7bb946f/logxide-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "72d070826f268bdb2dc3ac1117289326062642726da66c766accb38676e91123",
                "md5": "ed42f7b2b9e1f9ae37721396367220ce",
                "sha256": "aefd0ed04837ae4104a3ca25c24deb476d3c8b514fd4830f117a8fdbdb87cc81"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ed42f7b2b9e1f9ae37721396367220ce",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 579549,
            "upload_time": "2025-07-16T01:04:01",
            "upload_time_iso_8601": "2025-07-16T01:04:01.195351Z",
            "url": "https://files.pythonhosted.org/packages/72/d0/70826f268bdb2dc3ac1117289326062642726da66c766accb38676e91123/logxide-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fa94fbe14c218771f2a65cb41003507338f0b766d71305ef8530194bb0d5178f",
                "md5": "76d9f14cefb6fd8b9397c811e4d22f42",
                "sha256": "1ad300f16f17b7bf265ca4447802f6c6c37240e125645fcb7ffd46e16cb56307"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "76d9f14cefb6fd8b9397c811e4d22f42",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 586780,
            "upload_time": "2025-07-16T01:04:15",
            "upload_time_iso_8601": "2025-07-16T01:04:15.370866Z",
            "url": "https://files.pythonhosted.org/packages/fa/94/fbe14c218771f2a65cb41003507338f0b766d71305ef8530194bb0d5178f/logxide-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0cd2f3d0a68bff37871614b93a10ae2f96766224b4547c250548a3e66be4696b",
                "md5": "47bc751a47901f958c939194ba13b62e",
                "sha256": "0e429a69282350134dff0cf697481b2976b4eaa9879de758e9c7a3bdc19c97cf"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "47bc751a47901f958c939194ba13b62e",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 741246,
            "upload_time": "2025-07-16T01:04:29",
            "upload_time_iso_8601": "2025-07-16T01:04:29.397357Z",
            "url": "https://files.pythonhosted.org/packages/0c/d2/f3d0a68bff37871614b93a10ae2f96766224b4547c250548a3e66be4696b/logxide-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b2ebb85ed5f2e78f879c389fe9e91d245193026c3363603974e86522ad330260",
                "md5": "7c8c033db233a67ab589f193d4ad57c9",
                "sha256": "08d819ae35eda2f6a2b43aa076c18d39440c012ea085f79ddafb12b54f81c0f7"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "7c8c033db233a67ab589f193d4ad57c9",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 610870,
            "upload_time": "2025-07-16T01:04:43",
            "upload_time_iso_8601": "2025-07-16T01:04:43.217533Z",
            "url": "https://files.pythonhosted.org/packages/b2/eb/b85ed5f2e78f879c389fe9e91d245193026c3363603974e86522ad330260/logxide-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b5aeb96dd49f7207262918d0b79bb11d93e3b78effb980acc5435b49101e1cac",
                "md5": "6b4fa63b8370f4c7f90d9c7baf7fbc72",
                "sha256": "56bb2ddabe5f9cf92a98ed9dde1344795b78c8a41f7dd464d1263dba57429bdb"
            },
            "downloads": -1,
            "filename": "logxide-0.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "6b4fa63b8370f4c7f90d9c7baf7fbc72",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 204204,
            "upload_time": "2025-07-16T01:05:14",
            "upload_time_iso_8601": "2025-07-16T01:05:14.532930Z",
            "url": "https://files.pythonhosted.org/packages/b5/ae/b96dd49f7207262918d0b79bb11d93e3b78effb980acc5435b49101e1cac/logxide-0.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-16 01:05:14",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Indosaram",
    "github_project": "logxide",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "logxide"
}
        
Elapsed time: 0.95953s