Metadata-Version: 2.1
Name: standpy
Version: 0.1.0
Summary: Standby prevention module.
Home-page: UNKNOWN
Author: Pedro Maciel Xavier
Author-email: pedromxavier@poli.ufrj.br
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Requires-Python: <4,>=3.9
Description-Content-Type: text/markdown
Requires-Dist: oswhich

# standpy
Cross-Platform Python Standby Lock

## Usage
```python
from standpy import StandbyLock, standby_lock

## For code blocks
with StandbyLock():
    ## do something
    do_something()
## System waited without going idle.

## In function calls
@standby_lock
def foo(*args, **kwargs):
    return bar(*args, **kwargs)

## System will wait for `foo` to return.
foo()
```

