ModenFirstModules 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.
@@ -0,0 +1,11 @@
1
+ import sys
2
+ import time
3
+
4
+ def slow_print(text, delay=0.03, enddelay=0.3):
5
+ """문자를 하나씩 천천히 출력합니다."""
6
+ for char in text:
7
+ sys.stdout.write(char)
8
+ sys.stdout.flush()
9
+ time.sleep(delay)
10
+ print()
11
+ time.sleep(enddelay)
@@ -0,0 +1,3 @@
1
+ [build-system]
2
+ requires = ["hatchling >= 1.26"]
3
+ build-backend = "hatchling.build"
@@ -0,0 +1,14 @@
1
+ Metadata-Version: 2.4
2
+ Name: ModenFirstModules
3
+ Version: 1.0.0
4
+ Summary: A very small modules
5
+ Author-email: program416 <leogifted@naver.com>
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/pypa/sampleproject
8
+ Project-URL: Issues, https://github.com/pypa/sampleproject/issues
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.9
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Dynamic: license-file
@@ -0,0 +1,7 @@
1
+ ModenFirstModules/PrintConfig.py,sha256=VXUwjTwOTdlgBeduRazf05-qTBLd_AU1woGpo5eoMRw,283
2
+ ModenFirstModules/__init__.py,sha256=Y59GFxPaQmP6BuIbE6Z_HAb-A0ET9oJ5RhK2jcC1Blw,85
3
+ modenfirstmodules-1.0.0.dist-info/licenses/LICENSE,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ modenfirstmodules-1.0.0.dist-info/METADATA,sha256=r7fRH2-15Y-wuyPMDs1Sbr_nKn9ZU0_kFpIFYsjHgdE,505
5
+ modenfirstmodules-1.0.0.dist-info/WHEEL,sha256=YCfwYGOYMi5Jhw2fU4yNgwErybb2IX5PEwBKV4ZbdBo,91
6
+ modenfirstmodules-1.0.0.dist-info/top_level.txt,sha256=Ipqu8cGee6ziFN45dm-o8js58HID89bwMvWmJn3TVEI,18
7
+ modenfirstmodules-1.0.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
File without changes
@@ -0,0 +1 @@
1
+ ModenFirstModules