Metadata-Version: 2.1
Name: n8.butler
Version: 0.0.2
Summary: It does a few things
Home-page: https://github.com/nidelva/butler
Author: Nidelva
Author-email: hi@n8.pm
License: MIT
Description: # Butler 0.0.2
        It just works. This is basically just a random package.
        
        ## Shorten big numbers
        Starts shortening at thousand and stops at trillion.
        ```python
        from butler import numbers
        numbers.shorten(10000000)
        ```
        Outputs: 10M
        
        ## Countdowns
        Countdown to day and hour
        ```python
        from butler import countdown
        countdown.day_and_hour('monday', 12)
        ```
        Output: [days, hours, minutes, seconds]
        
        Countdown to hour
        ```python
        from butler import countdown
        countdown.hour(12)
        ```
        Ouput: [hours, minutes, seconds]
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
