Skip to main content

📄
Sizelib

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

PyPI Version GitHub Release PyPI Downloads GitHub License


✳️ 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, expressions, and type preservation (int/float) are supported
limit = 2
custom_limit = size.gib(limit)   # 2 GiB (2147483648 bytes)
print(type(size.mib(10)))        # Output: <class 'int'>
print(type(size.kb(1.5)))        # Output: <class 'float'>

Humanize Byte Sizes (human_size)

from sizelib import human_size, size

# Default binary formatting (base 2 / 1024)
print(human_size(10485760))             # Output: 10 MiB
print(human_size(size.gib(2.5)))        # Output: 2.50 GiB

# Decimal formatting (base 10 / 1000)
print(human_size(size.gb(50), base=10)) # Output: 50 GB

Time Helper Functions

from sizelib import time

TIMEOUT = time.s(30)        # 30 s
CACHE_TTL = time.m(15)      # 900 s
TOKEN_EXPIRY = time.h(2)    # 7200 s
WORKER_WAIT = time.ms(500)  # 0.5 s

Humanize Times (human_time)

from sizelib import human_time, time

print(human_time(0.005))        # Output: 5 ms
print(human_time(time.s(45)))   # Output: 45 s
print(human_time(time.m(90)))   # Output: 1.50 h
print(human_time(time.h(2)))    # Output: 2 h
print(human_time(time.d(1)))    # Output: 1 d

✳️ Features

FEATURE DESCRIPTION
Size Helpers Standardized functions for all major divisions (kb, mb, gb, tb, pb, eb, zb, yb, kib, mib, gib, tib, pib, eib, zib, yib)
Time Helpers Clean scaling for duration units (ms, s, m, h, d, w)
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

✳️ Architecture

# COMPONENT DESCRIPTION STACK
1️⃣ Sizelib SDK Python library for size & time calculations and humanization Python
2️⃣ Sizelib Docs Official documentation & web interface Next.js, Tailwind, Vercel

Made with 📄 by Saptarshi Roy

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.2.2.tar.gz (6.1 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.2.2-py3-none-any.whl (5.3 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for sizelib-0.2.2.tar.gz
Algorithm Hash digest
SHA256 081b3914ccad762c966aa6a129a1a5319b969f424750be51704c5e7a1fc19b59
MD5 de93e8237d813c2e7d56c583972b0707
BLAKE2b-256 dda5c87f6737a80f75c8c4609261c923d625554bc580ba0ae3073ae65377001f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sizelib-0.2.2-py3-none-any.whl
  • Upload date:
  • Size: 5.3 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.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 c50008fc2373e5ae2ad7a41bdbee282c09f69238338fbef8108a1dfc874308c1
MD5 13c96eb869f88cdd6ca0930a90a7afe3
BLAKE2b-256 e36178eb0818d3e5cbcfdc33978243ba1adabf4afec5c44548b280e19b118372

See more details on using hashes here.

Release history Release notifications | RSS feed

0.2.3

2 files

This release

0.2.2 This release

2 files

0.2.1

2 files

0.2.0

2 files

0.1.3

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

2 files

Supported by

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