istr-python 0.0.3__tar.gz → 0.0.5__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.
- {istr_python-0.0.3 → istr_python-0.0.5}/PKG-INFO +1 -1
- {istr_python-0.0.3 → istr_python-0.0.5}/istr/istr.py +1 -3
- {istr_python-0.0.3 → istr_python-0.0.5}/istr_python.egg-info/PKG-INFO +1 -1
- {istr_python-0.0.3 → istr_python-0.0.5}/istr_python.egg-info/SOURCES.txt +0 -1
- {istr_python-0.0.3 → istr_python-0.0.5}/pyproject.toml +2 -2
- istr_python-0.0.3/istr/sendmoremoney.py +0 -12
- {istr_python-0.0.3 → istr_python-0.0.5}/README.md +0 -0
- {istr_python-0.0.3 → istr_python-0.0.5}/istr/__init__.py +0 -0
- {istr_python-0.0.3 → istr_python-0.0.5}/istr/install istr.py +0 -0
- {istr_python-0.0.3 → istr_python-0.0.5}/istr_python.egg-info/dependency_links.txt +0 -0
- {istr_python-0.0.3 → istr_python-0.0.5}/istr_python.egg-info/top_level.txt +0 -0
- {istr_python-0.0.3 → istr_python-0.0.5}/setup.cfg +0 -0
- {istr_python-0.0.3 → istr_python-0.0.5}/tests/test_istr.py +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
[build-system]
|
|
2
|
-
requires = ["setuptools"
|
|
2
|
+
requires = ["setuptools"]
|
|
3
3
|
build-backend = "setuptools.build_meta"
|
|
4
4
|
|
|
5
5
|
[project]
|
|
@@ -8,7 +8,7 @@ authors = [
|
|
|
8
8
|
{name = "Ruud van der Ham", email = "rt.van.der.ham@gmail.com"}
|
|
9
9
|
]
|
|
10
10
|
description = "istr is a module to use strings as if they were integers."
|
|
11
|
-
version = "0.0.
|
|
11
|
+
version = "0.0.5"
|
|
12
12
|
readme = "README.md"
|
|
13
13
|
requires-python = ">=3.7"
|
|
14
14
|
dependencies = [
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import itertools
|
|
2
|
-
from istr import istr
|
|
3
|
-
import istr
|
|
4
|
-
print(istr,istr(8))
|
|
5
|
-
|
|
6
|
-
for s, e, n, d, m, o, r, y in istr(itertools.permutations("0123456789", 8)):
|
|
7
|
-
if (m > 0) and ((s | e | n | d) + (m | o | r | e) == (m | o | n | e | y)):
|
|
8
|
-
print(f" {s|e|n|d}")
|
|
9
|
-
print(f" {m|o|r|e}")
|
|
10
|
-
print("-----")
|
|
11
|
-
print(m | o | n | e | y)
|
|
12
|
-
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|