Metadata-Version: 2.1
Name: ApplyEnv
Version: 1.0.57
Summary: Populate variables in a tree-like schema
Home-page: https://github.com/
Author: ApplyEnv
Author-email: applyenv@protonmail.ch
License: UNKNOWN
Description: # Applies values from a flat dict ("environment") to a tree-like structure ("schema"). 
        
        
        ## Examples
        
        ```
            >>> from applyenv import apply
            >>> schema = dict(a="A", b=dict(c="C"))
            >>> environ = dict(A=3, C=5)
            >>> apply(schema, environ)
            {'a': 3, b: {'c': 5}} 
        
        ```
        
        Note: feel free to use os.environ to populate env values directly into your schema.
        
        
Platform: UNKNOWN
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
