monkeytoolbox 0.1.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.
- CHANGELOG.md +15 -0
- README.md +14 -0
- monkeytoolbox/__init__.py +34 -0
- monkeytoolbox/code_utils.py +160 -0
- monkeytoolbox/decorators.py +66 -0
- monkeytoolbox/environment.py +38 -0
- monkeytoolbox/file_utils.py +78 -0
- monkeytoolbox/network_utils.py +53 -0
- monkeytoolbox/secure_directory.py +88 -0
- monkeytoolbox/secure_file.py +85 -0
- monkeytoolbox/threading.py +140 -0
- monkeytoolbox/windows_permissions.py +52 -0
- monkeytoolbox-0.1.0.dist-info/LICENSE +677 -0
- monkeytoolbox-0.1.0.dist-info/METADATA +36 -0
- monkeytoolbox-0.1.0.dist-info/RECORD +16 -0
- monkeytoolbox-0.1.0.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: monkeytoolbox
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Miscellaneous convenience utilities for Python programs
|
|
5
|
+
Home-page: https://github.com/guardicode/monkeytoolbox
|
|
6
|
+
License: GPLv3
|
|
7
|
+
Author: Ilija Lazoroski
|
|
8
|
+
Author-email: ilija.la@live.com
|
|
9
|
+
Requires-Python: >=3.11,<4.0
|
|
10
|
+
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
|
11
|
+
Classifier: License :: Other/Proprietary License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
14
|
+
Requires-Dist: egg-timer
|
|
15
|
+
Requires-Dist: ifaddr
|
|
16
|
+
Requires-Dist: monkey-types
|
|
17
|
+
Requires-Dist: psutil (>=5.7.0)
|
|
18
|
+
Requires-Dist: pywin32 ; sys_platform == "win32"
|
|
19
|
+
Project-URL: Repository, https://github.com/guardicode/monkeytoolbox
|
|
20
|
+
Description-Content-Type: text/markdown
|
|
21
|
+
|
|
22
|
+
# monkeytoolbox
|
|
23
|
+
|
|
24
|
+
This project contains a collection of convenience functions, classes, and
|
|
25
|
+
utilities written in Python. It is used mainly by [Infection
|
|
26
|
+
Monkey](https://github.com/guardicore/monkey).
|
|
27
|
+
|
|
28
|
+
## Installation
|
|
29
|
+
`pip install monkeytoolbox`
|
|
30
|
+
|
|
31
|
+
## Running tests
|
|
32
|
+
```
|
|
33
|
+
$> poetry install
|
|
34
|
+
$> poetry run pytest
|
|
35
|
+
```
|
|
36
|
+
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
CHANGELOG.md,sha256=j-PoKpkEAxKG2Yc69glm5esCQojGbz2FtWjc1840z98,346
|
|
2
|
+
README.md,sha256=ZOercnjzgT1CcA3bR_6Pg-i-p-xCUYsj7ShRZi_pfg0,309
|
|
3
|
+
monkeytoolbox/__init__.py,sha256=tuvDfZx3XsucGnsoLjFaIW7O_iRjRb2L5-NvuuQDPYU,861
|
|
4
|
+
monkeytoolbox/code_utils.py,sha256=3JefNrkhMJnxsfFBtKN9Ki9Qa-t_cXeBi7Pu-RfmfOs,5261
|
|
5
|
+
monkeytoolbox/decorators.py,sha256=qsQZzeugiSJv5nmgVgx4TEfgO1DDgHFUbMopcEv9GgI,2214
|
|
6
|
+
monkeytoolbox/environment.py,sha256=p3IYsFYqlcGj3rVF-Tp4-qaXqD_fQ-MOQw48P460fYo,1067
|
|
7
|
+
monkeytoolbox/file_utils.py,sha256=6fUtFd9k0Eb-5e38fDQAPPGMHqALcpvu8vezhWvH7R0,1868
|
|
8
|
+
monkeytoolbox/network_utils.py,sha256=grdmj8l5hBmTh1Fy9UO1j2j6gIBqsN4i09Zao0785E0,1664
|
|
9
|
+
monkeytoolbox/secure_directory.py,sha256=FMtriWLY04m8YXGHEe_gEZfeCBJ0IpLhmyH8HvN7BCc,2695
|
|
10
|
+
monkeytoolbox/secure_file.py,sha256=aAXwoqtIdhlkykajNqMLmafTt5HeN14f5zrFgbPKcHU,2677
|
|
11
|
+
monkeytoolbox/threading.py,sha256=6Z2PHhLigOXxLOhE3WniabQ5HgNlqQNTTBPM6xi66e4,4578
|
|
12
|
+
monkeytoolbox/windows_permissions.py,sha256=jym55x5-fvH2t6_BsixUIGAbkk6ovKkHsGkHkjsqWFM,1845
|
|
13
|
+
monkeytoolbox-0.1.0.dist-info/LICENSE,sha256=8vSVUSGQNLw3jNk-6LogMp9dkBcAS103yGyzS78mIjs,35255
|
|
14
|
+
monkeytoolbox-0.1.0.dist-info/METADATA,sha256=raF0lxDlgkOIlySAS6GYK9511JEwNe5ODexJtyWKAng,1078
|
|
15
|
+
monkeytoolbox-0.1.0.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
16
|
+
monkeytoolbox-0.1.0.dist-info/RECORD,,
|