blindscrambler 0.1.0__cp39-abi3-macosx_11_0_arm64.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,5 @@
1
+ from blindscrambler._core import hello_from_bin
2
+
3
+
4
+ def hello() -> str:
5
+ return hello_from_bin()
Binary file
@@ -0,0 +1 @@
1
+ def hello_from_bin() -> str: ...
@@ -0,0 +1,2 @@
1
+ from .discrete import diff
2
+ __all__ = ['diff']
@@ -0,0 +1,15 @@
1
+ # create a function diff here
2
+
3
+ def diff(x, t):
4
+ if len(x) != len(t):
5
+ print("The two lengths are not equal, why would you do that. I am returning -1 now")
6
+ return -1
7
+
8
+ v = [0] * len(t)
9
+ v[0] = 0 # No previous value for the first element
10
+
11
+ for i in range(1, len(x)):
12
+ v[i] = (x[i] - x[i - 1]) / (t[i] - t[i - 1])
13
+
14
+ return v
15
+
File without changes
@@ -0,0 +1,11 @@
1
+ Metadata-Version: 2.4
2
+ Name: blindscrambler
3
+ Version: 0.1.0
4
+ Requires-Dist: twine>=6.1.0
5
+ Summary: Add your description here
6
+ Author-email: blindscramblergh <blindscrambler@gmail.com>
7
+ Requires-Python: >=3.12
8
+ Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
9
+
10
+ This is the first text in the READ document
11
+
@@ -0,0 +1,9 @@
1
+ blindscrambler-0.1.0.dist-info/METADATA,sha256=KxZRLgUTtGWxx_i4NS1ibY__4Crkn9geJzY_2eAIj5E,317
2
+ blindscrambler-0.1.0.dist-info/WHEEL,sha256=DLqF2HZq4W_umZdP6RnfAuqhmtX_UrV4mkqrSIMhipE,102
3
+ blindscrambler/__init__.py,sha256=N6o-PTyGSlQ4ny1UA4ByeNenVF-wCTALnyP4WJ8PGas,98
4
+ blindscrambler/_core.abi3.so,sha256=OG585R2Nb-fp_sH7C6qCpxzKDFG6hKWqIkwWvB6n0II,440336
5
+ blindscrambler/_core.pyi,sha256=b6oJaUXUzEzqUE5rpqefV06hl8o_JCU8pgKgIIzQgmc,33
6
+ blindscrambler/differential/__init__.py,sha256=wthVEgnKH3fg_e8fjcWu5DRIJsy6LSAfd8Jntn-JiJ4,46
7
+ blindscrambler/differential/discrete.py,sha256=mPJg6YrDVuXK-dLXgb_VDqKl1IvKfSKahMA_rRTVKQY,369
8
+ blindscrambler/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
+ blindscrambler-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: maturin (1.9.4)
3
+ Root-Is-Purelib: false
4
+ Tag: cp39-abi3-macosx_11_0_arm64