├── .github └── FUNDING.yml ├── LICENSE ├── README.md ├── requirements.txt ├── screenshot ├── __init__.py ├── get_window_id.py └── screencapture.py └── setup.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [alexdelorenzo] 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdelorenzo/screenshot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdelorenzo/screenshot/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | click 2 | pyobjc-framework-Quartz -------------------------------------------------------------------------------- /screenshot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /screenshot/get_window_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdelorenzo/screenshot/HEAD/screenshot/get_window_id.py -------------------------------------------------------------------------------- /screenshot/screencapture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdelorenzo/screenshot/HEAD/screenshot/screencapture.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdelorenzo/screenshot/HEAD/setup.py --------------------------------------------------------------------------------