Metadata-Version: 2.0
Name: subprocess-maximize
Version: 0.9.3
Summary: Popen with process-priority and window-state
Home-page: https://github.com/HenkHcks/subprocess_maximize
Author: Henk
Author-email: UNKNOWN
License: MIT
Keywords: Popen subprocess
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6

subprocess\_maximize
--------------------

This library supplies a Popen implementation that supports
process-priority and window-state properties for Windows. On other
operating systems it works like Popen.

Two parameters are added to Popen, ``show`` for the window-state, and
``priority`` for the process-priority. ``priority`` can have any integer
value from ``0``\ (idle) to ``5``\ (realtime), ``2`` being the default
indicating normal priorty. ``show`` can either be a value from ``0`` to
``3``, or any of the following keywords: ``hide``, ``hidden``,
``minimize``, ``minimized``, ``normal``, ``maximize``, ``maximized``

Any improvements are welcome.

Usage
=====

\`\`\` from subprocess\_maximize import Popen

Popen('notepad.exe',show='maximize', priority=0) \`\`\`

Notes: \* Currently untested with Python 2.x

Install
=======

``conda install subprocess_maximize``

or

``pip install subprocess_maximize``


