Metadata-Version: 2.1
Name: python-window-recorder
Version: 0.7
Summary: Background window recorder
Home-page: https://github.com/xjxckk/window-recorder/
Description-Content-Type: text/markdown

### window-recorder
Background window recorder

Installation:
`pip install python-window-recorder`

```
from window-recorder import Recorder
from time import sleep

recorder = Recorder('New Tab - Google Chrome')
print('Starting recording')
recorder.start(folder='recordings', filename='test')
sleep(3)
print('Stopping recording')
recorder.stop()
> Video saved as test_20240629-190811.mp4
```
