# 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
- **Sentry Integration**: Automatic error tracking with Sentry (optional)
## Quick Start
```python
# Simple and automatic - no setup needed!
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!')
```
That's it! LogXide automatically installs itself when imported. No manual setup required.
## Installation
```bash
# Basic installation
pip install logxide
# With Sentry integration
pip install logxide[sentry]
# Development dependencies
pip install logxide[dev]
```
## Documentation
- **[Usage Guide](docs/usage.md)** - Complete usage examples and API guide
- **[Integration Guide](docs/integration.md)** - Flask, Django, and FastAPI integration
- **[Sentry Integration](docs/sentry.md)** - Automatic error tracking with Sentry
- **[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
## Sentry Integration
LogXide includes optional Sentry integration for automatic error tracking:
```python
# Configure Sentry first
import sentry_sdk
sentry_sdk.init(dsn="your-sentry-dsn")
# Import LogXide - Sentry integration is automatic!
from logxide import logging
logger = logging.getLogger(__name__)
logger.warning("This will appear in Sentry")
logger.error("This error will be tracked")
```
**Features:**
- **Automatic detection** of Sentry configuration
- **Level filtering** (WARNING and above sent to Sentry)
- **Rich context** including stack traces and custom data
- **Zero configuration** required
## 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/f9/28/41ac64c91aa87170515cb510cfa7e547bca0fff3a83417bdfc037408fa65/logxide-0.1.2.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- **Sentry Integration**: Automatic error tracking with Sentry (optional)\n\n## Quick Start\n\n```python\n# Simple and automatic - no setup needed!\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\nThat's it! LogXide automatically installs itself when imported. No manual setup required.\n\n## Installation\n\n```bash\n# Basic installation\npip install logxide\n\n# With Sentry integration\npip install logxide[sentry]\n\n# Development dependencies\npip install logxide[dev]\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- **[Sentry Integration](docs/sentry.md)** - Automatic error tracking with Sentry\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## Sentry Integration\n\nLogXide includes optional Sentry integration for automatic error tracking:\n\n```python\n# Configure Sentry first\nimport sentry_sdk\nsentry_sdk.init(dsn=\"your-sentry-dsn\")\n\n# Import LogXide - Sentry integration is automatic!\nfrom logxide import logging\n\nlogger = logging.getLogger(__name__)\nlogger.warning(\"This will appear in Sentry\")\nlogger.error(\"This error will be tracked\")\n```\n\n**Features:**\n- **Automatic detection** of Sentry configuration\n- **Level filtering** (WARNING and above sent to Sentry)\n- **Rich context** including stack traces and custom data\n- **Zero configuration** required\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\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "High-performance, Rust-powered drop-in replacement for Python's logging module",
"version": "0.1.2",
"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": "0d2d9491dcf02a8b87efaf85d1efc1845a07059c1eebb55a8983b81dabdb08a7",
"md5": "40f298deac485f58fd76b9b9cd518450",
"sha256": "6ef4c8d0e56e1f3dbacbaca83e8719b5e373e5556d4fe6bb2b15702695a9088e"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "40f298deac485f58fd76b9b9cd518450",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1319092,
"upload_time": "2025-07-31T14:25:53",
"upload_time_iso_8601": "2025-07-31T14:25:53.002452Z",
"url": "https://files.pythonhosted.org/packages/0d/2d/9491dcf02a8b87efaf85d1efc1845a07059c1eebb55a8983b81dabdb08a7/logxide-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "18dfa19657e4e415f21ac5bc72ee09a1e1d4f9497a026b3bd70e80a3b9648522",
"md5": "5ecb5ef89ead3146f158cfac40302eec",
"sha256": "20257b5a1a2d0eee80b063d38da821c4d73cddf2793cdf17bd923730eff6343d"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "5ecb5ef89ead3146f158cfac40302eec",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1272026,
"upload_time": "2025-07-31T14:26:09",
"upload_time_iso_8601": "2025-07-31T14:26:09.286492Z",
"url": "https://files.pythonhosted.org/packages/18/df/a19657e4e415f21ac5bc72ee09a1e1d4f9497a026b3bd70e80a3b9648522/logxide-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "20892abbf57260c4ab6b40d81077b865ec1aab47280784bd7d1de1ac47b2aec6",
"md5": "679910b1c62b058f2f16fcb75091733c",
"sha256": "d8ce2647e881fd1659f0abda6588bce01d19e949dd1b33aac6c58e6f6368b264"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "679910b1c62b058f2f16fcb75091733c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1375475,
"upload_time": "2025-07-31T14:27:01",
"upload_time_iso_8601": "2025-07-31T14:27:01.865097Z",
"url": "https://files.pythonhosted.org/packages/20/89/2abbf57260c4ab6b40d81077b865ec1aab47280784bd7d1de1ac47b2aec6/logxide-0.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d044e5fad588ca39c6084681e5acfef2ed920ae64b4b316aab1c2db9928dd6ff",
"md5": "fc17b868d1a6838185738a5d95aedbbe",
"sha256": "b77ccd25c0b513e27fe73e0ad238db68e8925fb96e46209983cee902610a14b6"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "fc17b868d1a6838185738a5d95aedbbe",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1413938,
"upload_time": "2025-07-31T14:26:27",
"upload_time_iso_8601": "2025-07-31T14:26:27.589247Z",
"url": "https://files.pythonhosted.org/packages/d0/44/e5fad588ca39c6084681e5acfef2ed920ae64b4b316aab1c2db9928dd6ff/logxide-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "23b4f15f096b4a6c70af4f7db941deb356390273eed1505a40c3af524e57f993",
"md5": "4f582854b2d5bfcd9bcef7ca50056052",
"sha256": "9ed97c7e2507f98b6fc6e7e91fc604ffd043c64783131dd830971343b5d6d8ec"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "4f582854b2d5bfcd9bcef7ca50056052",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1494906,
"upload_time": "2025-07-31T14:26:44",
"upload_time_iso_8601": "2025-07-31T14:26:44.222333Z",
"url": "https://files.pythonhosted.org/packages/23/b4/f15f096b4a6c70af4f7db941deb356390273eed1505a40c3af524e57f993/logxide-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e263e17ac2ab8145ba5da90930e0cc3ffbf82471e3d6a935560c459032845990",
"md5": "cc6888180bf0f35465b5d5bedad2dcdc",
"sha256": "6e850e97d24bfdfb2db62e37beb0792f04591cc2456f940a0cafb25015744c83"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "cc6888180bf0f35465b5d5bedad2dcdc",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1364978,
"upload_time": "2025-07-31T14:27:14",
"upload_time_iso_8601": "2025-07-31T14:27:14.538035Z",
"url": "https://files.pythonhosted.org/packages/e2/63/e17ac2ab8145ba5da90930e0cc3ffbf82471e3d6a935560c459032845990/logxide-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d412f5cf810adc73f5872266bff858bcf054683a21f4b5fee4de1e71ba412b70",
"md5": "1530caaa25aa046018ecc05398be455f",
"sha256": "a7ab1542e5126198cd0aa625d60ed6a78678fe5be82980c700060fd8df22e92b"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "1530caaa25aa046018ecc05398be455f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 919746,
"upload_time": "2025-07-31T14:27:49",
"upload_time_iso_8601": "2025-07-31T14:27:49.116946Z",
"url": "https://files.pythonhosted.org/packages/d4/12/f5cf810adc73f5872266bff858bcf054683a21f4b5fee4de1e71ba412b70/logxide-0.1.2-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d46779933101a71339480074dab352e9e1a9b096ab98de5fb2c45fda327572a4",
"md5": "f4f45ba3b9b86ebbc787500ea515968d",
"sha256": "546a3cf8f61ce089009d2f0704cdd54c52b0a3669bba8382971aba03fbdb2ad9"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "f4f45ba3b9b86ebbc787500ea515968d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1000974,
"upload_time": "2025-07-31T14:27:40",
"upload_time_iso_8601": "2025-07-31T14:27:40.571666Z",
"url": "https://files.pythonhosted.org/packages/d4/67/79933101a71339480074dab352e9e1a9b096ab98de5fb2c45fda327572a4/logxide-0.1.2-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "03b5f8dc4db131b0a4737d524c148c3e35a510eae0df66ff563efa77f7b1c05d",
"md5": "be3b1ca352e848fcb597355c0eae12e7",
"sha256": "0133d1a45f058412497d02a41f012caac616e1a5c700a016f8787d6193f2d53b"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "be3b1ca352e848fcb597355c0eae12e7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1227129,
"upload_time": "2025-07-31T14:27:32",
"upload_time_iso_8601": "2025-07-31T14:27:32.978814Z",
"url": "https://files.pythonhosted.org/packages/03/b5/f8dc4db131b0a4737d524c148c3e35a510eae0df66ff563efa77f7b1c05d/logxide-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2bc698f71f7955ab08b3758be049de6c9d5b49e5e4366034f89f56a725dfad94",
"md5": "2614a2610d8456850ec94f348491aaeb",
"sha256": "c1c31b2ed42446445873524aafcbe27b4533013a5626c94dbb1c0c128e7d4f73"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "2614a2610d8456850ec94f348491aaeb",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1165516,
"upload_time": "2025-07-31T14:27:27",
"upload_time_iso_8601": "2025-07-31T14:27:27.721524Z",
"url": "https://files.pythonhosted.org/packages/2b/c6/98f71f7955ab08b3758be049de6c9d5b49e5e4366034f89f56a725dfad94/logxide-0.1.2-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0e8d0e2cab1ca0da54d2c7addd24c3c0eb672cc839a1b56988112a36b5b7ec13",
"md5": "bf31432aa634b127f3c84b5b20747b7a",
"sha256": "ca141319826964d11edc48c2d536f181317c4845567e5ace4bb2a5168d4953b8"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "bf31432aa634b127f3c84b5b20747b7a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1319086,
"upload_time": "2025-07-31T14:25:54",
"upload_time_iso_8601": "2025-07-31T14:25:54.929931Z",
"url": "https://files.pythonhosted.org/packages/0e/8d/0e2cab1ca0da54d2c7addd24c3c0eb672cc839a1b56988112a36b5b7ec13/logxide-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d78b3eee1ce41b15a9b301d658bc324783c646d52ae8526492f147c11d2ca264",
"md5": "8cbfcf58952f04d5c198622095bba887",
"sha256": "3e9fc9de7093893e96cae2c96ffd8b87f8e49aab40e86e2f89ca229f00b7efdc"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "8cbfcf58952f04d5c198622095bba887",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1272272,
"upload_time": "2025-07-31T14:26:11",
"upload_time_iso_8601": "2025-07-31T14:26:11.410470Z",
"url": "https://files.pythonhosted.org/packages/d7/8b/3eee1ce41b15a9b301d658bc324783c646d52ae8526492f147c11d2ca264/logxide-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "39c01ee61855a3a20c5a7de99e5583c02ecadb2d9871b7baa453c85de47aeaa5",
"md5": "88e77ecb545bd76d248fd2918f74edd9",
"sha256": "ca2049a59cc025e440e0ae4626a2dd111fff698f7fa3edaf67e53f06d609bf72"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "88e77ecb545bd76d248fd2918f74edd9",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1374952,
"upload_time": "2025-07-31T14:27:03",
"upload_time_iso_8601": "2025-07-31T14:27:03.639449Z",
"url": "https://files.pythonhosted.org/packages/39/c0/1ee61855a3a20c5a7de99e5583c02ecadb2d9871b7baa453c85de47aeaa5/logxide-0.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "af19a7b31005282b86088eaa58c0d93ffb81e613b3e743828e749890250c62cd",
"md5": "e4c9048004362263955b9603fb7a76b4",
"sha256": "cdc1aac8f61da4f512fd709d4aa6599ef7367b0266f0aa6add64c4365c05534c"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "e4c9048004362263955b9603fb7a76b4",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1414225,
"upload_time": "2025-07-31T14:26:29",
"upload_time_iso_8601": "2025-07-31T14:26:29.520257Z",
"url": "https://files.pythonhosted.org/packages/af/19/a7b31005282b86088eaa58c0d93ffb81e613b3e743828e749890250c62cd/logxide-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7a2819859c1f1ca6fb7ec3cfef654d06f7769175afb058cecf54a308c182145e",
"md5": "fe632ee14bfb9a121caeb3c70ede28ee",
"sha256": "8b452d5d60fa0b3ae38c6418e55254f071e78111365b19928c0d95b68ac646bb"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "fe632ee14bfb9a121caeb3c70ede28ee",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1494162,
"upload_time": "2025-07-31T14:26:45",
"upload_time_iso_8601": "2025-07-31T14:26:45.907399Z",
"url": "https://files.pythonhosted.org/packages/7a/28/19859c1f1ca6fb7ec3cfef654d06f7769175afb058cecf54a308c182145e/logxide-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cca4a71399ddc222e88f5923027d641254bc089faefcb4e5b271a9c8ba00097c",
"md5": "61d4308da25a3126c20dc0836a3bce44",
"sha256": "53cd2a36474ee232821e995e638f57728986dcdb7c4c580df7a0d9ac1b43efd4"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "61d4308da25a3126c20dc0836a3bce44",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1364897,
"upload_time": "2025-07-31T14:27:16",
"upload_time_iso_8601": "2025-07-31T14:27:16.886748Z",
"url": "https://files.pythonhosted.org/packages/cc/a4/a71399ddc222e88f5923027d641254bc089faefcb4e5b271a9c8ba00097c/logxide-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "192ea668b9ea870ee0b7c3ee22e2853f082f116d7235c527daf139f5d3eac45f",
"md5": "220ab6d4d1d7473e5932d90ec1bf3f45",
"sha256": "a7c24869ae2c3ab596052c897ac81195921c9fe84e29d69c6ba7c03ccb3598ad"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "220ab6d4d1d7473e5932d90ec1bf3f45",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 919725,
"upload_time": "2025-07-31T14:27:51",
"upload_time_iso_8601": "2025-07-31T14:27:51.465341Z",
"url": "https://files.pythonhosted.org/packages/19/2e/a668b9ea870ee0b7c3ee22e2853f082f116d7235c527daf139f5d3eac45f/logxide-0.1.2-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "12666aaa0a3d6681ec949c8dd04686ad133e0d8a813a2fda850e3e9017a72aa5",
"md5": "2f743cdc0e09523f8ef97f7e598050d1",
"sha256": "bcf41c2388f8342e2a1f2fabbe4d8d2cf663b4024e9de9dbfa1cd4c8c82692c9"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "2f743cdc0e09523f8ef97f7e598050d1",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1000950,
"upload_time": "2025-07-31T14:27:42",
"upload_time_iso_8601": "2025-07-31T14:27:42.243202Z",
"url": "https://files.pythonhosted.org/packages/12/66/6aaa0a3d6681ec949c8dd04686ad133e0d8a813a2fda850e3e9017a72aa5/logxide-0.1.2-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ecaf43da04ce5057741a30c6a96df0e35f44b6df1b4e011d4270821c7452435f",
"md5": "5a85761ef828ebc2fc6d3897c54a21aa",
"sha256": "2fb1ebb9271911ead5a9d7a93c4670d0b8fac6485e82f1374f7a3f037f65c220"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "5a85761ef828ebc2fc6d3897c54a21aa",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1220259,
"upload_time": "2025-07-31T14:27:34",
"upload_time_iso_8601": "2025-07-31T14:27:34.603989Z",
"url": "https://files.pythonhosted.org/packages/ec/af/43da04ce5057741a30c6a96df0e35f44b6df1b4e011d4270821c7452435f/logxide-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "46b8920a50fb275822617447e255041d2963543c465fa47df7c2bd0feac8c98b",
"md5": "c42143bd61c55c12664fb15dd84b83d7",
"sha256": "a01b3575cbc9980cc28538dd652d93ebafd4a41f3e6fbe5c732fbfddc51120da"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "c42143bd61c55c12664fb15dd84b83d7",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1161885,
"upload_time": "2025-07-31T14:27:29",
"upload_time_iso_8601": "2025-07-31T14:27:29.596499Z",
"url": "https://files.pythonhosted.org/packages/46/b8/920a50fb275822617447e255041d2963543c465fa47df7c2bd0feac8c98b/logxide-0.1.2-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2d28b8e87941144a3f6dcf235c0822f298e1f811740a7440c5d206378396a9a4",
"md5": "915e3dbf81c39ebb294b3cade5dce3f4",
"sha256": "bb329506937679b88a3bb1ccc622ab9d5767567aea4602e91eeba40803d83ca8"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "915e3dbf81c39ebb294b3cade5dce3f4",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1320366,
"upload_time": "2025-07-31T14:25:56",
"upload_time_iso_8601": "2025-07-31T14:25:56.756586Z",
"url": "https://files.pythonhosted.org/packages/2d/28/b8e87941144a3f6dcf235c0822f298e1f811740a7440c5d206378396a9a4/logxide-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f5711bb7a626c189c046a1cb4ed4c0eb94714765e85b38b5e7deb565602efffc",
"md5": "3ae0b4346fc03826e8b1d58c169f627d",
"sha256": "0f6ef17fdb164ade1d4bf5ec4c1a56ef6e6ca2c8a0cd33ddbce87fd0659102bc"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "3ae0b4346fc03826e8b1d58c169f627d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1273756,
"upload_time": "2025-07-31T14:26:13",
"upload_time_iso_8601": "2025-07-31T14:26:13.105480Z",
"url": "https://files.pythonhosted.org/packages/f5/71/1bb7a626c189c046a1cb4ed4c0eb94714765e85b38b5e7deb565602efffc/logxide-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0e704eb7dad57dfff888fff61fdf9cea5b27ecda06ea5f65a1a134d1364015a2",
"md5": "8fe7da273e373246e0b4ca87024ac5fd",
"sha256": "2027432adc7c8b82fd5ed7212fe9072e7b6e2bc64600540096aaf4f084902153"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "8fe7da273e373246e0b4ca87024ac5fd",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1376256,
"upload_time": "2025-07-31T14:27:05",
"upload_time_iso_8601": "2025-07-31T14:27:05.294545Z",
"url": "https://files.pythonhosted.org/packages/0e/70/4eb7dad57dfff888fff61fdf9cea5b27ecda06ea5f65a1a134d1364015a2/logxide-0.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c4441c0281cb030d0c26fe23b5981a650d35ebdf5f6b5a04f6ee285727c12dc5",
"md5": "bc20d04b3c83de00ea7e45729dfab9a3",
"sha256": "ea9982045a071ccb223fb127d30a2cfb075d34cde2588dbd534e165b1f63341f"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "bc20d04b3c83de00ea7e45729dfab9a3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1413953,
"upload_time": "2025-07-31T14:26:31",
"upload_time_iso_8601": "2025-07-31T14:26:31.197679Z",
"url": "https://files.pythonhosted.org/packages/c4/44/1c0281cb030d0c26fe23b5981a650d35ebdf5f6b5a04f6ee285727c12dc5/logxide-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fbd0a7685719bb668570255fd2f7e68618a047b4d0c34aa0af0fb6727d8c071e",
"md5": "893827c4f43b0d58d0f24d3f508e73bb",
"sha256": "f8e55f467ddfb2b8dde2fef8a6a232a8df9586f231e6750b19bb7f2947b4e361"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "893827c4f43b0d58d0f24d3f508e73bb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1490197,
"upload_time": "2025-07-31T14:26:48",
"upload_time_iso_8601": "2025-07-31T14:26:48.275482Z",
"url": "https://files.pythonhosted.org/packages/fb/d0/a7685719bb668570255fd2f7e68618a047b4d0c34aa0af0fb6727d8c071e/logxide-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f9c25fc886344af667d6b1ca01df300b6a9d838df01a2cee41453bb85ecb96af",
"md5": "0d7e3d379fe7c373c69bac69ed150a43",
"sha256": "0fd4ab12c7b9452e7e4452f6ee23f7ee56344386ed4a0e64d03347c0e95597b6"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "0d7e3d379fe7c373c69bac69ed150a43",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1365682,
"upload_time": "2025-07-31T14:27:18",
"upload_time_iso_8601": "2025-07-31T14:27:18.861745Z",
"url": "https://files.pythonhosted.org/packages/f9/c2/5fc886344af667d6b1ca01df300b6a9d838df01a2cee41453bb85ecb96af/logxide-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bd59be64411bd87e773d4624f8b4f95266c9eeae4b904a972d25bc5083ca9249",
"md5": "6582ec2e66a9a072a8a5eac750257005",
"sha256": "253da7f2ec68969ffdd1aef537ad4f137b16453339bf08af31804a58e02e0f83"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "6582ec2e66a9a072a8a5eac750257005",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 920549,
"upload_time": "2025-07-31T14:27:53",
"upload_time_iso_8601": "2025-07-31T14:27:53.058713Z",
"url": "https://files.pythonhosted.org/packages/bd/59/be64411bd87e773d4624f8b4f95266c9eeae4b904a972d25bc5083ca9249/logxide-0.1.2-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "466c7563cd06af55377bc20e06f8b270ff8d8f49be22913c4d220bbaf8a1d030",
"md5": "6d15d063b16292a73dfc1312523857f0",
"sha256": "0c8ffb7838f92c9ff781dd8f65190f439277db7b45cd3aab7a54665ecbef3f15"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "6d15d063b16292a73dfc1312523857f0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1001983,
"upload_time": "2025-07-31T14:27:43",
"upload_time_iso_8601": "2025-07-31T14:27:43.895616Z",
"url": "https://files.pythonhosted.org/packages/46/6c/7563cd06af55377bc20e06f8b270ff8d8f49be22913c4d220bbaf8a1d030/logxide-0.1.2-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "800633da96a1d329bb27f36690764f9f09589dece6f98a446cb5609c972012a8",
"md5": "4fb563c2a54a5df9057752dbfed4714d",
"sha256": "86e0b72b4bde3b6dcd53fecb2e45f4112558031da29a5668f981ec0789fa75fb"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "4fb563c2a54a5df9057752dbfed4714d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1220323,
"upload_time": "2025-07-31T14:27:36",
"upload_time_iso_8601": "2025-07-31T14:27:36.446010Z",
"url": "https://files.pythonhosted.org/packages/80/06/33da96a1d329bb27f36690764f9f09589dece6f98a446cb5609c972012a8/logxide-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5ec226d4775bc7ae2277b5ba9f1b57e18503a772757a924f9d53e4da593ef169",
"md5": "0897d3d0bf4d2a9c74da796fff676884",
"sha256": "4d11bb03fbafdf1906dddad909fb6bd28fc4faa2138ff6a2e8b64e6db56a2fec"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "0897d3d0bf4d2a9c74da796fff676884",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1161751,
"upload_time": "2025-07-31T14:27:31",
"upload_time_iso_8601": "2025-07-31T14:27:31.255996Z",
"url": "https://files.pythonhosted.org/packages/5e/c2/26d4775bc7ae2277b5ba9f1b57e18503a772757a924f9d53e4da593ef169/logxide-0.1.2-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3f2f8c8f5bcabca8d33a768e438452a7c688e9dfcb0bcd61a92dfdbd6614208e",
"md5": "fbd910b7e62c933f9ddceb41ca1e42ed",
"sha256": "298f91abb91fae31fe64d301d1d3de460100a4cef5e50f396b965a8fe2d9545b"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "fbd910b7e62c933f9ddceb41ca1e42ed",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1319629,
"upload_time": "2025-07-31T14:25:58",
"upload_time_iso_8601": "2025-07-31T14:25:58.375706Z",
"url": "https://files.pythonhosted.org/packages/3f/2f/8c8f5bcabca8d33a768e438452a7c688e9dfcb0bcd61a92dfdbd6614208e/logxide-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fda4eb0f76646058f9983bd944ab0e42c7405f37565ebef90b59483d55a5c707",
"md5": "72f8ddcdd14d40730049300e37bd2a69",
"sha256": "d1655b8a9075c77f2468e875996fe0bff7d4a8daa3fa491cac1a78cc34873efb"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "72f8ddcdd14d40730049300e37bd2a69",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1273820,
"upload_time": "2025-07-31T14:26:14",
"upload_time_iso_8601": "2025-07-31T14:26:14.715158Z",
"url": "https://files.pythonhosted.org/packages/fd/a4/eb0f76646058f9983bd944ab0e42c7405f37565ebef90b59483d55a5c707/logxide-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c2a6661e6885ada54ae9bc7ec6008e8162bd95c3377ab0a9333c2c3d3ffa5769",
"md5": "fec3fe7f9e965daf163419cbc51113ed",
"sha256": "198bc4dc3a91717e135625ca2126b26ab0fbd5404fbe996afd8e4ade9e13c889"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "fec3fe7f9e965daf163419cbc51113ed",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1376103,
"upload_time": "2025-07-31T14:27:07",
"upload_time_iso_8601": "2025-07-31T14:27:07.327801Z",
"url": "https://files.pythonhosted.org/packages/c2/a6/661e6885ada54ae9bc7ec6008e8162bd95c3377ab0a9333c2c3d3ffa5769/logxide-0.1.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3927687fbe746681c3113fa84728b7b98a6014dbf11147b193ad8df84e6f0731",
"md5": "2c499a5f49d71b1279173bc550bf9be7",
"sha256": "fc4e01c638b0747aba076278fb08cda10c976e6fbc2898a9e98d21eb724fd667"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "2c499a5f49d71b1279173bc550bf9be7",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1413696,
"upload_time": "2025-07-31T14:26:32",
"upload_time_iso_8601": "2025-07-31T14:26:32.936738Z",
"url": "https://files.pythonhosted.org/packages/39/27/687fbe746681c3113fa84728b7b98a6014dbf11147b193ad8df84e6f0731/logxide-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a93582d745309dad1307c5d46d36bd813bcb400c8aad255f0d3212457fbfb8e1",
"md5": "1f37072f11d7301154189d72309e8bd9",
"sha256": "078a8ac0506c672437d30ba54f6bcaa239d9dae43f48699bb5c2f8ed4ab6c64f"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "1f37072f11d7301154189d72309e8bd9",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1489182,
"upload_time": "2025-07-31T14:26:50",
"upload_time_iso_8601": "2025-07-31T14:26:50.676688Z",
"url": "https://files.pythonhosted.org/packages/a9/35/82d745309dad1307c5d46d36bd813bcb400c8aad255f0d3212457fbfb8e1/logxide-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "74cfdf23a5f37bd79dc98baaccfa51f971499dc2205d236f977c2008e8d7ca40",
"md5": "08458013629876393cf940f4e93b86bc",
"sha256": "5f2c783ac84c0366f7ad53aec6831b3e463f5af82a573fd7756a8b1cc91e0f06"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "08458013629876393cf940f4e93b86bc",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1365410,
"upload_time": "2025-07-31T14:27:20",
"upload_time_iso_8601": "2025-07-31T14:27:20.630052Z",
"url": "https://files.pythonhosted.org/packages/74/cf/df23a5f37bd79dc98baaccfa51f971499dc2205d236f977c2008e8d7ca40/logxide-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "22e88f4ad0e8b1a637627f99c25895c904a1a9f701433ce3038b7bc249a4ba32",
"md5": "7a336f9d0ed4284a72595fca90e5fd46",
"sha256": "594ca63ec69f9525012e3eae26744ddd3ce2a19ac977195c3313a5540d728aab"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "7a336f9d0ed4284a72595fca90e5fd46",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1319297,
"upload_time": "2025-07-31T14:26:00",
"upload_time_iso_8601": "2025-07-31T14:26:00.101679Z",
"url": "https://files.pythonhosted.org/packages/22/e8/8f4ad0e8b1a637627f99c25895c904a1a9f701433ce3038b7bc249a4ba32/logxide-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ecc2876eab6adc0f64e8dc5f1a5e133e52119cf3a40ca9e5996fa2f6cb6a919d",
"md5": "3a9f9ffb2a546802c8f8115aa9129d46",
"sha256": "da536d2e3559c9895fa3b13ce08e391a100b05bb91251882e4561e773600cb29"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "3a9f9ffb2a546802c8f8115aa9129d46",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1273724,
"upload_time": "2025-07-31T14:26:16",
"upload_time_iso_8601": "2025-07-31T14:26:16.452206Z",
"url": "https://files.pythonhosted.org/packages/ec/c2/876eab6adc0f64e8dc5f1a5e133e52119cf3a40ca9e5996fa2f6cb6a919d/logxide-0.1.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4b1d548c8108fa5f0b47527867e6cd63fac4d700393fcdc2c7bd175a3fafba9b",
"md5": "bce435de7d71c69b1d5c1801895c47d3",
"sha256": "a369b4e022c7a44e4aa5b38e8205a1acd072f0cc783e2f8fd416500c51b6e34b"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "bce435de7d71c69b1d5c1801895c47d3",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1414257,
"upload_time": "2025-07-31T14:26:35",
"upload_time_iso_8601": "2025-07-31T14:26:35.311537Z",
"url": "https://files.pythonhosted.org/packages/4b/1d/548c8108fa5f0b47527867e6cd63fac4d700393fcdc2c7bd175a3fafba9b/logxide-0.1.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2c9c71d6bd8968cedf6269de9cc780743a812e73a002b710ea1f5d948481dcd4",
"md5": "2188a6271241171fafe45689c78ab076",
"sha256": "5f66142f3e0d45b1bbe79b24df6409137b3d5278c140bbfd08628c3a663cd6bb"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "2188a6271241171fafe45689c78ab076",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1485153,
"upload_time": "2025-07-31T14:26:52",
"upload_time_iso_8601": "2025-07-31T14:26:52.432048Z",
"url": "https://files.pythonhosted.org/packages/2c/9c/71d6bd8968cedf6269de9cc780743a812e73a002b710ea1f5d948481dcd4/logxide-0.1.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6834a4ddd07ea9702d435b94c0b423e0b5784681a052d581e7ae7c3085e61984",
"md5": "053cd7f24c800eb333494edc3119d3c0",
"sha256": "2db664403074305d959bbc1d0f48a4998b9755f4a881ef7642dba6cfe4d55714"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "053cd7f24c800eb333494edc3119d3c0",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 920515,
"upload_time": "2025-07-31T14:27:54",
"upload_time_iso_8601": "2025-07-31T14:27:54.616709Z",
"url": "https://files.pythonhosted.org/packages/68/34/a4ddd07ea9702d435b94c0b423e0b5784681a052d581e7ae7c3085e61984/logxide-0.1.2-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5c4550105827af030e91fbb6ee8f3f89fe91859e1051cbb6e7403d4a7a5b7826",
"md5": "e75c05bd8355befb128d17587e7a1a2d",
"sha256": "7599046d0a6953f767817f54828ba2b2f577bb5075e9f5c797f488dfab225fad"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "e75c05bd8355befb128d17587e7a1a2d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1001645,
"upload_time": "2025-07-31T14:27:45",
"upload_time_iso_8601": "2025-07-31T14:27:45.983145Z",
"url": "https://files.pythonhosted.org/packages/5c/45/50105827af030e91fbb6ee8f3f89fe91859e1051cbb6e7403d4a7a5b7826/logxide-0.1.2-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "505c842f9ed4eb58ee568f7c08e891d99c3c0b30ac377d26a1a8775b2325adcb",
"md5": "49871f4d6b78e87d4b658f6e456797c7",
"sha256": "c650e738a5700f92ae93e72fbd1d0320547c566a0f576a05f63fb589c8350a3d"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "49871f4d6b78e87d4b658f6e456797c7",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1319941,
"upload_time": "2025-07-31T14:26:02",
"upload_time_iso_8601": "2025-07-31T14:26:02.107469Z",
"url": "https://files.pythonhosted.org/packages/50/5c/842f9ed4eb58ee568f7c08e891d99c3c0b30ac377d26a1a8775b2325adcb/logxide-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "796df455e846761c1ce2c4eecb3bfc27cddef4fb7566c952959c96dbd3c885c3",
"md5": "1b72bea06d41313da261cf97f4856e57",
"sha256": "08eccaea34453ec5b61eb3807d6a963a74d2366d97bffb8a89f16235868984b2"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "1b72bea06d41313da261cf97f4856e57",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1271694,
"upload_time": "2025-07-31T14:26:18",
"upload_time_iso_8601": "2025-07-31T14:26:18.110192Z",
"url": "https://files.pythonhosted.org/packages/79/6d/f455e846761c1ce2c4eecb3bfc27cddef4fb7566c952959c96dbd3c885c3/logxide-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9181debecaae06e7770b43c79671fbf62c2cf6169a67dce2c5b81fde77a5e347",
"md5": "11ee30120872f7e41aa922dd40659006",
"sha256": "c5a2b9afd32d073b2009c321f924c1b203503812ba2b1ae807309b3cd3146e86"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "11ee30120872f7e41aa922dd40659006",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1375157,
"upload_time": "2025-07-31T14:27:09",
"upload_time_iso_8601": "2025-07-31T14:27:09.233246Z",
"url": "https://files.pythonhosted.org/packages/91/81/debecaae06e7770b43c79671fbf62c2cf6169a67dce2c5b81fde77a5e347/logxide-0.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9cf02218aac8cfbfd4bcf274ea8edb1f778b5027aa5c26f032e9466b6a51f1aa",
"md5": "eb2fdef1644e3532e76a519dfc837ab2",
"sha256": "7b69debe193e0bbb8fb0b05a367dd88cee21fca447eaf781e11375660b83df94"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "eb2fdef1644e3532e76a519dfc837ab2",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1415021,
"upload_time": "2025-07-31T14:26:37",
"upload_time_iso_8601": "2025-07-31T14:26:37.001068Z",
"url": "https://files.pythonhosted.org/packages/9c/f0/2218aac8cfbfd4bcf274ea8edb1f778b5027aa5c26f032e9466b6a51f1aa/logxide-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dbecafe204728742e8f7044884bf15d631102363fabc484b5f6537089c227362",
"md5": "e7da67df21464b346e3dcb98bb79f2bd",
"sha256": "8e74694a295090512b89b6d4f26004fde41940a5b8776139bf4fd66eacb34044"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "e7da67df21464b346e3dcb98bb79f2bd",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1495033,
"upload_time": "2025-07-31T14:26:54",
"upload_time_iso_8601": "2025-07-31T14:26:54.436919Z",
"url": "https://files.pythonhosted.org/packages/db/ec/afe204728742e8f7044884bf15d631102363fabc484b5f6537089c227362/logxide-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4de2e54f06cde3ea4009a0feb84b91ec864c301d7a5683cf86a4c0c04d73eaa6",
"md5": "23ae464c04740232744b06265082c353",
"sha256": "6391b0f9c895514c3092f1b3a91adf0e5840255cada74f021967af11ce779992"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "23ae464c04740232744b06265082c353",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1365769,
"upload_time": "2025-07-31T14:27:22",
"upload_time_iso_8601": "2025-07-31T14:27:22.693163Z",
"url": "https://files.pythonhosted.org/packages/4d/e2/e54f06cde3ea4009a0feb84b91ec864c301d7a5683cf86a4c0c04d73eaa6/logxide-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e326b44e398efe317d9465337c2690a873109561ed1975103007b1ee6e667ec9",
"md5": "8fd0c2665fc22fc8c51a0a7f35bcaa17",
"sha256": "baeea6e70c4eab6f04a19e4418a7405a19903d36e51d02648fdaf767b66f6d57"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "8fd0c2665fc22fc8c51a0a7f35bcaa17",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 919926,
"upload_time": "2025-07-31T14:27:56",
"upload_time_iso_8601": "2025-07-31T14:27:56.261294Z",
"url": "https://files.pythonhosted.org/packages/e3/26/b44e398efe317d9465337c2690a873109561ed1975103007b1ee6e667ec9/logxide-0.1.2-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2ab4e69b7be49d744039640f933c930761c8bc330023db34e9e1bd132d274ba9",
"md5": "7a4ce601db6fd0258333be101e26ac25",
"sha256": "308640d64213d0723e266d3a5608b57d7addea2c1989284077536a29c5925041"
},
"downloads": -1,
"filename": "logxide-0.1.2-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "7a4ce601db6fd0258333be101e26ac25",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1001701,
"upload_time": "2025-07-31T14:27:47",
"upload_time_iso_8601": "2025-07-31T14:27:47.623392Z",
"url": "https://files.pythonhosted.org/packages/2a/b4/e69b7be49d744039640f933c930761c8bc330023db34e9e1bd132d274ba9/logxide-0.1.2-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4931a3229e24cbbe6f5e8d0344a0abe704cff23e50a9b0f519926248bd116b11",
"md5": "e49c069ca964d8bdac5aa89a9600cb46",
"sha256": "a3af83ae11bbd783dcfac8b415d24e91358b2dbd1f3abcfee28ed65ec5d1a8df"
},
"downloads": -1,
"filename": "logxide-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "e49c069ca964d8bdac5aa89a9600cb46",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 1321159,
"upload_time": "2025-07-31T14:26:03",
"upload_time_iso_8601": "2025-07-31T14:26:03.909139Z",
"url": "https://files.pythonhosted.org/packages/49/31/a3229e24cbbe6f5e8d0344a0abe704cff23e50a9b0f519926248bd116b11/logxide-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0be5ae563901fc7652dacc6eb5ace13391685ecff066385791db482213702a08",
"md5": "e69f1245bc037a234d5d8b7bd6a288fa",
"sha256": "e9e6f9adb2aac4991e660811cbee0498f3a0b8f2014e86325c402815bd388e4c"
},
"downloads": -1,
"filename": "logxide-0.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "e69f1245bc037a234d5d8b7bd6a288fa",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 1274440,
"upload_time": "2025-07-31T14:26:20",
"upload_time_iso_8601": "2025-07-31T14:26:20.065534Z",
"url": "https://files.pythonhosted.org/packages/0b/e5/ae563901fc7652dacc6eb5ace13391685ecff066385791db482213702a08/logxide-0.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c100888ed067135ae15e15c04cb5a8a33a7be961c7742ea78c23308a89dab27b",
"md5": "703a290a7aae042bde8a26df0bca6ad2",
"sha256": "689d83151fb6005a957bee39b256c36ef302e5c95f76de3b2ff0bc3875e279f4"
},
"downloads": -1,
"filename": "logxide-0.1.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "703a290a7aae042bde8a26df0bca6ad2",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 1377286,
"upload_time": "2025-07-31T14:27:11",
"upload_time_iso_8601": "2025-07-31T14:27:11.194957Z",
"url": "https://files.pythonhosted.org/packages/c1/00/888ed067135ae15e15c04cb5a8a33a7be961c7742ea78c23308a89dab27b/logxide-0.1.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cb93cc75a3e0523893eb9949bc138338ca4c34a1d660694d6934bd29d56778d0",
"md5": "6e92f1a10b3885b5248dd3bf11912306",
"sha256": "baa36da391018ac80b5f6d8ee580c58a159632ac872629a3d3bbdbcc221cbcb6"
},
"downloads": -1,
"filename": "logxide-0.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "6e92f1a10b3885b5248dd3bf11912306",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 1415661,
"upload_time": "2025-07-31T14:26:38",
"upload_time_iso_8601": "2025-07-31T14:26:38.576543Z",
"url": "https://files.pythonhosted.org/packages/cb/93/cc75a3e0523893eb9949bc138338ca4c34a1d660694d6934bd29d56778d0/logxide-0.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "98eaf3d9cb0bdf03bec446dbf0df38adc6d2958390d9d7af631d0df16962844c",
"md5": "a077608ef3c22ea4a4d207b2d3731f58",
"sha256": "e96b4371c33431ed3c5224d38849d7b0dedcf24f12c8d91df8b5b076c85ab65c"
},
"downloads": -1,
"filename": "logxide-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "a077608ef3c22ea4a4d207b2d3731f58",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 1495104,
"upload_time": "2025-07-31T14:26:56",
"upload_time_iso_8601": "2025-07-31T14:26:56.360979Z",
"url": "https://files.pythonhosted.org/packages/98/ea/f3d9cb0bdf03bec446dbf0df38adc6d2958390d9d7af631d0df16962844c/logxide-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7ea451a051b7e1ddca29600b47167cae4634050c4b112b51bc0d83f4512102d3",
"md5": "9882c6daa0e5f5769b4067617f637e3a",
"sha256": "863abaa4a5f09202624a96f2198aa340d73311c63bf47c7030513beb19d1e083"
},
"downloads": -1,
"filename": "logxide-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "9882c6daa0e5f5769b4067617f637e3a",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 1366525,
"upload_time": "2025-07-31T14:27:24",
"upload_time_iso_8601": "2025-07-31T14:27:24.366995Z",
"url": "https://files.pythonhosted.org/packages/7e/a4/51a051b7e1ddca29600b47167cae4634050c4b112b51bc0d83f4512102d3/logxide-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bbfea60eb072f2c857029a1c6c6a90766b64ffdcbbec4cde7336bb08b4661c82",
"md5": "8d357e53aa0ebf620c591e9c10ee7fb9",
"sha256": "257a773576986d82cf3b55cf5e55e179c7fb7fb5000f27b5eb55fcfbb576f94f"
},
"downloads": -1,
"filename": "logxide-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "8d357e53aa0ebf620c591e9c10ee7fb9",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 1321129,
"upload_time": "2025-07-31T14:26:05",
"upload_time_iso_8601": "2025-07-31T14:26:05.938711Z",
"url": "https://files.pythonhosted.org/packages/bb/fe/a60eb072f2c857029a1c6c6a90766b64ffdcbbec4cde7336bb08b4661c82/logxide-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2f70a83888f48347ff451e5df2f56f25ee585b337cd2b9253aaf299097d35801",
"md5": "1fcdf42c0eacd45a124d10f0f9e562a4",
"sha256": "c3adcb4171a1aeadeb6ce5f439abd3c810ed4ef405ca1ffe80326e2f42b70bee"
},
"downloads": -1,
"filename": "logxide-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "1fcdf42c0eacd45a124d10f0f9e562a4",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 1274482,
"upload_time": "2025-07-31T14:26:21",
"upload_time_iso_8601": "2025-07-31T14:26:21.694317Z",
"url": "https://files.pythonhosted.org/packages/2f/70/a83888f48347ff451e5df2f56f25ee585b337cd2b9253aaf299097d35801/logxide-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "02efb9a31f211321b9c9952dd096914e80d6414b35b9a5fa8a107cf31f9b7bed",
"md5": "a1543b7b085d991e211d0df8121187a9",
"sha256": "892931636a3332386e5f381773c932b10d8616d24cf0a011f95b593458049241"
},
"downloads": -1,
"filename": "logxide-0.1.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "a1543b7b085d991e211d0df8121187a9",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 1377582,
"upload_time": "2025-07-31T14:27:12",
"upload_time_iso_8601": "2025-07-31T14:27:12.947575Z",
"url": "https://files.pythonhosted.org/packages/02/ef/b9a31f211321b9c9952dd096914e80d6414b35b9a5fa8a107cf31f9b7bed/logxide-0.1.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c9554ef7adb62876932fa532c27d39439eeb5f10290b8fde0ed78cf3c8c969d4",
"md5": "dcc1c92c58ac683faf393420d502dde9",
"sha256": "f75255e68750a4e65d9ea2e4d49ee4f8b79b5d25f8c5a067957c109e683f10e1"
},
"downloads": -1,
"filename": "logxide-0.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "dcc1c92c58ac683faf393420d502dde9",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 1415700,
"upload_time": "2025-07-31T14:26:40",
"upload_time_iso_8601": "2025-07-31T14:26:40.538574Z",
"url": "https://files.pythonhosted.org/packages/c9/55/4ef7adb62876932fa532c27d39439eeb5f10290b8fde0ed78cf3c8c969d4/logxide-0.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "38c53374befa2b5f043051c53abf866b94832aa00d5fc2b3d0dc74e482efecf3",
"md5": "365d1247fca7c6d2716f2590b37ed170",
"sha256": "2287a75cba9290389162382f4f90a3df3b60b7ea677cd32de9035e38c297c179"
},
"downloads": -1,
"filename": "logxide-0.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "365d1247fca7c6d2716f2590b37ed170",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 1494281,
"upload_time": "2025-07-31T14:26:58",
"upload_time_iso_8601": "2025-07-31T14:26:58.145282Z",
"url": "https://files.pythonhosted.org/packages/38/c5/3374befa2b5f043051c53abf866b94832aa00d5fc2b3d0dc74e482efecf3/logxide-0.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "19f55a80ef2ef9786d7b97a0bb6efa180b1643cb303e5929361557c421089eed",
"md5": "58404038e325d022675e7f7680f109be",
"sha256": "0025d037f6ce54e00197d8d854382e2b87ff2018664745849b9686338bb3da42"
},
"downloads": -1,
"filename": "logxide-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "58404038e325d022675e7f7680f109be",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 1366532,
"upload_time": "2025-07-31T14:27:26",
"upload_time_iso_8601": "2025-07-31T14:27:26.114584Z",
"url": "https://files.pythonhosted.org/packages/19/f5/5a80ef2ef9786d7b97a0bb6efa180b1643cb303e5929361557c421089eed/logxide-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "eede76d4b48d1ab9f387773d3ad419528c50fea7f3499a6c139c7f49b46b8b41",
"md5": "e43248264fd6b2456c36d49a3889cff3",
"sha256": "debf8b95aaba2b160ccc2696c0eb698e0ff7af0b784ef1e33d1d63ca67afd4e4"
},
"downloads": -1,
"filename": "logxide-0.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "e43248264fd6b2456c36d49a3889cff3",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 1321745,
"upload_time": "2025-07-31T14:26:07",
"upload_time_iso_8601": "2025-07-31T14:26:07.600862Z",
"url": "https://files.pythonhosted.org/packages/ee/de/76d4b48d1ab9f387773d3ad419528c50fea7f3499a6c139c7f49b46b8b41/logxide-0.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "145940e05ff19411ded5df24763249d71c1d9661315b08b0dce63a43f0e215ad",
"md5": "7c9159f1e36f4ad12af69455af42898d",
"sha256": "10b4e8dfd0aa855937f8c42412b78a09b96c113d5805f6437fd804d154b5d0dc"
},
"downloads": -1,
"filename": "logxide-0.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "7c9159f1e36f4ad12af69455af42898d",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 1274640,
"upload_time": "2025-07-31T14:26:25",
"upload_time_iso_8601": "2025-07-31T14:26:25.913897Z",
"url": "https://files.pythonhosted.org/packages/14/59/40e05ff19411ded5df24763249d71c1d9661315b08b0dce63a43f0e215ad/logxide-0.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "31b949b7c06eefd8eeb4fcf34e763dce62d93a4eb15d4c3a29abc05c9d491a4d",
"md5": "ba426009486c1bd1292fa5c8b4e2e793",
"sha256": "34fdd24d273f747fb7993b0510d16d6b9866e1fdfa0984c4951d0a2558f2fbae"
},
"downloads": -1,
"filename": "logxide-0.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "ba426009486c1bd1292fa5c8b4e2e793",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 1416700,
"upload_time": "2025-07-31T14:26:42",
"upload_time_iso_8601": "2025-07-31T14:26:42.156487Z",
"url": "https://files.pythonhosted.org/packages/31/b9/49b7c06eefd8eeb4fcf34e763dce62d93a4eb15d4c3a29abc05c9d491a4d/logxide-0.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "43aa90a1e5f93c03929ba5d51f5585847e5c66f4b8804f15b0edd5adbb36875b",
"md5": "2dbef959cc84195bcd2392bbae42bb3e",
"sha256": "208e22accbd7fceb4374e3de38961fe8c901afe43b0e27a6eb8b12e8912e1ae3"
},
"downloads": -1,
"filename": "logxide-0.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "2dbef959cc84195bcd2392bbae42bb3e",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 1497323,
"upload_time": "2025-07-31T14:26:59",
"upload_time_iso_8601": "2025-07-31T14:26:59.823416Z",
"url": "https://files.pythonhosted.org/packages/43/aa/90a1e5f93c03929ba5d51f5585847e5c66f4b8804f15b0edd5adbb36875b/logxide-0.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f92841ac64c91aa87170515cb510cfa7e547bca0fff3a83417bdfc037408fa65",
"md5": "a2ebe6e44998c6bde3f890105d49172b",
"sha256": "866cba639bd1b7d642c6efe8d301ea0afd38f147e40eec6b6e2740306c3600cc"
},
"downloads": -1,
"filename": "logxide-0.1.2.tar.gz",
"has_sig": false,
"md5_digest": "a2ebe6e44998c6bde3f890105d49172b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 226648,
"upload_time": "2025-07-31T14:27:38",
"upload_time_iso_8601": "2025-07-31T14:27:38.183452Z",
"url": "https://files.pythonhosted.org/packages/f9/28/41ac64c91aa87170515cb510cfa7e547bca0fff3a83417bdfc037408fa65/logxide-0.1.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-31 14:27:38",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "Indosaram",
"github_project": "logxide",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "logxide"
}