Skip to main content

Fork from hurry.filesize, A simple Python library for human readable file sizes (or anything sized in bytes).

Project description

calmsize

Build Status

NOTICE

I forked the repo from source file downloaded from pip hurry.filesize. That simple library is very useful when debugging memory issues, but unfortunately out-of-maintainance since 2009, so I decided to fork the great work of Martijn Faassen, Startifact.

Intro

calmsize a simple Python library that can take a number of bytes and returns a human-readable string with the size in it, in kilobytes (K), megabytes (M), etc.

The default system it uses is "traditional", where multipliers of 1024 increase the unit size::

>>> from calmsize import size, ByteSize
>>> size(1024)
'1K'
>>> size(-1024)
'-1K'
>>> '{:.2f}'.format(size(-1024))
'-1.00K'

An alternative, slightly more verbose system::

>>> from calmsize import alternative
>>> size(1, system=alternative)
'1 byte'
>>> size(10, system=alternative)
'10 bytes'
>>> size(1024, system=alternative)
'1 KB'

A verbose system::

>>> from calmsize import verbose
>>> size(10, system=verbose)
'10 bytes'
>>> size(1024, system=verbose)
'1 kilobyte'
>>> size(2000, system=verbose)
'1 kilobyte'
>>> size(3000, system=verbose)
'2 kilobytes'
>>> size(1024 * 1024, system=verbose)
'1 megabyte'
>>> size(1024 * 1024 * 3, system=verbose)
'3 megabytes'

You can also use the SI system, where multipliers of 1000 increase the unit size::

>>> from calmsize import si
>>> size(1000, system=si)
'1K'

Changes

0.1.0 (2019-05-24)

  • Add support for negative input
  • Add support for format the leading number
  • Add ByteSize as a new class
  • Add support for comparing between two Bytesize, ByteSize and numbers

0.0.1 (2019-05-24)

  • Forked from hurry.filesize

Download

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

calmsize-0.1.0.tar.gz (3.5 kB view details)

Uploaded Source

File details

Details for the file calmsize-0.1.0.tar.gz.

File metadata

  • Download URL: calmsize-0.1.0.tar.gz
  • Upload date:
  • Size: 3.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.15

File hashes

Hashes for calmsize-0.1.0.tar.gz
Algorithm Hash digest
SHA256 46868ed6c9a7f2db7e9eac70ed16d3dbfd89c37a9eb8920b33b20550ca355eff
MD5 9dcdd39321c3f7f2537eb4b8d24dafc0
BLAKE2b-256 6b1bd123ed25b771ab26314b4277f6d431eaa8dcdf148ce02f7536c9eb59f420

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