Metadata-Version: 2.4
Name: duk
Version: 1.0.2
Summary: Python wrapper around the du -ks command. It will show you a histogram of the disk usage in a directory
Author: Werner Van Geit
License: Duk
        
        Duk is licensed under the LGPL, unless noted otherwise, e.g., for external 
        dependencies. See file LGPL.txt for the full license. 
        Examples and test are BSD-licensed.
        External dependencies are either LGPL or BSD-licensed. 
        See file ACKNOWLEDGEMENTS.txt and AUTHORS.txt for further details.
        
        Copyright (C) 2005-2015, Werner Van Geit. 
        
        This program is free software: you can redistribute it and/or modify it under 
        the terms of the GNU Lesser General Public License as published by the 
        Free Software Foundation, either version 3 of the License, or (at your option) 
        any later version.
        
        This program is distributed in the hope that it will be useful, 
        but WITHOUT ANY WARRANTY; 
        without even the implied warranty of 
        MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
        
        See the GNU Lesser General Public License for more details.
        
        You should have received a copy of the GNU Lesser General Public License 
        along with this program.  If not, see <http://www.gnu.org/licenses/>.
        
Project-URL: homepage, https://github.com/wvangeit/duk
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Classifier: Topic :: Utilities
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE.txt
License-File: AUTHORS.txt
Dynamic: license-file

[![Build Status](https://travis-ci.org/wvangeit/duk.svg?branch=master)](https://travis-ci.org/wvangeit/duk)

Introduction
============

Duk is a commandline utility that wraps around the linux 'du -ks' command.
It will show you a histogram of the disk usage in a directory:

```bash
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

Statistics of directory "." :

in kByte       in %   histogram            Name      
4              1.39   #                    .gitignore
4              1.39   #                    setup.py  
4              1.39   #                    .travis.yml
4              1.39   #                    README.md 
12             4.17   ##                   dist/     
12             4.17   ##                   duk/      
12             4.17   ##                   build/    
16             5.56   ##                   duk.egg-info/
220            76.39  #################### .git/     

Total directory size: 288 kByte
```

Installation                                                                     
============

The easiest way to install duk is to use [pip](https://pip.pypa.io)             

```bash                                                                          
pip install duk                                                                 
```          

In case you're not in a python virtualenv, or don't have administrator access on your computer, you could use:

```bash                                                                          
pip install --user duk                                                                 
```    
