MSRCPoC 99.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.
@@ -0,0 +1,12 @@
1
+ Metadata-Version: 2.5
2
+ Name: MSRCPoC
3
+ Version: 99.0.0
4
+ Summary: My awesome Python package for testing
5
+ Author-email: Joex <testing@joex.com>
6
+ License: MIT
7
+ Requires-Python: >=3.8
8
+ Description-Content-Type: text/markdown
9
+
10
+ # Install
11
+
12
+ Python Package for Testing
@@ -0,0 +1,5 @@
1
+ src/__init__.py,sha256=sj9wIm70R-WOoeYuJaJ_kGbbvofyK2yRnv_sNflJPCQ,23
2
+ src/main.py,sha256=WJF8RRqGuqXx3hMCnexXrTcTxbEzGC9vpxVo3rCmzj4,150
3
+ msrcpoc-99.0.0.dist-info/METADATA,sha256=zCJ3NZnsUhi36GJ_Hm7SA1b5fNK1RsatxSOJ0YuKFco,251
4
+ msrcpoc-99.0.0.dist-info/WHEEL,sha256=zOwg4jB6zX2kU910N-cMawjivD6tO8NEWvE12je1bVk,87
5
+ msrcpoc-99.0.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.32.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
src/__init__.py ADDED
@@ -0,0 +1 @@
1
+ from .main import hello
src/main.py ADDED
@@ -0,0 +1,5 @@
1
+ import subprocess
2
+
3
+ def hello():
4
+ output = subprocess.check_output(["whoami"], text=True)
5
+ return f"Hacked by Joex!! your username: {output}"