simplefunc 0.1.0__tar.gz → 0.1.1__tar.gz
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.
- {simplefunc-0.1.0 → simplefunc-0.1.1}/PKG-INFO +3 -3
- {simplefunc-0.1.0 → simplefunc-0.1.1}/README.md +1 -1
- {simplefunc-0.1.0 → simplefunc-0.1.1}/pyproject.toml +2 -2
- {simplefunc-0.1.0 → simplefunc-0.1.1}/simplefunc.egg-info/PKG-INFO +3 -3
- {simplefunc-0.1.0 → simplefunc-0.1.1}/LICENSE +0 -0
- {simplefunc-0.1.0 → simplefunc-0.1.1}/setup.cfg +0 -0
- {simplefunc-0.1.0 → simplefunc-0.1.1}/simplefunc/__init__.py +0 -0
- {simplefunc-0.1.0 → simplefunc-0.1.1}/simplefunc.egg-info/SOURCES.txt +0 -0
- {simplefunc-0.1.0 → simplefunc-0.1.1}/simplefunc.egg-info/dependency_links.txt +0 -0
- {simplefunc-0.1.0 → simplefunc-0.1.1}/simplefunc.egg-info/top_level.txt +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: simplefunc
|
|
3
|
-
Version: 0.1.
|
|
4
|
-
Summary: Simplifies the name of a few Python functions and attributes (.upper and .lower). print is now say, input is now write, len is now length, .upper() is now .shout(), .lower() is .whisper(), and it made them functions too, shout("text here") and whisper("text here"), thank you for using!
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: Simplifies the name of a few Python functions and attributes (.upper and .lower). print is now say, input is now write, len is now length, .upper() is now LS("text").shout(), .lower() is WS("text").whisper(), and it made them functions too, shout("text here") and whisper("text here"), thank you for using!
|
|
5
5
|
Author-email: Petar <petarshishkov794@gmail.com>
|
|
6
6
|
License: MIT
|
|
7
7
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -19,6 +19,6 @@ A python package that simplifies the names of common functions and attributes!
|
|
|
19
19
|
## How to use:
|
|
20
20
|
|
|
21
21
|
```python
|
|
22
|
-
from simplefunc import say, write, length, what_is, shout, whisper, LS, WS
|
|
22
|
+
from simplefunc import say, write, length, what_is, shout, whisper, LS("text").shout(), WS("text").whisper()
|
|
23
23
|
|
|
24
24
|
say("Hello world!")
|
|
@@ -5,6 +5,6 @@ A python package that simplifies the names of common functions and attributes!
|
|
|
5
5
|
## How to use:
|
|
6
6
|
|
|
7
7
|
```python
|
|
8
|
-
from simplefunc import say, write, length, what_is, shout, whisper, LS, WS
|
|
8
|
+
from simplefunc import say, write, length, what_is, shout, whisper, LS("text").shout(), WS("text").whisper()
|
|
9
9
|
|
|
10
10
|
say("Hello world!")
|
|
@@ -4,11 +4,11 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "simplefunc"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.1"
|
|
8
8
|
authors = [
|
|
9
9
|
{ name="Petar", email="petarshishkov794@gmail.com" },
|
|
10
10
|
]
|
|
11
|
-
description = "Simplifies the name of a few Python functions and attributes (.upper and .lower). print is now say, input is now write, len is now length, .upper() is now .shout(), .lower() is .whisper(), and it made them functions too, shout(\"text here\") and whisper(\"text here\"), thank you for using!"
|
|
11
|
+
description = """Simplifies the name of a few Python functions and attributes (.upper and .lower). print is now say, input is now write, len is now length, .upper() is now LS("text").shout(), .lower() is WS("text").whisper(), and it made them functions too, shout(\"text here\") and whisper(\"text here\"), thank you for using!"""
|
|
12
12
|
license = {text = "MIT"}
|
|
13
13
|
readme = "README.md"
|
|
14
14
|
requires-python = ">=3.7"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: simplefunc
|
|
3
|
-
Version: 0.1.
|
|
4
|
-
Summary: Simplifies the name of a few Python functions and attributes (.upper and .lower). print is now say, input is now write, len is now length, .upper() is now .shout(), .lower() is .whisper(), and it made them functions too, shout("text here") and whisper("text here"), thank you for using!
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: Simplifies the name of a few Python functions and attributes (.upper and .lower). print is now say, input is now write, len is now length, .upper() is now LS("text").shout(), .lower() is WS("text").whisper(), and it made them functions too, shout("text here") and whisper("text here"), thank you for using!
|
|
5
5
|
Author-email: Petar <petarshishkov794@gmail.com>
|
|
6
6
|
License: MIT
|
|
7
7
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -19,6 +19,6 @@ A python package that simplifies the names of common functions and attributes!
|
|
|
19
19
|
## How to use:
|
|
20
20
|
|
|
21
21
|
```python
|
|
22
|
-
from simplefunc import say, write, length, what_is, shout, whisper, LS, WS
|
|
22
|
+
from simplefunc import say, write, length, what_is, shout, whisper, LS("text").shout(), WS("text").whisper()
|
|
23
23
|
|
|
24
24
|
say("Hello world!")
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|