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.2.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.2-py3-none-any.whl (4.9 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for sizelib-0.1.2.tar.gz
Algorithm Hash digest
SHA256 f77f58536bda1b97e49847cfc995971c573633a4e750df3b80c2672ae4fb97ad
MD5 e9adfb7a2cf624ea74fefd9659f2e714
BLAKE2b-256 942e547dc9008d0c4d464a08cef03a7536dba3686737cf8ce683e85bfcbd5c94

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for sizelib-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 eeb24844edfeaa5a0010ab57eafcab6411a9c70595cafbfc1b5d4ca5bcda12c2
MD5 9126d0e4828c1f63856793d101d36d1e
BLAKE2b-256 92123d8686fc8954b2b6c2eb9a612afe9ee8625c464ae722e0b1191b79ffbd5e

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