Metadata-Version: 1.0
Name: shamus
Version: 0.3
Summary: Small python decorator for basic method time and memory usage.
Home-page: https://github.com/marinko-peso/shamus
Author: Marinko Peso
Author-email: marinko.peso@gmail.com
License: MIT
Description: # shamus
        [![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103)](https://github.com/ellerbrock/open-source-badges/)
        [![MIT Licence](https://badges.frapsoft.com/os/mit/mit.png?v=103)](https://opensource.org/licenses/mit-license.php)
        [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)
        
        Small python decorator for basic method time and memory usage.
        
        ## Installation
        
        > Work in progress, so far copy paste and manual import
        
        ## Usage
        
        ```python
        from shamus import shamus
        
        @shamus
        def your_method():
            do_stuff = 'here'
        ```
        
        ## Output
        
        ```sh
        --
        Shamus analysis for [your_method]:
         -> Memory: 24.2578 [MB]
         -> Time:   1.8644 [s]
        --
        ```
        
        ## License
        
        MIT
        
Keywords: decorator memory time method
Platform: UNKNOWN
