Metadata-Version: 2.1
Name: mainprocess
Version: 0.10
Summary: Runs EXE-files as independent main processes
Home-page: https://github.com/hansalemaos/mainprocess
Author: Johannes Fischer
Author-email: <aulasparticularesdealemaosp@gmail.com>
License: MIT
Keywords: subprocess,run,os
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Scientific/Engineering :: Visualization
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Editors :: Text Processing
Classifier: Topic :: Text Processing :: General
Classifier: Topic :: Text Processing :: Indexing
Classifier: Topic :: Text Processing :: Filters
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
License-File: LICENSE.rst


# Runs EXE-files as independent main processes



## pip install mainprocess





```python

from mainprocess import mainprocess

# cmd.exe and notepad.exe won't be subprocesses of python.exe

# If you close python.exe, they won't be closed automatically

mainprocess(["cmd.exe"])

mainprocess(["notepad.exe", r"C:\ipconfigdata.txt"])

```

