istr-python 0.0.0__tar.gz → 0.0.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: istr-python
3
- Version: 0.0.0
3
+ Version: 0.0.1
4
4
  Summary: istr description
5
5
  Author-email: Ruud van der Ham <rt.van.der.ham@gmail.com>
6
6
  Requires-Python: >=3.7
@@ -0,0 +1 @@
1
+ from .istr import *
@@ -0,0 +1,11 @@
1
+ import itertools
2
+ from istr import istr
3
+ print(istr)
4
+
5
+ for s, e, n, d, m, o, r, y in istr(itertools.permutations("0123456789", 8)):
6
+ if (m > 0) and ((s | e | n | d) + (m | o | r | e) == (m | o | n | e | y)):
7
+ print(f" {s|e|n|d}")
8
+ print(f" {m|o|r|e}")
9
+ print("-----")
10
+ print(m | o | n | e | y)
11
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: istr-python
3
- Version: 0.0.0
3
+ Version: 0.0.1
4
4
  Summary: istr description
5
5
  Author-email: Ruud van der Ham <rt.van.der.ham@gmail.com>
6
6
  Requires-Python: >=3.7
@@ -3,6 +3,7 @@ pyproject.toml
3
3
  istr/__init__.py
4
4
  istr/install istr.py
5
5
  istr/istr.py
6
+ istr/sendmoremoney.py
6
7
  istr_python.egg-info/PKG-INFO
7
8
  istr_python.egg-info/SOURCES.txt
8
9
  istr_python.egg-info/dependency_links.txt
@@ -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 description"
11
- version = "0.0.0"
11
+ version = "0.0.1"
12
12
  readme = "README.md"
13
13
  requires-python = ">=3.7"
14
14
  dependencies = [
File without changes
File without changes
File without changes
File without changes