Metadata-Version: 2.1
Name: parsems
Version: 1.0.4
Summary: Parse milliseconds into a Dictionary
Home-page: https://yoginth.com
Author: Yoginth
Author-email: me@yoginth.com
License: UNKNOWN
Project-URL: Patreon, https://www.patreon.com/yoginth
Project-URL: Source, https://gitlab.com/yoginth/parsems
Description: ## Parse ms
        
        > Parse milliseconds into a Dictionary
        
        ## Demo
        
        Demo on [Repl.it](https://repl.it/@yoginth/parsems)
        
        ## Screenshot
        
        <img src="https://gitlab.com/yoginth/parsems/raw/master/Screenshot.png" width="550">
        
        ## Install
        
        ```
        $ pip install parsems
        ```
        
        ## Usage
        
        ```python
        from parsems import parseMs
        
        parseMs(2449850001)
        
        """
        {
        	'days': 28,
        	'hours': 8,
        	'minutes': 30,
        	'seconds': 50,
        	'milliseconds': 1,
        	'microseconds': 0,
        	'nanoseconds': 0
        }
        """
        ```
        
        ## Thanks
        
        - [Sindresorhus's parse-ms](https://github.com/sindresorhus/parse-ms)
        
        ## License
        
        [MIT][license] Yoginth
        
        [LICENSE]: https://mit.yoginth.com
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Natural Language :: English
Classifier: Environment :: Plugins
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
