Skip to main content

A simple, pythonic library for working with and humanizing file sizes.

Project description

📄
Sizelib

sizelib is a lightweight, type-safe Python Library for working with and humanizing file sizes. It offers clean, type-preserving size helpers (supporting both int and float) and loop-based human readable string conversions.

🔗 PyPI Package  |  🆔 pip install sizelib or uv add sizelib


🐍 SDK

Installation

pip install sizelib
# or
uv add sizelib

Size Helper Functions

from sizelib import size

# Define constraints using binary (base 2 / 1024) or decimal (base 10 / 1000) helper methods
MAX_UPLOAD_SIZE = size.mib(10)   # 10 MiB (10485760 bytes)
CACHE_LIMIT = size.gib(2)        # 2 GiB (2147483648 bytes)
USER_QUOTA = size.gb(50)         # 50 GB (50000000000 bytes)

# Variables and expressions are fully supported
limit = 2
custom_limit = size.gib(limit)   # 2 GiB (2147483648 bytes)

print(MAX_UPLOAD_SIZE)           # Output: 10485760
print(type(MAX_UPLOAD_SIZE))     # Output: <class 'int'>

Humanize Byte Sizes

from sizelib import humanize

# Default binary formatting (base 2 / 1024)
print(humanize(MAX_UPLOAD_SIZE))  # Output: 10 MiB
print(humanize(CACHE_LIMIT))      # Output: 2 GiB

# Decimal values are formatted up to 2 decimal places
TOTAL = CACHE_LIMIT + size.mib(500)
print(humanize(TOTAL))            # Output: 2.49 GiB

# Decimal formatting (base 10 / 1000)
print(humanize(USER_QUOTA, base=10))  # Output: 50 GB

Features

FEATURE DESCRIPTION
📏 Unit Helpers Standardized functions for all major divisions (kb, mb, gb, tb, kib, mib, gib, tib)
🧪 Type Preservation Dynamically maintains input types (returns int/floats accordingly)
⚙️ Custom Bases Support for both binary (base=2 / 1024) and decimal (base=10 / 1000) formats
Ultra Minimalism Zero external dependencies with an optimized, lightweight iteration algorithm

🏗️ System Architecture

# COMPONENT DESCRIPTION STACK
1️⃣ Sizelib Size The math factor constants and unit calculation helper functions Python
2️⃣ Sizelib Format The humanization formatting module for readable string units Python

Made with 📄 by Saptarshi Roy

Project details


Download files

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

Source Distribution

sizelib-0.1.3.tar.gz (4.4 kB view details)

Uploaded Source

Built Distribution

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

sizelib-0.1.3-py3-none-any.whl (5.0 kB view details)

Uploaded Python 3

File details

Details for the file sizelib-0.1.3.tar.gz.

File metadata

  • Download URL: sizelib-0.1.3.tar.gz
  • Upload date:
  • Size: 4.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for sizelib-0.1.3.tar.gz
Algorithm Hash digest
SHA256 063ca73abfc2cef581c19a91bc1cf28edc6f0164310e8b5bdfe434ea6ad12cdb
MD5 8e728ebadfc8fcdc73961133592c6532
BLAKE2b-256 c89ad339e18e3039eb8b95250d554059b328e5e57125eaf167f236a9966b6242

See more details on using hashes here.

File details

Details for the file sizelib-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: sizelib-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 5.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for sizelib-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 dd3c1530a990fb4cc755d0e9f70a7555363ccc39282c1b9d382308d75d3a68d8
MD5 d0f613d75a5b1d7557c958d0704b7c4e
BLAKE2b-256 73108bf25547156ddca128cdc60464bdfce43106f2a9d86d753992873fa97707

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page