Skip to main content

TXC (Text based Compressor) 🚀

Version Python License Benchmark

Enterprise-Grade Compression Technology Redefining Performance Boundaries

🏆 Executive Summary

TXC represents a quantum leap in compression technology, delivering unprecedented efficiency gains for text and log data compression. This token-based architecture achieves what traditional compressors cannot: near-theoretical compression limits with minimal computational overhead.

🎯 Key Breakthrough Performance (200MB Dataset)

Metric TXC Best Competitor Advantage Overall
Compressed Size 16.10 MB 27.72 MB 41.9% smaller -183.90MB
Compression Ratio 8.05% 13.86% -5.8% -92% 🏆
Processing Time 12.81s 20.37s 37.1% faster

📊 Comprehensive Benchmark Analysis (200 MB Production Log File)

Methodology: Independent testing on 200MB of real-world log data across industry-standard compressors.

Algorithm Compressed Size (MB) Compression Ratio Compression Time
🏆 TXC 16.10 8.05% 12.81s
ZIP 42.71 21.36% 3.08s
Gzip 40.50 20.25% 9.95s
Bzip2 27.72 13.86% 20.37s
LZMA 30.74 15.37% 117.76s
Zstd 40.43 20.22% 0.84s
LZ4 64.79 32.39% 0.77s

TXC achieves the smallest compressed size at 16.10 MB (8.05% of the original) with a moderate compression time of 12.81 s, outperforming all other tested algorithms in compression efficiency.


🔬 Technical Performance Analysis

Computational Efficiency

Despite the dramatic compression improvements, TXC maintains exceptional speed, completing the 200MB compression in just 12.81 seconds—competitive with the fastest alternatives while delivering substantially better compression.

Enterprise-Grade Reliability

Tested across datasets from 1MB to 200MB, TXC demonstrates consistent performance with:

  • Zero data loss across all test scenarios
  • Predictable memory footprint regardless of input size
  • Linear scaling characteristics for enterprise deployment

Scalable Impact

When scaled to 1TB of log data, TXC reduces storage and network transfer needs by ~919.48 GB, delivering significant operational efficiency and cost savings for enterprise deployments.

  • Estimated monthly storage savings: $45.97 (at $0.05/GB)

📈 Visual Performance Metrics

Compression Ratio Comparison (Lower is Better)

Compression Ratio

Processing Time Efficiency (Lower is Better)

Compression Time

Storage Efficiency Analysis

Compressed vs Original

💼 Enterprise Use Cases & ROI

TXC delivers maximum value in critical enterprise scenarios:

🏦 Financial Services & Log Analytics – Achieve up to 12× storage reduction for compliance logs, enabling cost-efficient long-term retention and regulatory adherence.

🌐 CDN & Content Delivery – Compress logs and text-based payloads to ~42% smaller sizes than industry-standard compressors, reducing bandwidth and accelerating content delivery.

🔍 Search Engines & Big Data – Enable faster queries and denser compressed indices, improving indexing efficiency and analytics performance across massive datasets.

☁️ Cloud Infrastructure – Maximize operational efficiency with significant savings on storage and egress costs, making large-scale log aggregation and backup more economical.

⚡ Technical Implementation

Architecture Overview

TXC compresses text and log files using a token-based, dictionary-driven approach optimized for high-density compression:

  1. Tokenization: Splits text into words and whitespace sequences for efficient pattern recognition.
  2. Adaptive Dictionary: Dynamically maps recurring tokens to unique integer IDs, growing the dictionary as new tokens are encountered.
  3. Entropy Compression: Compresses the token ID stream using Zstd, achieving high compression ratios via statistical encoding.
  4. File Boundary Preservation: Tracks original file boundaries to ensure accurate decompression of multiple files in a single package.

Performance Characteristics

Aspect TXC Traditional Compressors
Compression Ratio Best-in-class for text/logs Often suboptimal for text
Speed Competitive with fastest Tradeoff: either fast OR dense
Memory Usage Predictable, linear in tokens Variable by algorithm
Text Optimization Token-aware for text/logs General-purpose compressors

🚀 Quick Start Deployment

Installation

PyPI support will be added soon. For now, install from source:

git clone https://github.com/JanBremec/txc-compressor.git
cd txc-compressor
pip install -r requirements.txt
python setup.py build_ext --inplace

Basic Usage

from txc_compressor import TXCompressor

# Initialize compressor with optional dictionary file
compressor = TXCompressor(dict_path="txc_dict.bin")

# Compress multiple text files into a single package
input_files = ["log1.txt", "log2.txt"]
output_package = "compressed_package.pkl"
compressed_size = compressor.encode_files(input_files, output_package)
print(f"Compressed size: {compressed_size} bytes")

# Decompress package into output directory
output_dir = "restored_files"
restored_files = compressor.decode_package(output_package, output_dir)
print(f"Files restored: {restored_files}")

Notes:

  • The compressor automatically builds and updates the dictionary.
  • Works with multiple files and preserves file boundaries.
  • Uses Zstandard for high-speed and high-ratio compression.

🔗 Next Steps & Contributions

TXC is actively under development and will soon support:

  • PyPI distribution for simple installation
  • Expanded platform support for Windows, Linux, and macOS
  • Additional compression backends for specialized workloads
  • Prediction table for better compression

Contributions from the community are welcomed! If you'd like to:

  • Report issues or request features, visit the Issues page
  • Submit pull requests to improve functionality or documentation
  • Share benchmarks or use cases

For direct inquiries, collaboration proposals, or enterprise licensing, contact: jan04bremec@gmail.com.


Thank you for exploring TXC, the next-generation text and log compression solution! 🚀

Release files for txc-compressor 1.0.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Built distributions (wheels)

Table of built distributions (wheels) for txc-compressor 1.0.0
File
txc_compressor-1.0.0-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
txc_compressor-1.0.0-cp314-cp314t-win32.whl CPython 3.14 CPython 3.14 free-threading Windows x86-32 Details
txc_compressor-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
txc_compressor-1.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
txc_compressor-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
txc_compressor-1.0.0-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
txc_compressor-1.0.0-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
txc_compressor-1.0.0-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
txc_compressor-1.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
txc_compressor-1.0.0-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
txc_compressor-1.0.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
txc_compressor-1.0.0-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
txc_compressor-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
txc_compressor-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
txc_compressor-1.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
txc_compressor-1.0.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
txc_compressor-1.0.0-cp313-cp313-macosx_10_13_universal2.whl CPython 3.13 CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64) Details
txc_compressor-1.0.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
txc_compressor-1.0.0-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
txc_compressor-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
txc_compressor-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
txc_compressor-1.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
txc_compressor-1.0.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
txc_compressor-1.0.0-cp312-cp312-macosx_10_13_universal2.whl CPython 3.12 CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64) Details
txc_compressor-1.0.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
txc_compressor-1.0.0-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
txc_compressor-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
txc_compressor-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
txc_compressor-1.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
txc_compressor-1.0.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
txc_compressor-1.0.0-cp311-cp311-macosx_10_9_universal2.whl CPython 3.11 CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64) Details
txc_compressor-1.0.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
txc_compressor-1.0.0-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
txc_compressor-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
txc_compressor-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
txc_compressor-1.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
txc_compressor-1.0.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
txc_compressor-1.0.0-cp310-cp310-macosx_10_9_universal2.whl CPython 3.10 CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64) Details
txc_compressor-1.0.0-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
txc_compressor-1.0.0-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
txc_compressor-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
txc_compressor-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
txc_compressor-1.0.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
txc_compressor-1.0.0-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
txc_compressor-1.0.0-cp39-cp39-macosx_10_9_universal2.whl CPython 3.9 CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64) Details
txc_compressor-1.0.0-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
txc_compressor-1.0.0-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
txc_compressor-1.0.0-cp38-cp38-musllinux_1_2_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-64 Details
txc_compressor-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
txc_compressor-1.0.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
txc_compressor-1.0.0-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
txc_compressor-1.0.0-cp38-cp38-macosx_10_9_universal2.whl CPython 3.8 CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64) Details

Total release size: 17.6 MB

Release files / txc_compressor-1.0.0-cp314-cp314t-win_amd64.whl

Download URL txc_compressor-1.0.0-cp314-cp314t-win_amd64.whl
Size 112.3 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
0673782774848a196bbabb968a85445f22d64ab9b2dc490f785ee609792a58f7
BLAKE2b-256 checksum
How to use checksums
9defd71e0c871d91d27a4c2c12379f1fe48270f9d97f1ca3641b98430d1fdcb4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp314-cp314t-win32.whl

Download URL txc_compressor-1.0.0-cp314-cp314t-win32.whl
Size 93.3 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
d0ed108f06bea0a8b41f07f4028f6ae07d7e76002a902c473b8737cc0f8a6ac3
BLAKE2b-256 checksum
How to use checksums
14c4ff04eb34125b75fbd5a9fad5d714afa3c1f99504f255b981a9956ec2dffd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL txc_compressor-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 642.0 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
65a597f821013b4479ef93802ea96ccf5191c6a454a645f457e00483390aa087
BLAKE2b-256 checksum
How to use checksums
3d7c53c8ada1555b6a14683e96f9088c7bc3227dacd7c56178c007d185902f10
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL txc_compressor-1.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 650.5 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
b354c1e13b4520d6fed067f8e8fec4fcd01e29510b6c18782f9faae065f65598
BLAKE2b-256 checksum
How to use checksums
34e70b4b5d5a138eff9195fe8c2f1b1057dc2b5bb8d33dc9d729724fa6f265fb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl

Download URL txc_compressor-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl
Size 114.2 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
aa1c04e0876a51068c07c4706e34fb15d548afa26068e848f89a03275342623e
BLAKE2b-256 checksum
How to use checksums
b93a7f1715e52b06171ada66aa9e6d78094df5c6e3153ec8290bdeac805af1a3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp314-cp314-win_amd64.whl

Download URL txc_compressor-1.0.0-cp314-cp314-win_amd64.whl
Size 93.9 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
16c13afe15c58b124bef4105fcb34fc4a889607d2d338ca183b355a58b97453d
BLAKE2b-256 checksum
How to use checksums
9a59ed7466416bb2c68c888a01b36619bc29649339cfc49263d358f9d01e3488
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp314-cp314-win32.whl

Download URL txc_compressor-1.0.0-cp314-cp314-win32.whl
Size 79.2 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
8a20018d3287576100242a33d42cad3b756cdc9286969f700a064fbe63b4a4a2
BLAKE2b-256 checksum
How to use checksums
260247ef413e560753e0ec2e971978889cfaaac3d03d3952d23492c32356c69e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL txc_compressor-1.0.0-cp314-cp314-musllinux_1_2_x86_64.whl
Size 652.6 kB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
1c506210475bf8e08a0700f549426aab9c17f0c0a32fb7923336a78f5b429307
BLAKE2b-256 checksum
How to use checksums
0f6eb6179399593b2128e78f880e12db20831ecdf94a4fa9dfc6278c81221302
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL txc_compressor-1.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 652.2 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
50c1ddecda2f617eeccaec563b817aebfb0cab1591b96abaef0f8c761688df8c
BLAKE2b-256 checksum
How to use checksums
3a080a1d96114f26b108f847936daa68efb51f24cd42ad1a5f18e6ca92db781a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp314-cp314-macosx_11_0_arm64.whl

Download URL txc_compressor-1.0.0-cp314-cp314-macosx_11_0_arm64.whl
Size 106.5 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
f33d06f8aa21f8c466d8a827cb41b525d43e97ddaa07dc56969924f5d28d5086
BLAKE2b-256 checksum
How to use checksums
08d9096f0492d1d7f305c79d12225ed6b21b1322713eccfdf27c6c2400b5a3de
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp313-cp313-win_amd64.whl

Download URL txc_compressor-1.0.0-cp313-cp313-win_amd64.whl
Size 92.3 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
c42d6ab591832cfc1f10d2d1bed19a8c5b1166d2ba7a112cde85603d32607fe1
BLAKE2b-256 checksum
How to use checksums
fda1e7009c83a1c9428a43813b4598144006260247ff285024aef277cb978604
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp313-cp313-win32.whl

Download URL txc_compressor-1.0.0-cp313-cp313-win32.whl
Size 77.3 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
20b52f21975fafe54b079b20ba93e924952a2a2f838e6efb22a38d6f483d5e6e
BLAKE2b-256 checksum
How to use checksums
ee353c24c645b3a14c14fdf773176d8797e700df41d7df5730cc095e147f6517
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL txc_compressor-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Size 659.0 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
cc50cb5ef40c9bc8d49714bc08a8a785b6cd62996a29a3a5d020884a1b74b3ee
BLAKE2b-256 checksum
How to use checksums
c0bb548cb44e15bbf0c47aed915a2640b07d0bebcd833ad9ce2d9a6be558dfd3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL txc_compressor-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 621.9 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
265774976b7c9811acb98883d5f9a2c5b699ecca4893434fb76f830c72a5bb32
BLAKE2b-256 checksum
How to use checksums
3a638c22e0e552961508b6d60e67db7db90e87022e4d5e23bb9fccbc7239a36e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL txc_compressor-1.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 658.5 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
01c70987d7d8ae97924883bcd1768c19c5e2f7d6bc5c4ddbab70334b8d31dbb1
BLAKE2b-256 checksum
How to use checksums
99ea6c79b47d4dfdf4a033a0010ed0ce243744b5c3806c31c83185625cb6c20a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp313-cp313-macosx_11_0_arm64.whl

Download URL txc_compressor-1.0.0-cp313-cp313-macosx_11_0_arm64.whl
Size 105.8 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
275eceeab06bd043bd23e9c57d2613014137154d5ce141f84480e5e802f89774
BLAKE2b-256 checksum
How to use checksums
4551848f7e81726eea9eec2f193b4601f588f16e533644728c9244dc239c5dfb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp313-cp313-macosx_10_13_universal2.whl

Download URL txc_compressor-1.0.0-cp313-cp313-macosx_10_13_universal2.whl
Size 191.7 kB
Tags CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
8b6affcceb79b30c6d6e0268f68577c648d81d18c9fa360649786be0a9c5c54e
BLAKE2b-256 checksum
How to use checksums
5a3e47f669d869b5503a9af241495b0d5bbbd397899e85ae025bb9adf9f98947
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp312-cp312-win_amd64.whl

Download URL txc_compressor-1.0.0-cp312-cp312-win_amd64.whl
Size 92.3 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
cf2e89f1ae80b9463fafecf5023938c86fbdc62bba2b39973c8ae152f72a3602
BLAKE2b-256 checksum
How to use checksums
fcd7139e6b3b3d63201537c06faca0370898d50b4f3a475517ff4ebdfe546327
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp312-cp312-win32.whl

Download URL txc_compressor-1.0.0-cp312-cp312-win32.whl
Size 77.4 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
ab305284ac0b8518769f81e867cb76a61ec149cc67c107dca88660376f2658cf
BLAKE2b-256 checksum
How to use checksums
177246c7955c7714f28c69509aaf6f4bf88494152e003654ef924dc847b539dc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL txc_compressor-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Size 664.3 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
0abc035ee108e49fba8c115b474e5a812070ea69bab231e3aedee3495e1f0357
BLAKE2b-256 checksum
How to use checksums
48e4d0469871f4ff14512392ee11deb7af4ea25192fd0e6689399cd5ee80dbc2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL txc_compressor-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 629.4 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e538a6d1e2297935d4bc531752485c493bf2dfaae344c14bbd0dd8d9a565791d
BLAKE2b-256 checksum
How to use checksums
b9af745ff84017a88161b8aed75c4099da63a167d6188e2dd393d5122f3700e1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL txc_compressor-1.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 666.6 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
0f57a3b9dd5bd83b076b2db5fb2081ee7ba9081ef2c5fa2e90099129ae7dd62d
BLAKE2b-256 checksum
How to use checksums
c8bec0be4064f4b60e6e40a92e6442f62c2fecf6cf6a6e512487d4912789d09f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL txc_compressor-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
Size 106.8 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
33c1fe22b538cc23fd794495b77306249ff97883d29d2ac146bdde119923698b
BLAKE2b-256 checksum
How to use checksums
d2d18b3992bab01e22d6d4f66cbf9f048f6d4279909eea2662922f58de19785f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp312-cp312-macosx_10_13_universal2.whl

Download URL txc_compressor-1.0.0-cp312-cp312-macosx_10_13_universal2.whl
Size 194.0 kB
Tags CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
74f38df9f93c3ee0b7bce5fdf9ac60962443fc0ce5b0bdd06ea91efb4320719c
BLAKE2b-256 checksum
How to use checksums
037d3de80c6b0443dc487cdbe86b24174600656ad68ce51eb9fa3017227cc57f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp311-cp311-win_amd64.whl

Download URL txc_compressor-1.0.0-cp311-cp311-win_amd64.whl
Size 91.9 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
483d6c115601b5ab521a65eebaceae929697575d6ff02aada810f0bb02f66d3f
BLAKE2b-256 checksum
How to use checksums
c3fa28e5c44197d91e7a6c336610bc4582d949e7093aa61a115e33eff72892ac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp311-cp311-win32.whl

Download URL txc_compressor-1.0.0-cp311-cp311-win32.whl
Size 77.9 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
24eee65201d6d134078d18266d0d1ee9ee9286774eb155a571841a6e7cfcf91b
BLAKE2b-256 checksum
How to use checksums
301390cf24eb1988892a4500f2f942f8800c53c5ed74cd371be087c6e69839bc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL txc_compressor-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Size 678.4 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
0e56443e251235f780e816ef16cda9ec4bbb56ab4a82eb54ba5f8466141060db
BLAKE2b-256 checksum
How to use checksums
50e21236983925bff48039564ca22e61526e51824530d215265cb2e7082b2964
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL txc_compressor-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 639.9 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
2a515054b0b4ffb989407117f9f108409a40e3eeccec0d935becc74e61c8cee1
BLAKE2b-256 checksum
How to use checksums
c49665457f06eca8fce57d77db77f443c55f0a327c70805819939f5e51f6757c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL txc_compressor-1.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 673.0 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
cf82f23182d463bd68a46b9125cee6060e6db5e9e7e72367040827115359bd6e
BLAKE2b-256 checksum
How to use checksums
5ec3dfec82bd352a09fadbc794a7540fc65c68b8c6e4fd569eb56d5189ac0c0e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL txc_compressor-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
Size 107.2 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
8366b62da35f830a4deadc8c8dc33d5844427260b00d1b18cd3081291a9abe7e
BLAKE2b-256 checksum
How to use checksums
d01c8c27170755aa8e52794c420fedf9ffe6c47cca50908ef82da180925adc25
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp311-cp311-macosx_10_9_universal2.whl

Download URL txc_compressor-1.0.0-cp311-cp311-macosx_10_9_universal2.whl
Size 194.2 kB
Tags CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
171051907ac5bb232fd81e22986d230bb4151d6d5f006d97ce46917b457644a3
BLAKE2b-256 checksum
How to use checksums
b6a09a83a5f86275aca608feefb538d4c7b8291b8d10586372de4c548eabb9e4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp310-cp310-win_amd64.whl

Download URL txc_compressor-1.0.0-cp310-cp310-win_amd64.whl
Size 91.2 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
552f040cfa010e9847dfaea2bab8c725aa2b430b96bf984d746f9e0b3d05e0eb
BLAKE2b-256 checksum
How to use checksums
27979511b38b9fcdd947d5666ec2b312550adb36307ec1013aa94d011fd4e57a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp310-cp310-win32.whl

Download URL txc_compressor-1.0.0-cp310-cp310-win32.whl
Size 78.3 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
7bbe3a3886c908579dcd507ecf239c0a498feaaa04bfb91f78a42967206bc38c
BLAKE2b-256 checksum
How to use checksums
88460483e7b94ca0bf101e1160396a3ed9a76ba208039c66d9f247df961ebd39
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL txc_compressor-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Size 642.7 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
b156de45752453ea220ca335b9565b8a4fead93063c9e84c97470b0f9a0e3d9d
BLAKE2b-256 checksum
How to use checksums
c63201cc03c6a3612ce0f4a4272efb83c2c4cc3952e30fa71a1d6a8e88df60f1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL txc_compressor-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 604.4 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
62146c76dd38b25a63d64ae2ced87fbf92b406cab86bf41f633856bb60795468
BLAKE2b-256 checksum
How to use checksums
79789ad14d1ad67fc4b8e5f93375fd45573cae02e606dded1be2be19726df0ed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL txc_compressor-1.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 638.4 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
7cc856eebe1d93c70543e0f0fd6f06f5e8ca7ff49a886ee8289bbe89ac4e9b89
BLAKE2b-256 checksum
How to use checksums
3d2e16f0450bc5c254c42584a6eef17a889855b725f3bfe71df57cbe144cee36
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp310-cp310-macosx_11_0_arm64.whl

Download URL txc_compressor-1.0.0-cp310-cp310-macosx_11_0_arm64.whl
Size 106.5 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
608f917948c3908dd4f6d6c506157cc7d168eb998b3e13200317fa68cd35f47d
BLAKE2b-256 checksum
How to use checksums
c74ea02b55f4af0a7dd7338d3e0226e4589f62b45fb8235958f5cbd9c83d0b4e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp310-cp310-macosx_10_9_universal2.whl

Download URL txc_compressor-1.0.0-cp310-cp310-macosx_10_9_universal2.whl
Size 192.6 kB
Tags CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
21c55f42844e471fd9e1ae6561e342c1ff990341304866eee2fa09a13283f8d4
BLAKE2b-256 checksum
How to use checksums
02c8f9d5588b9a558597875b499e1821b628f1797d165f1ff8d2d791daa9efc3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp39-cp39-win_amd64.whl

Download URL txc_compressor-1.0.0-cp39-cp39-win_amd64.whl
Size 91.4 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
6ed791fc6ed6bd256e06d3da07d0acb19962aa92c7a0dc9f1a5e870186abfe55
BLAKE2b-256 checksum
How to use checksums
edc898aa1982e85ffdec7282e0eaaba02ba3c202eba145fd63dbdbbe57f8581f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp39-cp39-win32.whl

Download URL txc_compressor-1.0.0-cp39-cp39-win32.whl
Size 78.5 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
2f434f67667a017815fa204db8688e06cb0444e99ae8c67fb843c8fda1cdb696
BLAKE2b-256 checksum
How to use checksums
5fa5ded7ffbc362e36e627a6904ff71a9179835708cf1c92b7b3b5ec797dc823
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL txc_compressor-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
Size 640.7 kB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
0d0d8c065ef4061f76ba8840acd6205ee64bed27a54b3dc43923ea5bfb9908a6
BLAKE2b-256 checksum
How to use checksums
8f922c3f2c8ded3550ab14cf4ab6649e66d6ac0dd146b0321112c0d9884aee2b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL txc_compressor-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 602.1 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
65d8921b4f221a9b28cb55d94905abcb36f702126c254737914291269d3705c2
BLAKE2b-256 checksum
How to use checksums
5ffd5d26aa6fe2520f5503d04459e8fede0d73593f2e29144d6fafa77cf9d8e8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL txc_compressor-1.0.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 636.0 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
1a9693f0f72432f20039c0b64ba3e9fda99c99dac27a0a3ed5396284c2cbda3e
BLAKE2b-256 checksum
How to use checksums
c90bc5795e5301b41e0b496273a84a3dea664537204434e57bfa1c4c5a1dd5ce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp39-cp39-macosx_11_0_arm64.whl

Download URL txc_compressor-1.0.0-cp39-cp39-macosx_11_0_arm64.whl
Size 106.7 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
4fee5cf70995b472611c7cd57d5a76450aae8b0677df3336453ea4efc1e99400
BLAKE2b-256 checksum
How to use checksums
e662030b1ff1267ca9c10178ac94f8c6edd3c9c395e33a412f16ea0c0cc69a71
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp39-cp39-macosx_10_9_universal2.whl

Download URL txc_compressor-1.0.0-cp39-cp39-macosx_10_9_universal2.whl
Size 193.1 kB
Tags CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
443c105eda3dd8ad047abb43752a868c79e78c6286f148ad3ebb4d02c6731e82
BLAKE2b-256 checksum
How to use checksums
cca1004809bb0adf6deac7eed3723be78c905a02f27b0047b43c760c43816ba6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp38-cp38-win_amd64.whl

Download URL txc_compressor-1.0.0-cp38-cp38-win_amd64.whl
Size 92.2 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
7568f680b4ab807c334037688404f54e41bded72a35a078b4b6b40031cd7cce3
BLAKE2b-256 checksum
How to use checksums
c83c743ddf5c2e8c4f556827d01486d2b3f5a3f580726840478fdab930ba4dd1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp38-cp38-win32.whl

Download URL txc_compressor-1.0.0-cp38-cp38-win32.whl
Size 79.2 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
7014ed6d1efff754e1a3a6f44c1bf1798736634cba60683a31fd131580cf990b
BLAKE2b-256 checksum
How to use checksums
94b7eede7e119653b63cccec372b3cf69abe0c14e06fd71f38b04d7da2b4d4e9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp38-cp38-musllinux_1_2_x86_64.whl

Download URL txc_compressor-1.0.0-cp38-cp38-musllinux_1_2_x86_64.whl
Size 659.5 kB
Tags CPython 3.8 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
532d6bb215d485beb1bc9c1a5bf8cc360b865623234b6b40f362165eaa9e7077
BLAKE2b-256 checksum
How to use checksums
d21a66ff66dc72ebea811383864147de9252c3f4ffec3c33b59c0d4d4ede4aff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL txc_compressor-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 617.0 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
7e5d5709f04eb8603e0afb838353f850299d04da1b17c6daa8dbbc09e6213ec3
BLAKE2b-256 checksum
How to use checksums
0defe6448a817bb4d7d8767e91e0da986a9521a418821b6961d511e4cf2d89f7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL txc_compressor-1.0.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 657.0 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
1544c70d2cf6f5fc050ff386bf23479feeb71ce6902ae8fa72f08b2ecbed4c92
BLAKE2b-256 checksum
How to use checksums
2828b3aec349efd31f8968541935723b700c003ae5180d4f5dcb84142f0a6038
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp38-cp38-macosx_11_0_arm64.whl

Download URL txc_compressor-1.0.0-cp38-cp38-macosx_11_0_arm64.whl
Size 107.8 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e4449800bdc84cec8c5dceb3cf2db9a1859b33165079bb781d4a6e0a285f5cb7
BLAKE2b-256 checksum
How to use checksums
59b4dbc4115d57af02e2448b2145a0dc784b42b99f1c7738308e4e3cce3d8557
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release files / txc_compressor-1.0.0-cp38-cp38-macosx_10_9_universal2.whl

Download URL txc_compressor-1.0.0-cp38-cp38-macosx_10_9_universal2.whl
Size 196.7 kB
Tags CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
a6c10fc5ff1480bd469db04e882789efe18264de3b400bad35ff2561f3edc0fe
BLAKE2b-256 checksum
How to use checksums
fb7367301fb566a658d30183018fe5e0976c356847249c84941b83d9e426dc75
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.1

Release history Release notifications | RSS feed

This release

1.0.0 This release

52 release files

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