├── .gitignore ├── .travis.yml └── README.rst /.gitignore: -------------------------------------------------------------------------------- 1 | *.egg 2 | *.egg-info 3 | .coverage 4 | .eggs/ 5 | /.tox 6 | /build 7 | /dist 8 | /env 9 | /qa_reports 10 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: python 2 | python: 3 | - "2.7" 4 | - "3.5" 5 | script: nosetests --with-coverage --cover-erase --cover-package=ohmu 6 | before_install: 7 | pip install -e . && pip install codecov 8 | after_success: 9 | codecov 10 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- 1 | This repository has been moved to `gitlab.com/paul-nechifor/ohmu `_. 2 | ========================================================================================================== 3 | 4 | Old readme: 5 | 6 | Ohmu 7 | ==== 8 | 9 | View space usage in your terminal. 10 | 11 | .. image:: https://img.shields.io/travis/paul-nechifor/ohmu.svg?style=flat-square 12 | :target: https://travis-ci.org/paul-nechifor/ohmu 13 | 14 | .. image:: https://img.shields.io/codecov/c/github/paul-nechifor/ohmu.svg?style=flat-square 15 | :target: https://codecov.io/github/paul-nechifor/ohmu 16 | 17 | .. image:: https://img.shields.io/pypi/v/ohmu.svg?style=flat-square 18 | :target: https://pypi.python.org/pypi/ohmu 19 | 20 | .. image:: https://img.shields.io/pypi/dm/ohmu.svg?style=flat-square 21 | :target: https://pypi.python.org/pypi/ohmu 22 | 23 | .. image:: https://img.shields.io/pypi/l/ohmu.svg?style=flat-square 24 | :target: http://opensource.org/licenses/MIT 25 | 26 | .. image:: animation.gif 27 | 28 | Usage 29 | ----- 30 | 31 | Install the Python headers (TODO: specify the commands on every major OS.) 32 | 33 | Install (prefix with ``sudo`` if you need to):: 34 | 35 | pip install ohmu --user --upgrade 36 | 37 | Scan the current directory:: 38 | 39 | ohmu 40 | 41 | Scan some random directory:: 42 | 43 | ohmu some/random/dir 44 | 45 | Development 46 | ----------- 47 | 48 | Make sure you have Tox_ installed globally. 49 | 50 | Run the tests with:: 51 | 52 | tox 53 | 54 | License 55 | ------- 56 | 57 | MIT 58 | 59 | .. _Tox: https://tox.readthedocs.io/en/latest/ 60 | --------------------------------------------------------------------------------