cramjam
Your go-to for easy access to a plethora of compression algorithms, all neatly bundled in one simple installation.
File Explorer
Download Latest Version (.zip)- config.toml
- CI.yml
- FUNDING.yml
- alice29.txt.bz2
- asyoulik.txt.bz2
- COPYING
- dickens.bz2
- fireworks.jpeg.bz2
- geo.protodata.bz2
- html.bz2
- html_x_4.bz2
- kppkn.gtb.bz2
- lcet10.txt.bz2
- Mark.Twain-Tom.Sawyer.txt.bz2
- mozilla.bz2
- mr.bz2
- nci.bz2
- ooffice.bz2
- osdb.bz2
- paper-100k.pdf.bz2
- plrabn12.txt.bz2
- reymont.bz2
- samba.bz2
- sao.bz2
- urls.10K.bz2
- webster.bz2
- x-ray.bz2
- xml.bz2
- README.md
- test_bench.py
- lib.rs
- index.test.ts
- setup.ts
- .gitignore
- Cargo.lock
- Cargo.toml
- package.json
- README.md
- tsconfig.json
- vitest.config.ts
- index.md
- __init__.py
- __init__.pyi
- blosc2.pyi
- brotli.pyi
- bzip2.pyi
- deflate.pyi
- experimental.pyi
- gzip.pyi
- ideflate.pyi
- igzip.pyi
- izlib.pyi
- lz4.pyi
- py.typed
- snappy.pyi
- xz.pyi
- zlib.pyi
- zstd.pyi
- blosc2.rs
- brotli.rs
- bzip2.rs
- deflate.rs
- exceptions.rs
- experimental.rs
- gzip.rs
- ideflate.rs
- igzip.rs
- io.rs
- izlib.rs
- lib.rs
- lz4.rs
- snappy.rs
- xz.rs
- zlib.rs
- zstd.rs
- plaintext.txt
- plaintext.txt.br
- plaintext.txt.bz2
- plaintext.txt.gz
- plaintext.txt.lz4
- plaintext.txt.lzma
- plaintext.txt.snappy
- plaintext.txt.zst
- __init__.py
- conftest.py
- test_blosc2.py
- test_buffer_view.py
- test_cramjam_pyodide.js
- test_integration.py
- test_rust_io.py
- test_typing_package.py
- test_variants.py
- test_public_api.py
- .gitignore
- benchmark-requirements.txt
- build.rs
- Cargo.lock
- Cargo.toml
- Cross.toml
- LICENSE
- Makefile
- mkdocs.yml
- package.json
- pyproject.toml
- README.md
- rustfmt.toml
- uv.lock
# Installation Guide
git clone https://github.com/milesgranger/cramjam
Downloads the entire project code from GitHub to your computer.
cd cramjam
Moves into the project folder you just downloaded.
2. Official Install Script
Easy Recommended- Python 3 Python is required to use pip.
pip install --upgrade cramjam # Requires no Python or system dependencies!
Installs the package published on PyPI directly โ no need to clone the source.
Pulled directly from this repo's README.
3. Node.js
Easynpm install cramjam
Downloads and installs the libraries listed in package.json.
Pulled directly from this repo's README.
4. Python
Easypip install --upgrade cramjam # Requires no Python or system dependencies!
Installs the package published on PyPI directly โ no need to clone the source.
Pulled directly from this repo's README.
5. Rust
Medium- Git Needed to download the project code from GitHub.
- Rust (rustup) Installing via rustup also installs cargo.
cargo build --release
Compiles the Rust project.
cargo run
Builds and then immediately runs the program.
6. Make
Medium- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make dev-setup
Compiles the code based on the generated build configuration to produce an executable.
make test
Compiles the code based on the generated build configuration to produce an executable.
Pulled directly from this repo's README.
