iripau 0.1.0__py3-none-any.whl → 1.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- iripau/subprocess.py +2 -3
- {iripau-0.1.0.dist-info → iripau-1.0.0.dist-info}/METADATA +2 -2
- {iripau-0.1.0.dist-info → iripau-1.0.0.dist-info}/RECORD +6 -6
- {iripau-0.1.0.dist-info → iripau-1.0.0.dist-info}/WHEEL +0 -0
- {iripau-0.1.0.dist-info → iripau-1.0.0.dist-info}/licenses/LICENSE +0 -0
- {iripau-0.1.0.dist-info → iripau-1.0.0.dist-info}/top_level.txt +0 -0
iripau/subprocess.py
CHANGED
@@ -5,7 +5,6 @@ This module relies on the following system utilities being installed:
|
|
5
5
|
* bash
|
6
6
|
* kill
|
7
7
|
* pstree
|
8
|
-
* sudo
|
9
8
|
* tee
|
10
9
|
"""
|
11
10
|
|
@@ -239,13 +238,13 @@ class Popen(subprocess.Popen):
|
|
239
238
|
|
240
239
|
def terminate_tree(self):
|
241
240
|
run(
|
242
|
-
["
|
241
|
+
["kill"] + self.get_pids(),
|
243
242
|
stdin=DEVNULL, stdout=DEVNULL, stderr=DEVNULL,
|
244
243
|
)
|
245
244
|
|
246
245
|
def kill_tree(self):
|
247
246
|
run(
|
248
|
-
["
|
247
|
+
["kill", "-9"] + self.get_pids(),
|
249
248
|
stdin=DEVNULL, stdout=DEVNULL, stderr=DEVNULL,
|
250
249
|
)
|
251
250
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: iripau
|
3
|
-
Version:
|
3
|
+
Version: 1.0.0
|
4
4
|
Summary: Python utilities focused on command execution
|
5
5
|
Author: Ricardo Quezada
|
6
6
|
Maintainer: Ricardo Quezada
|
@@ -9,7 +9,7 @@ Project-URL: Repository, https://github.com/ricardo-galo/iripau
|
|
9
9
|
Project-URL: Bug Tracker, https://github.com/ricardo-galo/iripau/issues
|
10
10
|
Project-URL: Changelog, https://github.com/ricardo-galo/iripau/blob/master/CHANGELOG.md
|
11
11
|
Keywords: subprocess,command,local,remote,ssh,Linux,real-time,log,logging,threading,utilities
|
12
|
-
Classifier: Development Status ::
|
12
|
+
Classifier: Development Status :: 5 - Production/Stable
|
13
13
|
Classifier: Programming Language :: Python
|
14
14
|
Requires-Python: >=3.7
|
15
15
|
Description-Content-Type: text/markdown
|
@@ -4,10 +4,10 @@ iripau/functools.py,sha256=Jyi0LdOx36Ih6s9TF4aFS3Xk-RW78YE2znB1PBWTAIo,2901
|
|
4
4
|
iripau/logging.py,sha256=dA-69y5MN8a_c95e_DOlULO0tc7t267okFi9iqJzrmg,2542
|
5
5
|
iripau/random.py,sha256=zC5GxmBdfVa6nAUZcv5gCLwBpZU3sA1TB71Cn311lHo,1023
|
6
6
|
iripau/shutil.py,sha256=HwU4sUrStzAZjqbIMK7xm-NfjxMXHZx4lWAjwfBf4rw,2558
|
7
|
-
iripau/subprocess.py,sha256=
|
7
|
+
iripau/subprocess.py,sha256=71J2wmOyTHPL2q-Y-OptOTziC5ftf72INo_WK9EOTPw,16335
|
8
8
|
iripau/threading.py,sha256=q-a6OuDrz3hg_5u2Q0eMG3hzu_IgGNBfEw-cI_pyaDo,8955
|
9
|
-
iripau-
|
10
|
-
iripau-
|
11
|
-
iripau-
|
12
|
-
iripau-
|
13
|
-
iripau-
|
9
|
+
iripau-1.0.0.dist-info/licenses/LICENSE,sha256=HyVuytGSiAUQ6ErWBHTqt1iSGHhLmlC8fO7jTCuR8dU,16725
|
10
|
+
iripau-1.0.0.dist-info/METADATA,sha256=qKygECoZsLVoLtgyCe8LfO4Z3uFqQEqMT__JbI1FkHM,787
|
11
|
+
iripau-1.0.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
12
|
+
iripau-1.0.0.dist-info/top_level.txt,sha256=y2HMFLCoP2EP7kbRIqkyCVIf_YRZfA0cYYLNK28U9cY,7
|
13
|
+
iripau-1.0.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|