shadowshell 0.0.1__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,10 @@
1
+ Metadata-Version: 2.2
2
+ Name: shadowshell
3
+ Version: 0.0.1
4
+ Summary: shadowshell.xyz
5
+ Author-email: shadow shell <shadowshell@foxmail.com>
6
+ License: MIT
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: Operating System :: OS Independent
9
+ Requires-Python: >=3.8
10
+ Description-Content-Type: text/markdown
@@ -0,0 +1,5 @@
1
+ shadowshell.py,sha256=7XaWkeDXzx8NXcN8c72FIaFvySOA1GrkZx8pH3Y5fCw,176
2
+ shadowshell-0.0.1.dist-info/METADATA,sha256=LTxXDgWIStFtF3cpTaEvPuC0P1HL6-WFHQK8mLkGdbI,304
3
+ shadowshell-0.0.1.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
4
+ shadowshell-0.0.1.dist-info/top_level.txt,sha256=p1bzsWGOKTHFpI6pOtBOqVzMXSR52HfYyyRw_Zb-S7w,12
5
+ shadowshell-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (76.0.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ shadowshell
shadowshell.py ADDED
@@ -0,0 +1,13 @@
1
+ #!/usr/bin/env python3
2
+ # -*- coding: utf-8 -*-
3
+
4
+ """
5
+ Logger
6
+ @author: shadowshell<shadowshell@foxmail.com>
7
+ """
8
+
9
+ class ShadowShell:
10
+
11
+ def hello(self):
12
+ print("Hello.")
13
+