Metadata-Version: 2.3
Name: decoraid
Version: 0.0.15
Summary: A set of usefull Python decorator's. 
License: MIT
Author: ankit k
Author-email: ankit48365@gmail.com
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
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: Programming Language :: Python :: 3.13
Project-URL: Repository, https://github.com/ankit48365/decoraid
Description-Content-Type: text/markdown

# decoraid stands for Decorator Aid :) -->

pip install decoraid
decoraid --example  or decoraid --help

decoraid/
├── decoraid/
│   ├── __init__.py
│   └── cpdec.py
├── dist/
├── tests/
│   └── test_cpdec.py
├── pyproject.toml
├── README.md


# sample usage: -->
wrap the decorator around the function you want to test, provide the name of the package and the path to the virtual environment

    from decoraid.cpdec import check_package
    
    venv_path = "C:/projects/git/xxxx/.venv/" 
    
    
    @check_package("pandas", venv_path)
    
    def test_pandas():
    
        print('test_cpdec')
    
    if __name__ == "__main__":
    
        test_pandas()

