Metadata-Version: 2.1
Name: bettertime
Version: 1.0.0
Summary: Library converting string date expressions to seconds [int].
Home-page: https://github.com/DarkJoij/bettertime
Author: Dallas
License: MIT License
Description: # Better Time
        **Better Time** - is a Python library, converting string date expressions to seconds [int].
        
        # Installition
        #### PyPI:
        ```py
        $ [py -m] pip install bettertime
        ```
        #### GitHub:
        ```py
        $ git clone https://github.com/DarkJoij/bettertime
        ```
        
        # Examples
        #### Converting from string expressions to seconds:
        ```py
        from bettertime import to_seconds
        
        print(to_seconds('5hours 30minutes'))
        ```
        ```py
        19800
        ```
        
        #### Converting from seconds to string expressions:
        ```py
        from bettertime import to_string
        
        print(to_string(793800, language='en'))
        ```
        ```py
        9d 4h 30m
        ```
        
        * Function `to_seconds` take parameter `expression: str`.
        * Function `to_string` take 2 parameters: `seconds: int`, `language: 'ru' | 'en' = 'ru'`.
        
        To see all dates aliases check file [bettertime/parser.py](https://github.com/DarkJoij/bettertime/blob/main/bettertime/parser.py). 
        
        Sweet using and building your lovely dsbots)
Platform: UNKNOWN
Description-Content-Type: text/markdown
