moon-string-ut 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,24 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: moon_string_ut
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Str lib that have necessary functions!
|
|
5
|
+
Author-email: Moon Stoun <jdhcoolbut@gmail.com>
|
|
6
|
+
License-File: LICENSE
|
|
7
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
+
Classifier: Operating System :: OS Independent
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Requires-Python: >=3.10.0
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
|
|
13
|
+
This library adds useful functions for working with string values. I often end up implementing them myself!
|
|
14
|
+
|
|
15
|
+
slownprint(text, time) - Slowly prints text
|
|
16
|
+
slowinput(text, time) - Slowly prints text + input()
|
|
17
|
+
translate(text, lang) - Translates the selected text into the selected language*
|
|
18
|
+
etitle(text) - Uppercases every character after a space
|
|
19
|
+
to_ascii(text) - Converts the selected str variable to ASCII
|
|
20
|
+
norm_spaces(text) - Normalizes your spaces (EXAMPLE: enter "I was there yesterday" - returns "I was there yesterday")
|
|
21
|
+
|
|
22
|
+
* - Requires an internet connection
|
|
23
|
+
|
|
24
|
+
[12.06.2026] [lst update - 12.06.2026]
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
moon_string_ut-1.0.0.dist-info/METADATA,sha256=sQ-gZSkQZLBQsJh85aLyWsoy8rcbETydxFaxm9_65AY,996
|
|
2
|
+
moon_string_ut-1.0.0.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
|
|
3
|
+
moon_string_ut-1.0.0.dist-info/licenses/LICENSE,sha256=KhROo1sgqJsRBVkt4FurikEKuSCI3eywtfia8liFTeY,1051
|
|
4
|
+
moon_string_ut-1.0.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
© 2026 moon_string_ut
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the «Software»), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
4
|
+
|
|
5
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
6
|
+
|
|
7
|
+
THE SOFTWARE IS PROVIDED «AS IS», WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|