cchecksum 0.3.8.dev0__cp38-cp38-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.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.
cchecksum/__init__.py ADDED
@@ -0,0 +1,11 @@
1
+ """CChecksum is a ~8x faster drop-in replacement for eth_utils.to_checksum_address,
2
+ with the most cpu-intensive part implemented in c.
3
+
4
+ It keeps the exact same API as the existing implementation, exceptions and all.
5
+ """
6
+
7
+ from cchecksum._checksum import to_checksum_address
8
+ from cchecksum.monkey_patch import monkey_patch_eth_utils, monkey_patch_web3py
9
+
10
+
11
+ __all__ = ["to_checksum_address", "monkey_patch_eth_utils", "monkey_patch_web3py"]