Metadata-Version: 2.1
Name: CapPy-Python
Version: 0.0.6
Summary: Python package for easy window capturing
Home-page: https://github.com/GE0NE/CapPy
Author: GEONE
Author-email: geonegames@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: Operating System :: Microsoft :: Windows :: Windows 8.1
Classifier: Operating System :: Microsoft :: Windows :: Windows 8
Classifier: Operating System :: Microsoft :: Windows :: Windows 7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown
Requires-Dist: numpy (>=1.15.0)
Requires-Dist: pillow (>=5.0.0)
Requires-Dist: pywin32 (>=224)
Requires-Dist: psutil (>=5.4.3)

# CapPy
A Pillow wrapper for easy window capturing and window data acquisition.

Examples:
```
import cappy as cpy
window = cpy.match_window('notepad.exe')
```
---
```
import cappy as cpy
window = cpy.match_window('mspaint.exe')
print(window.process, window.pid, window.tid, window.hwnd)
>mspaint.exe 9024 6024 1048826
```
---
```
import cappy as cpy
window = cpy.match_window('GTA5.exe')
while(window.alive):
    cpy.cv2_record(window)
cpy.cv2_dispose()
```
---
```
import cappy as cpy
windows_out = []
cpy.retrieve_windows(windows_out)
for window in windows_out:
    print(window.name)
>Calculator
>Untitled - Notepad
>#general - Discord
>Google - Mozilla Firefox
>Steam
>...
```

