Metadata-Version: 2.1
Name: are-you-sure
Version: 1.0.2
Summary: Simple decorator to check before running
Home-page: https://github.com/simonwardjones/are_you_sure
Author: Simon Ward-Jones
Author-email: simonwardjones16@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python
Description-Content-Type: text/markdown

# Are you sure

Simple decorator to ask before evaluating a function (just one very simple function)

## Usage example

```python
from are_you_sure import are_you_sure

@are_you_sure
def dangerous_function(*args, **kwargs):
    print(f'Running {dangerous_function.__name__} with {args,kwargs}')

if __name__ == '__main__':
    dangerous_function(1, "arg_example", name='lol')

```

