duviz


Nameduviz JSON
Version 3.2.0 PyPI version JSON
download
home_pagehttps://github.com/soxofaan/duviz
SummaryCommand line disk space visualization tool
upload_time2022-12-18 10:23:53
maintainer
docs_urlNone
authorStefaan Lippens
requires_python>=3.6
license
keywords disk usage visualization asciiart
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            .. image:: https://img.shields.io/pypi/pyversions/duviz
    :target: https://pypi.org/project/duviz/
    :alt: PyPI - Python Version
.. image:: https://github.com/soxofaan/duviz/actions/workflows/unittests.yml/badge.svg?branch=master
    :target: https://github.com/soxofaan/duviz/actions/workflows/unittests.yml
    :alt: unit tests
.. image:: https://github.com/soxofaan/duviz/actions/workflows/pre-commit.yml/badge.svg?branch=master
    :target: https://github.com/soxofaan/duviz/actions/workflows/pre-commit.yml
    :alt: pre-commit


What is duviz?
--------------

``duviz`` is a (Python 3) command-line tool to visualize disk space usage.

It's like the plethora of desktop applications and widgets
(e.g. Filelight, DaisyDisk, WinDirStat, JDiskReport, TreeSize, SpaceSniffer, ...),
but instead of a fancy GUI with animated pie charts and shaded boxes
you get a funky "ASCII art style hierarchical tree of bars" in your shell.
If that didn't make a lot of sense to you, look at this example of this ``/opt`` folder::

    $ duviz /opt
    ________________________________________________________________________________
    [                                     /opt                                     ]
    [____________________________________3.30GB____________________________________]
    [                                    local                                     ]
    [____________________________________3.30GB____________________________________]
    [              var              ][        lib         ][ share  ][Libr][lib][]|
    [_____________1.36GB____________][______925.47MB______][411.37MB][231.][222][]|
    [           macports           ]|[gcc][gcc4][]|||      [][]||||||[Fra]|[gc] |
    [____________1.36GB____________]|[250][226.][]|||      [][]||||||[231]|[21] |
    [    software    ][distfile][]| |           ||  |      | ||||||||[Pyt] [x8]
    [____785.31MB____][421.56MB][]| |           ||  |      | ||||||||[231] [21]
    [gc][][]||||||||||||||||||||[]               |            ||| |  [Ve]  ||[]
    [17][][]||||||||||||||||||||[]               |            ||| |  [23]  ||[]


Features
--------

- Basically it consists of just one Python 3 script ``duviz.py``.
  No installation required: put it where you want it. Use it how you want it.
- Only uses standard library and just depends on ``du`` and ``ls`` utilities,
  which are available out of the box on a typical Unix platform (Linux, macOS)
- Speed. No need to wait for a GUI tool to get up and running, let alone scanning your disk.
  The hard work is done by ``du`` (or ``ls``), which run an C-speed.
- Progress reporting while you wait. Be hypnotized!
- Detects your terminal width for maximum visualization pleasure.
- Not only supports "disk usage" based on file size,
  but also allows to count files (inode count mode)
  or give a size breakdown of ZIP or tar files.
- Option to use terminal colors for the boxes instead of ASCII art


Installation
------------

Pip based
    duviz can be installed with pip in a desired virtual environment::

        pip install duviz

    which will install a ``duviz`` command line utility in your environment.

    If you already have `pipx <https://pypa.github.io/pipx/>`_ on your toolbelt,
    you might prefer to install duviz in an automatically managed,
    isolated environment with ``pipx install duviz``.

With Homebrew
    duviz can also be installed with `Homebrew <https://brew.sh/>`_::

        brew install https://raw.github.com/soxofaan/duviz/master/extra/homebrew/duviz.rb

No installation
    The file ``duviz.py`` is also designed to be usable as a standalone Python script,
    without having to install it.
    Download ``duviz.py`` and just run it::

        python path/to/duviz.py


Python 2 Support
~~~~~~~~~~~~~~~~

``duviz`` was originally (2009) a Python 2 script, and started supporting Python 3 around 2016.
With the end of life of Python 2 nearing in 2019, support for Python 2 was dropped.
The Python 2 compatible version can be found in the ``py2-compatible`` branch (last release: 1.1.1).

Usage
-----

If you run ``duviz`` without arguments, it will render the disk usage of the current working folder.
If you specify one or more directories, it will render the usage of those directories, how intuitive is that!

Instead of size in bytes, you can also get inode usage: just use the option ``--inodes`` (or ``-i`` in short).

If you directly pass ``duviz`` a ZIP or tar file,
it will visualize the size breakdown of the file tree in the ZIP/tar file.
In case of ZIP files, the compressed size will be shown by default
(option ``--unzip-size`` will toggle showing of decompressed size).
For tar files, only the decompressed size is available.

Run it with option ``--help`` for more options.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/soxofaan/duviz",
    "name": "duviz",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "disk usage visualization asciiart",
    "author": "Stefaan Lippens",
    "author_email": "",
    "download_url": "",
    "platform": null,
    "description": ".. image:: https://img.shields.io/pypi/pyversions/duviz\n    :target: https://pypi.org/project/duviz/\n    :alt: PyPI - Python Version\n.. image:: https://github.com/soxofaan/duviz/actions/workflows/unittests.yml/badge.svg?branch=master\n    :target: https://github.com/soxofaan/duviz/actions/workflows/unittests.yml\n    :alt: unit tests\n.. image:: https://github.com/soxofaan/duviz/actions/workflows/pre-commit.yml/badge.svg?branch=master\n    :target: https://github.com/soxofaan/duviz/actions/workflows/pre-commit.yml\n    :alt: pre-commit\n\n\nWhat is duviz?\n--------------\n\n``duviz`` is a (Python 3) command-line tool to visualize disk space usage.\n\nIt's like the plethora of desktop applications and widgets\n(e.g. Filelight, DaisyDisk, WinDirStat, JDiskReport, TreeSize, SpaceSniffer, ...),\nbut instead of a fancy GUI with animated pie charts and shaded boxes\nyou get a funky \"ASCII art style hierarchical tree of bars\" in your shell.\nIf that didn't make a lot of sense to you, look at this example of this ``/opt`` folder::\n\n    $ duviz /opt\n    ________________________________________________________________________________\n    [                                     /opt                                     ]\n    [____________________________________3.30GB____________________________________]\n    [                                    local                                     ]\n    [____________________________________3.30GB____________________________________]\n    [              var              ][        lib         ][ share  ][Libr][lib][]|\n    [_____________1.36GB____________][______925.47MB______][411.37MB][231.][222][]|\n    [           macports           ]|[gcc][gcc4][]|||      [][]||||||[Fra]|[gc] |\n    [____________1.36GB____________]|[250][226.][]|||      [][]||||||[231]|[21] |\n    [    software    ][distfile][]| |           ||  |      | ||||||||[Pyt] [x8]\n    [____785.31MB____][421.56MB][]| |           ||  |      | ||||||||[231] [21]\n    [gc][][]||||||||||||||||||||[]               |            ||| |  [Ve]  ||[]\n    [17][][]||||||||||||||||||||[]               |            ||| |  [23]  ||[]\n\n\nFeatures\n--------\n\n- Basically it consists of just one Python 3 script ``duviz.py``.\n  No installation required: put it where you want it. Use it how you want it.\n- Only uses standard library and just depends on ``du`` and ``ls`` utilities,\n  which are available out of the box on a typical Unix platform (Linux, macOS)\n- Speed. No need to wait for a GUI tool to get up and running, let alone scanning your disk.\n  The hard work is done by ``du`` (or ``ls``), which run an C-speed.\n- Progress reporting while you wait. Be hypnotized!\n- Detects your terminal width for maximum visualization pleasure.\n- Not only supports \"disk usage\" based on file size,\n  but also allows to count files (inode count mode)\n  or give a size breakdown of ZIP or tar files.\n- Option to use terminal colors for the boxes instead of ASCII art\n\n\nInstallation\n------------\n\nPip based\n    duviz can be installed with pip in a desired virtual environment::\n\n        pip install duviz\n\n    which will install a ``duviz`` command line utility in your environment.\n\n    If you already have `pipx <https://pypa.github.io/pipx/>`_ on your toolbelt,\n    you might prefer to install duviz in an automatically managed,\n    isolated environment with ``pipx install duviz``.\n\nWith Homebrew\n    duviz can also be installed with `Homebrew <https://brew.sh/>`_::\n\n        brew install https://raw.github.com/soxofaan/duviz/master/extra/homebrew/duviz.rb\n\nNo installation\n    The file ``duviz.py`` is also designed to be usable as a standalone Python script,\n    without having to install it.\n    Download ``duviz.py`` and just run it::\n\n        python path/to/duviz.py\n\n\nPython 2 Support\n~~~~~~~~~~~~~~~~\n\n``duviz`` was originally (2009) a Python 2 script, and started supporting Python 3 around 2016.\nWith the end of life of Python 2 nearing in 2019, support for Python 2 was dropped.\nThe Python 2 compatible version can be found in the ``py2-compatible`` branch (last release: 1.1.1).\n\nUsage\n-----\n\nIf you run ``duviz`` without arguments, it will render the disk usage of the current working folder.\nIf you specify one or more directories, it will render the usage of those directories, how intuitive is that!\n\nInstead of size in bytes, you can also get inode usage: just use the option ``--inodes`` (or ``-i`` in short).\n\nIf you directly pass ``duviz`` a ZIP or tar file,\nit will visualize the size breakdown of the file tree in the ZIP/tar file.\nIn case of ZIP files, the compressed size will be shown by default\n(option ``--unzip-size`` will toggle showing of decompressed size).\nFor tar files, only the decompressed size is available.\n\nRun it with option ``--help`` for more options.\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Command line disk space visualization tool",
    "version": "3.2.0",
    "split_keywords": [
        "disk",
        "usage",
        "visualization",
        "asciiart"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "b835cb50e16dbebc906522733c19694a",
                "sha256": "4db6d04edbca21d030e1b292d9fda7c38e715e3190120b57f23b666558244981"
            },
            "downloads": -1,
            "filename": "duviz-3.2.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "b835cb50e16dbebc906522733c19694a",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 10492,
            "upload_time": "2022-12-18T10:23:53",
            "upload_time_iso_8601": "2022-12-18T10:23:53.579858Z",
            "url": "https://files.pythonhosted.org/packages/1c/df/5daf01ff153194ff9f8b3c516b873b82c70e8ab1736b1008e22b2ab32142/duviz-3.2.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-12-18 10:23:53",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "soxofaan",
    "github_project": "duviz",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "duviz"
}
        
Elapsed time: 0.01900s