Metadata-Version: 2.1
Name: paddypy
Version: 0.0.3
Summary: Collection of helpfull appconfiguration extensions
Author: broom (Patrik)
Author-email: <patrikhartl@googlemail.com>
Keywords: python,appconfiguration,azure
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Environment :: Web Environment
Description-Content-Type: text/markdown
License-File: LICENSE


# appapy



Under construction! Not ready for use yet! Currently experimenting and planning!



Developed by Patrik Hart (c) 2022



## Examples of How To Use (Alpha Version)



 Print and get azure app-configuration keys and flags



```python

from appapy import access

# does a logging print out of the azure app-configuration keys and flags.

access.listConfig()



# gets the lastest value for a given key

# deactivate_kv_access choose if kv-ref should be accessed (access policies need to be correct)  

value = access.getValue(key=key_query, deactivate_kv_access=True) 

logging.info("Lastest value: " + value)
