Metadata-Version: 2.1
Name: mime-common
Version: 0.2.7
Summary: Some reusable libraries for properties, logging, console
Home-page: https://www.vegvesen.no
Author: Bjørne Malmanger
Author-email: bjorne.malmanger@vegvesen.no
License: UNKNOWN
Description: # Mime Common
        
        An package containing misc helper libraries for projects
        
        * console - contains Console class for terminal output including som coler support
        * logg - A logging wrapper that do some standardisation
        * properties - A wrapper for properties that support reading different value types like logglevel, integer, string and boolean
        
        ## Installation
        
        Run the following to install:
        
        ```python
        pip install mime-common
        ```
        
        ## Usage
        
        ```python
        from console import Console
        
        cons = Console(use_colors=True)
        
        cons.green("Hello World")
        ```
        
        # Developing Mime Common
        
        To install Mime Common, along with the tools you need to develop and run tests, run the following in your virtualenv:
        
        ```bash
        $ pip install -e .[dev]
        ```
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Provides-Extra: dev
