pyasic-umhost 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.
- pyasic_umhost-0.0.1/LICENSE.txt +176 -0
- pyasic_umhost-0.0.1/PKG-INFO +325 -0
- pyasic_umhost-0.0.1/README.md +293 -0
- pyasic_umhost-0.0.1/pyasic/__init__.py +28 -0
- pyasic_umhost-0.0.1/pyasic/config/__init__.py +348 -0
- pyasic_umhost-0.0.1/pyasic/config/base.py +150 -0
- pyasic_umhost-0.0.1/pyasic/config/fans.py +421 -0
- pyasic_umhost-0.0.1/pyasic/config/mining/__init__.py +821 -0
- pyasic_umhost-0.0.1/pyasic/config/mining/algo.py +66 -0
- pyasic_umhost-0.0.1/pyasic/config/mining/presets.py +54 -0
- pyasic_umhost-0.0.1/pyasic/config/mining/scaling.py +129 -0
- pyasic_umhost-0.0.1/pyasic/config/pools.py +691 -0
- pyasic_umhost-0.0.1/pyasic/config/temperature.py +155 -0
- pyasic_umhost-0.0.1/pyasic/data/__init__.py +427 -0
- pyasic_umhost-0.0.1/pyasic/data/boards.py +67 -0
- pyasic_umhost-0.0.1/pyasic/data/device.py +31 -0
- pyasic_umhost-0.0.1/pyasic/data/error_codes/X19.py +28 -0
- pyasic_umhost-0.0.1/pyasic/data/error_codes/__init__.py +32 -0
- pyasic_umhost-0.0.1/pyasic/data/error_codes/base.py +18 -0
- pyasic_umhost-0.0.1/pyasic/data/error_codes/bos.py +29 -0
- pyasic_umhost-0.0.1/pyasic/data/error_codes/innosilicon.py +62 -0
- pyasic_umhost-0.0.1/pyasic/data/error_codes/vnish.py +28 -0
- pyasic_umhost-0.0.1/pyasic/data/error_codes/whatsminer.py +526 -0
- pyasic_umhost-0.0.1/pyasic/data/fans.py +44 -0
- pyasic_umhost-0.0.1/pyasic/data/pools.py +91 -0
- pyasic_umhost-0.0.1/pyasic/device/__init__.py +4 -0
- pyasic_umhost-0.0.1/pyasic/device/algorithm/__init__.py +26 -0
- pyasic_umhost-0.0.1/pyasic/device/algorithm/base.py +23 -0
- pyasic_umhost-0.0.1/pyasic/device/algorithm/blake256.py +13 -0
- pyasic_umhost-0.0.1/pyasic/device/algorithm/eaglesong.py +13 -0
- pyasic_umhost-0.0.1/pyasic/device/algorithm/equihash.py +13 -0
- pyasic_umhost-0.0.1/pyasic/device/algorithm/ethash.py +12 -0
- pyasic_umhost-0.0.1/pyasic/device/algorithm/handshake.py +13 -0
- pyasic_umhost-0.0.1/pyasic/device/algorithm/hashrate/__init__.py +24 -0
- pyasic_umhost-0.0.1/pyasic/device/algorithm/hashrate/base.py +95 -0
- pyasic_umhost-0.0.1/pyasic/device/algorithm/hashrate/blake256.py +18 -0
- pyasic_umhost-0.0.1/pyasic/device/algorithm/hashrate/eaglesong.py +18 -0
- pyasic_umhost-0.0.1/pyasic/device/algorithm/hashrate/equihash.py +18 -0
- pyasic_umhost-0.0.1/pyasic/device/algorithm/hashrate/ethash.py +18 -0
- pyasic_umhost-0.0.1/pyasic/device/algorithm/hashrate/handshake.py +18 -0
- pyasic_umhost-0.0.1/pyasic/device/algorithm/hashrate/kadena.py +18 -0
- pyasic_umhost-0.0.1/pyasic/device/algorithm/hashrate/kheavyhash.py +18 -0
- pyasic_umhost-0.0.1/pyasic/device/algorithm/hashrate/scrypt.py +18 -0
- pyasic_umhost-0.0.1/pyasic/device/algorithm/hashrate/sha256.py +18 -0
- pyasic_umhost-0.0.1/pyasic/device/algorithm/hashrate/unit/__init__.py +23 -0
- pyasic_umhost-0.0.1/pyasic/device/algorithm/hashrate/unit/base.py +71 -0
- pyasic_umhost-0.0.1/pyasic/device/algorithm/hashrate/unit/blake256.py +16 -0
- pyasic_umhost-0.0.1/pyasic/device/algorithm/hashrate/unit/eaglesong.py +16 -0
- pyasic_umhost-0.0.1/pyasic/device/algorithm/hashrate/unit/equihash.py +34 -0
- pyasic_umhost-0.0.1/pyasic/device/algorithm/hashrate/unit/ethash.py +16 -0
- pyasic_umhost-0.0.1/pyasic/device/algorithm/hashrate/unit/handshake.py +16 -0
- pyasic_umhost-0.0.1/pyasic/device/algorithm/hashrate/unit/kadena.py +16 -0
- pyasic_umhost-0.0.1/pyasic/device/algorithm/hashrate/unit/kheavyhash.py +16 -0
- pyasic_umhost-0.0.1/pyasic/device/algorithm/hashrate/unit/scrypt.py +16 -0
- pyasic_umhost-0.0.1/pyasic/device/algorithm/hashrate/unit/sha256.py +16 -0
- pyasic_umhost-0.0.1/pyasic/device/algorithm/hashrate/unit/x11.py +16 -0
- pyasic_umhost-0.0.1/pyasic/device/algorithm/hashrate/x11.py +18 -0
- pyasic_umhost-0.0.1/pyasic/device/algorithm/kadena.py +13 -0
- pyasic_umhost-0.0.1/pyasic/device/algorithm/kheavyhash.py +13 -0
- pyasic_umhost-0.0.1/pyasic/device/algorithm/scrypt.py +12 -0
- pyasic_umhost-0.0.1/pyasic/device/algorithm/sha256.py +13 -0
- pyasic_umhost-0.0.1/pyasic/device/algorithm/x11.py +13 -0
- pyasic_umhost-0.0.1/pyasic/device/firmware.py +30 -0
- pyasic_umhost-0.0.1/pyasic/device/makes.py +37 -0
- pyasic_umhost-0.0.1/pyasic/device/models.py +572 -0
- pyasic_umhost-0.0.1/pyasic/errors/__init__.py +59 -0
- pyasic_umhost-0.0.1/pyasic/load/__init__.py +352 -0
- pyasic_umhost-0.0.1/pyasic/logger/__init__.py +46 -0
- pyasic_umhost-0.0.1/pyasic/miners/__init__.py +20 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/__init__.py +25 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/bmminer/X15/Z15.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/bmminer/X15/__init__.py +16 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/bmminer/X17/S17.py +34 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/bmminer/X17/T17.py +30 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/bmminer/X17/__init__.py +18 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/bmminer/X19/S19.py +104 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/bmminer/X19/T19.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/bmminer/X19/__init__.py +36 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/bmminer/X21/S21.py +30 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/bmminer/X21/T21.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/bmminer/X21/__init__.py +17 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/bmminer/X3/HS3.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/bmminer/X3/KA3.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/bmminer/X3/KS3.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/bmminer/X3/L3.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/bmminer/X3/__init__.py +19 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/bmminer/X5/KS5.py +25 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/bmminer/X5/__init__.py +16 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/bmminer/X7/D7.py +21 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/bmminer/X7/K7.py +21 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/bmminer/X7/L7.py +21 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/bmminer/X7/__init__.py +18 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/bmminer/X9/D9.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/bmminer/X9/E9.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/bmminer/X9/L9.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/bmminer/X9/S9.py +30 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/bmminer/X9/T9.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/bmminer/X9/__init__.py +21 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/bmminer/__init__.py +23 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/bosminer/X17/S17.py +34 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/bosminer/X17/T17.py +30 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/bosminer/X17/__init__.py +18 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/bosminer/X19/S19.py +89 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/bosminer/X19/T19.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/bosminer/X19/__init__.py +33 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/bosminer/X21/S21.py +26 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/bosminer/X21/T21.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/bosminer/X21/__init__.py +18 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/bosminer/X9/S9.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/bosminer/X9/__init__.py +17 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/bosminer/__init__.py +20 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/cgminer/X15/Z15.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/cgminer/X15/__init__.py +16 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/cgminer/X3/D3.py +21 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/cgminer/X3/__init__.py +17 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/cgminer/X5/DR5.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/cgminer/X5/__init__.py +16 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/cgminer/__init__.py +19 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/epic/X19/S19.py +61 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/epic/X19/__init__.py +26 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/epic/X21/S21.py +26 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/epic/X21/T21.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/epic/X21/__init__.py +18 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/epic/__init__.py +18 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/hiveon/X19/S19.py +104 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/hiveon/X19/T19.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/hiveon/X19/__init__.py +36 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/hiveon/X9/T9.py +146 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/hiveon/X9/__init__.py +17 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/hiveon/__init__.py +18 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/luxos/X19/S19.py +49 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/luxos/X19/T19.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/luxos/X19/__init__.py +25 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/luxos/X21/S21.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/luxos/X21/__init__.py +17 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/luxos/X9/S9.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/luxos/X9/__init__.py +17 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/luxos/__init__.py +19 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/marathon/X19/S19.py +54 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/marathon/X19/__init__.py +9 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/marathon/X21/S21.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/marathon/X21/T21.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/marathon/X21/__init__.py +2 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/marathon/__init__.py +2 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/mskminer/X19/S19.py +24 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/mskminer/X19/__init__.py +17 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/mskminer/__init__.py +17 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/vnish/X17/S17.py +25 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/vnish/X17/__init__.py +16 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/vnish/X19/S19.py +74 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/vnish/X19/T19.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/vnish/X19/__init__.py +30 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/vnish/X21/S21.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/vnish/X21/T21.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/vnish/X21/__init__.py +18 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/vnish/X3/L3.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/vnish/X3/__init__.py +17 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/vnish/X7/L7.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/vnish/X7/__init__.py +17 -0
- pyasic_umhost-0.0.1/pyasic/miners/antminer/vnish/__init__.py +21 -0
- pyasic_umhost-0.0.1/pyasic/miners/auradine/__init__.py +1 -0
- pyasic_umhost-0.0.1/pyasic/miners/auradine/flux/AD/AT1.py +6 -0
- pyasic_umhost-0.0.1/pyasic/miners/auradine/flux/AD/AT2.py +10 -0
- pyasic_umhost-0.0.1/pyasic/miners/auradine/flux/AD/__init__.py +2 -0
- pyasic_umhost-0.0.1/pyasic/miners/auradine/flux/AI/AI2.py +6 -0
- pyasic_umhost-0.0.1/pyasic/miners/auradine/flux/AI/AI3.py +6 -0
- pyasic_umhost-0.0.1/pyasic/miners/auradine/flux/AI/__init__.py +2 -0
- pyasic_umhost-0.0.1/pyasic/miners/auradine/flux/AT/AD2.py +6 -0
- pyasic_umhost-0.0.1/pyasic/miners/auradine/flux/AT/AD3.py +6 -0
- pyasic_umhost-0.0.1/pyasic/miners/auradine/flux/AT/__init__.py +2 -0
- pyasic_umhost-0.0.1/pyasic/miners/auradine/flux/__init__.py +3 -0
- pyasic_umhost-0.0.1/pyasic/miners/avalonminer/__init__.py +17 -0
- pyasic_umhost-0.0.1/pyasic/miners/avalonminer/cgminer/A10X/A1026.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/avalonminer/cgminer/A10X/A1047.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/avalonminer/cgminer/A10X/A1066.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/avalonminer/cgminer/A10X/__init__.py +19 -0
- pyasic_umhost-0.0.1/pyasic/miners/avalonminer/cgminer/A11X/A1126.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/avalonminer/cgminer/A11X/A1166.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/avalonminer/cgminer/A11X/__init__.py +18 -0
- pyasic_umhost-0.0.1/pyasic/miners/avalonminer/cgminer/A12X/A1246.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/avalonminer/cgminer/A12X/__init__.py +17 -0
- pyasic_umhost-0.0.1/pyasic/miners/avalonminer/cgminer/A15X/A1566.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/avalonminer/cgminer/A15X/__init__.py +17 -0
- pyasic_umhost-0.0.1/pyasic/miners/avalonminer/cgminer/A7X/A721.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/avalonminer/cgminer/A7X/A741.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/avalonminer/cgminer/A7X/A761.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/avalonminer/cgminer/A7X/__init__.py +19 -0
- pyasic_umhost-0.0.1/pyasic/miners/avalonminer/cgminer/A8X/A821.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/avalonminer/cgminer/A8X/A841.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/avalonminer/cgminer/A8X/A851.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/avalonminer/cgminer/A8X/__init__.py +19 -0
- pyasic_umhost-0.0.1/pyasic/miners/avalonminer/cgminer/A9X/A921.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/avalonminer/cgminer/A9X/__init__.py +17 -0
- pyasic_umhost-0.0.1/pyasic/miners/avalonminer/cgminer/__init__.py +24 -0
- pyasic_umhost-0.0.1/pyasic/miners/avalonminer/cgminer/nano/__init__.py +17 -0
- pyasic_umhost-0.0.1/pyasic/miners/avalonminer/cgminer/nano/nano3.py +107 -0
- pyasic_umhost-0.0.1/pyasic/miners/backends/__init__.py +38 -0
- pyasic_umhost-0.0.1/pyasic/miners/backends/antminer.py +690 -0
- pyasic_umhost-0.0.1/pyasic/miners/backends/auradine.py +437 -0
- pyasic_umhost-0.0.1/pyasic/miners/backends/avalonminer.py +360 -0
- pyasic_umhost-0.0.1/pyasic/miners/backends/bfgminer.py +268 -0
- pyasic_umhost-0.0.1/pyasic/miners/backends/bitaxe.py +7 -0
- pyasic_umhost-0.0.1/pyasic/miners/backends/bmminer.py +308 -0
- pyasic_umhost-0.0.1/pyasic/miners/backends/braiins_os.py +1116 -0
- pyasic_umhost-0.0.1/pyasic/miners/backends/btminer.py +738 -0
- pyasic_umhost-0.0.1/pyasic/miners/backends/cgminer.py +174 -0
- pyasic_umhost-0.0.1/pyasic/miners/backends/elphapex.py +374 -0
- pyasic_umhost-0.0.1/pyasic/miners/backends/epic.py +475 -0
- pyasic_umhost-0.0.1/pyasic/miners/backends/espminer.py +235 -0
- pyasic_umhost-0.0.1/pyasic/miners/backends/goldshell.py +215 -0
- pyasic_umhost-0.0.1/pyasic/miners/backends/hammer.py +472 -0
- pyasic_umhost-0.0.1/pyasic/miners/backends/hiveon.py +280 -0
- pyasic_umhost-0.0.1/pyasic/miners/backends/iceriver.py +251 -0
- pyasic_umhost-0.0.1/pyasic/miners/backends/innosilicon.py +405 -0
- pyasic_umhost-0.0.1/pyasic/miners/backends/luckyminer.py +7 -0
- pyasic_umhost-0.0.1/pyasic/miners/backends/luxminer.py +430 -0
- pyasic_umhost-0.0.1/pyasic/miners/backends/marathon.py +353 -0
- pyasic_umhost-0.0.1/pyasic/miners/backends/mskminer.py +110 -0
- pyasic_umhost-0.0.1/pyasic/miners/backends/unknown.py +124 -0
- pyasic_umhost-0.0.1/pyasic/miners/backends/vnish.py +323 -0
- pyasic_umhost-0.0.1/pyasic/miners/backends/whatsminer.py +36 -0
- pyasic_umhost-0.0.1/pyasic/miners/base.py +597 -0
- pyasic_umhost-0.0.1/pyasic/miners/bitaxe/__init__.py +1 -0
- pyasic_umhost-0.0.1/pyasic/miners/bitaxe/espminer/BM/BM1366.py +6 -0
- pyasic_umhost-0.0.1/pyasic/miners/bitaxe/espminer/BM/BM1368.py +6 -0
- pyasic_umhost-0.0.1/pyasic/miners/bitaxe/espminer/BM/BM1370.py +6 -0
- pyasic_umhost-0.0.1/pyasic/miners/bitaxe/espminer/BM/BM1397.py +6 -0
- pyasic_umhost-0.0.1/pyasic/miners/bitaxe/espminer/BM/__init__.py +4 -0
- pyasic_umhost-0.0.1/pyasic/miners/bitaxe/espminer/__init__.py +1 -0
- pyasic_umhost-0.0.1/pyasic/miners/blockminer/__init__.py +17 -0
- pyasic_umhost-0.0.1/pyasic/miners/blockminer/epic/__init__.py +17 -0
- pyasic_umhost-0.0.1/pyasic/miners/blockminer/epic/blockminer/__init__.py +17 -0
- pyasic_umhost-0.0.1/pyasic/miners/blockminer/epic/blockminer/blockminer.py +26 -0
- pyasic_umhost-0.0.1/pyasic/miners/braiins/__init__.py +17 -0
- pyasic_umhost-0.0.1/pyasic/miners/braiins/braiins/BMM/BMM.py +26 -0
- pyasic_umhost-0.0.1/pyasic/miners/braiins/braiins/BMM/__init__.py +17 -0
- pyasic_umhost-0.0.1/pyasic/miners/braiins/braiins/__init__.py +17 -0
- pyasic_umhost-0.0.1/pyasic/miners/data.py +85 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/__init__.py +0 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/firmware.py +46 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/makes.py +74 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/__init__.py +28 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/antminer/X15/Z15.py +36 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/antminer/X15/__init__.py +16 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/antminer/X17/S17.py +54 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/antminer/X17/T17.py +45 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/antminer/X17/__init__.py +18 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/antminer/X19/S19.py +225 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/antminer/X19/T19.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/antminer/X19/__init__.py +42 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/antminer/X21/S21.py +45 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/antminer/X21/T21.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/antminer/X21/__init__.py +18 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/antminer/X3/D3.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/antminer/X3/HS3.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/antminer/X3/KA3.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/antminer/X3/KS3.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/antminer/X3/L3.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/antminer/X3/__init__.py +20 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/antminer/X5/DR5.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/antminer/X5/KS5.py +36 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/antminer/X5/__init__.py +17 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/antminer/X7/D7.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/antminer/X7/K7.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/antminer/X7/L7.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/antminer/X7/__init__.py +18 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/antminer/X9/D9.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/antminer/X9/E9.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/antminer/X9/L9.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/antminer/X9/S9.py +45 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/antminer/X9/T9.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/antminer/X9/__init__.py +21 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/antminer/__init__.py +23 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/auradine/AD/AD2.py +11 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/auradine/AD/AD3.py +11 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/auradine/AD/__init__.py +2 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/auradine/AI/AI2.py +11 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/auradine/AI/AI3.py +11 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/auradine/AI/__init__.py +2 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/auradine/AT/AT1.py +12 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/auradine/AT/AT2.py +19 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/auradine/AT/__init__.py +2 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/auradine/__init__.py +3 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/avalonminer/A10X/A1026.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/avalonminer/A10X/A1047.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/avalonminer/A10X/A1066.py +26 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/avalonminer/A10X/__init__.py +19 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/avalonminer/A11X/A1126.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/avalonminer/A11X/A1166.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/avalonminer/A11X/__init__.py +19 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/avalonminer/A12X/A1246.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/avalonminer/A12X/__init__.py +17 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/avalonminer/A15X/A1566.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/avalonminer/A15X/__init__.py +17 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/avalonminer/A7X/A721.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/avalonminer/A7X/A741.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/avalonminer/A7X/A761.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/avalonminer/A7X/__init__.py +19 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/avalonminer/A8X/A821.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/avalonminer/A8X/A841.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/avalonminer/A8X/A851.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/avalonminer/A8X/__init__.py +19 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/avalonminer/A9X/A921.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/avalonminer/A9X/__init__.py +17 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/avalonminer/__init__.py +24 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/avalonminer/nano/__init__.py +1 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/avalonminer/nano/nano3.py +12 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/bitaxe/BM/BM1366.py +12 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/bitaxe/BM/BM1368.py +12 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/bitaxe/BM/BM1370.py +12 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/bitaxe/BM/BM1397.py +12 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/bitaxe/BM/__init__.py +4 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/bitaxe/__init__.py +1 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/braiins/BMM/BMM1.py +19 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/braiins/BMM/__init__.py +1 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/braiins/__init__.py +1 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/elphapex/DGX/DG1.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/elphapex/DGX/__init__.py +1 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/elphapex/__init__.py +1 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/epic/__init__.py +1 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/epic/blockminer/__init__.py +1 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/epic/blockminer/blockminer.py +21 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/goldshell/X5/CK5.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/goldshell/X5/HS5.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/goldshell/X5/KD5.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/goldshell/X5/__init__.py +18 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/goldshell/XBox/KDBox.py +36 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/goldshell/XBox/__init__.py +1 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/goldshell/XMax/KDMax.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/goldshell/XMax/__init__.py +16 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/goldshell/__init__.py +18 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/hammer/DX/D10.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/hammer/DX/__init__.py +1 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/hammer/__init__.py +1 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/iceriver/KSX/KS0.py +26 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/iceriver/KSX/KS1.py +26 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/iceriver/KSX/KS2.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/iceriver/KSX/KS3.py +43 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/iceriver/KSX/KS5.py +44 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/iceriver/KSX/__init__.py +5 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/iceriver/__init__.py +1 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/innosilicon/A10X/A10X.py +26 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/innosilicon/A10X/__init__.py +16 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/innosilicon/A11X/A11.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/innosilicon/A11X/A11M.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/innosilicon/A11X/__init__.py +17 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/innosilicon/T3X/T3H.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/innosilicon/T3X/__init__.py +17 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/innosilicon/__init__.py +19 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/luckyminer/LV/LV07.py +12 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/luckyminer/LV/LV08.py +12 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/luckyminer/LV/__init__.py +2 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/luckyminer/__init__.py +1 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/volcminer/DX/D1.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/volcminer/DX/__init__.py +1 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/volcminer/__init__.py +1 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M2X/M20.py +12 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M2X/M20P.py +21 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M2X/M20S.py +30 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M2X/M20S_Plus.py +12 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M2X/M21.py +12 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M2X/M21S.py +30 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M2X/M21S_Plus.py +12 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M2X/M29.py +12 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M2X/__init__.py +8 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M3X/M30.py +21 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M3X/M30K.py +12 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M3X/M30L.py +12 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M3X/M30S.py +273 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M3X/M30S_Plus.py +318 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M3X/M30S_Plus_Plus.py +255 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M3X/M31.py +21 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M3X/M31H.py +21 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M3X/M31L.py +12 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M3X/M31S.py +111 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M3X/M31SE.py +30 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M3X/M31S_Plus.py +183 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M3X/M32.py +21 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M3X/M32S.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M3X/M33.py +30 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M3X/M33S.py +12 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M3X/M33S_Plus.py +39 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M3X/M33S_Plus_Plus.py +30 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M3X/M34S_Plus.py +12 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M3X/M36S.py +12 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M3X/M36S_Plus.py +12 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M3X/M36S_Plus_Plus.py +12 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M3X/M39.py +30 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M3X/__init__.py +152 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M5X/M50.py +165 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M5X/M50S.py +174 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M5X/M50S_Plus.py +102 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M5X/M50S_Plus_Plus.py +102 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M5X/M52S.py +12 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M5X/M52S_Plus_Plus.py +12 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M5X/M53.py +48 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M5X/M53H.py +12 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M5X/M53S.py +48 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M5X/M53S_Plus.py +39 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M5X/M53S_Plus_Plus.py +57 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M5X/M54S_Plus_Plus.py +30 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M5X/M56.py +12 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M5X/M56S.py +30 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M5X/M56S_Plus.py +39 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M5X/M56S_Plus_Plus.py +39 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M5X/M59.py +12 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M5X/__init__.py +92 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M6X/M60.py +93 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M6X/M60S.py +102 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M6X/M60S_Plus.py +93 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M6X/M60S_Plus_Plus.py +21 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M6X/M61.py +84 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M6X/M61S.py +30 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M6X/M61S_Plus.py +12 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M6X/M62S_Plus.py +12 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M6X/M63.py +48 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M6X/M63S.py +66 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M6X/M63S_Plus.py +48 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M6X/M63S_Plus_Plus.py +12 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M6X/M64.py +21 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M6X/M64S.py +12 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M6X/M65S.py +21 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M6X/M65S_Plus.py +12 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M6X/M66.py +39 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M6X/M66S.py +93 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M6X/M66S_Plus.py +57 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M6X/M66S_Plus_Plus.py +12 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M6X/M67S.py +12 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M6X/__init__.py +89 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M7X/M70.py +12 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/M7X/__init__.py +1 -0
- pyasic_umhost-0.0.1/pyasic/miners/device/models/whatsminer/__init__.py +5 -0
- pyasic_umhost-0.0.1/pyasic/miners/elphapex/__init__.py +1 -0
- pyasic_umhost-0.0.1/pyasic/miners/elphapex/daoge/DGX/DG1.py +6 -0
- pyasic_umhost-0.0.1/pyasic/miners/elphapex/daoge/DGX/__init__.py +1 -0
- pyasic_umhost-0.0.1/pyasic/miners/elphapex/daoge/__init__.py +1 -0
- pyasic_umhost-0.0.1/pyasic/miners/factory.py +1439 -0
- pyasic_umhost-0.0.1/pyasic/miners/goldshell/__init__.py +16 -0
- pyasic_umhost-0.0.1/pyasic/miners/goldshell/bfgminer/X5/CK5.py +21 -0
- pyasic_umhost-0.0.1/pyasic/miners/goldshell/bfgminer/X5/HS5.py +21 -0
- pyasic_umhost-0.0.1/pyasic/miners/goldshell/bfgminer/X5/KD5.py +21 -0
- pyasic_umhost-0.0.1/pyasic/miners/goldshell/bfgminer/X5/__init__.py +18 -0
- pyasic_umhost-0.0.1/pyasic/miners/goldshell/bfgminer/XBox/KDBox.py +25 -0
- pyasic_umhost-0.0.1/pyasic/miners/goldshell/bfgminer/XBox/__init__.py +16 -0
- pyasic_umhost-0.0.1/pyasic/miners/goldshell/bfgminer/XMax/KDMax.py +21 -0
- pyasic_umhost-0.0.1/pyasic/miners/goldshell/bfgminer/XMax/__init__.py +16 -0
- pyasic_umhost-0.0.1/pyasic/miners/goldshell/bfgminer/__init__.py +18 -0
- pyasic_umhost-0.0.1/pyasic/miners/hammer/__init__.py +1 -0
- pyasic_umhost-0.0.1/pyasic/miners/hammer/blackminer/DX/D10.py +8 -0
- pyasic_umhost-0.0.1/pyasic/miners/hammer/blackminer/DX/__init__.py +1 -0
- pyasic_umhost-0.0.1/pyasic/miners/hammer/blackminer/__init__.py +1 -0
- pyasic_umhost-0.0.1/pyasic/miners/iceriver/__init__.py +1 -0
- pyasic_umhost-0.0.1/pyasic/miners/iceriver/iceminer/KSX/KS0.py +6 -0
- pyasic_umhost-0.0.1/pyasic/miners/iceriver/iceminer/KSX/KS1.py +6 -0
- pyasic_umhost-0.0.1/pyasic/miners/iceriver/iceminer/KSX/KS2.py +6 -0
- pyasic_umhost-0.0.1/pyasic/miners/iceriver/iceminer/KSX/KS3.py +14 -0
- pyasic_umhost-0.0.1/pyasic/miners/iceriver/iceminer/KSX/KS5.py +14 -0
- pyasic_umhost-0.0.1/pyasic/miners/iceriver/iceminer/KSX/__init__.py +5 -0
- pyasic_umhost-0.0.1/pyasic/miners/iceriver/iceminer/__init__.py +1 -0
- pyasic_umhost-0.0.1/pyasic/miners/innosilicon/__init__.py +17 -0
- pyasic_umhost-0.0.1/pyasic/miners/innosilicon/cgminer/A10X/A10X.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/innosilicon/cgminer/A10X/__init__.py +17 -0
- pyasic_umhost-0.0.1/pyasic/miners/innosilicon/cgminer/A11X/A11.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/innosilicon/cgminer/A11X/A11M.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/innosilicon/cgminer/A11X/__init__.py +2 -0
- pyasic_umhost-0.0.1/pyasic/miners/innosilicon/cgminer/T3X/T3H.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/innosilicon/cgminer/T3X/__init__.py +17 -0
- pyasic_umhost-0.0.1/pyasic/miners/innosilicon/cgminer/__init__.py +19 -0
- pyasic_umhost-0.0.1/pyasic/miners/listener.py +87 -0
- pyasic_umhost-0.0.1/pyasic/miners/luckyminer/__init__.py +1 -0
- pyasic_umhost-0.0.1/pyasic/miners/luckyminer/espminer/LV/LV07.py +6 -0
- pyasic_umhost-0.0.1/pyasic/miners/luckyminer/espminer/LV/LV08.py +6 -0
- pyasic_umhost-0.0.1/pyasic/miners/luckyminer/espminer/LV/__init__.py +2 -0
- pyasic_umhost-0.0.1/pyasic/miners/luckyminer/espminer/__init__.py +1 -0
- pyasic_umhost-0.0.1/pyasic/miners/volcminer/__init__.py +1 -0
- pyasic_umhost-0.0.1/pyasic/miners/volcminer/blackminer/DX/D1.py +8 -0
- pyasic_umhost-0.0.1/pyasic/miners/volcminer/blackminer/DX/__init__.py +1 -0
- pyasic_umhost-0.0.1/pyasic/miners/volcminer/blackminer/__init__.py +1 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/__init__.py +17 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M2X/M20.py +6 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M2X/M20P.py +13 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M2X/M20S.py +20 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M2X/M20S_Plus.py +6 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M2X/M21.py +6 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M2X/M21S.py +20 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M2X/M21S_Plus.py +6 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M2X/M29.py +6 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M2X/__init__.py +8 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M3X/M30.py +13 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M3X/M30K.py +6 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M3X/M30L.py +6 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M3X/M30S.py +209 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M3X/M30S_Plus.py +244 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M3X/M30S_Plus_Plus.py +195 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M3X/M31.py +13 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M3X/M31H.py +13 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M3X/M31L.py +6 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M3X/M31S.py +83 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M3X/M31SE.py +20 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M3X/M31S_Plus.py +139 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M3X/M32.py +13 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M3X/M32S.py +22 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M3X/M33.py +20 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M3X/M33S.py +6 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M3X/M33S_Plus.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M3X/M33S_Plus_Plus.py +20 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M3X/M34S_Plus.py +6 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M3X/M36S.py +6 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M3X/M36S_Plus.py +6 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M3X/M36S_Plus_Plus.py +6 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M3X/M39.py +20 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M3X/__init__.py +161 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M5X/M50.py +125 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M5X/M50S.py +132 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M5X/M50S_Plus.py +76 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M5X/M50S_Plus_Plus.py +76 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M5X/M52S.py +6 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M5X/M52S_Plus_Plus.py +6 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M5X/M53.py +34 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M5X/M53H.py +6 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M5X/M53S.py +34 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M5X/M53S_Plus.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M5X/M53S_Plus_Plus.py +41 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M5X/M54S_Plus_Plus.py +20 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M5X/M56.py +6 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M5X/M56S.py +20 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M5X/M56S_Plus.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M5X/M56S_Plus_Plus.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M5X/M59.py +6 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M5X/__init__.py +118 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M6X/M60.py +69 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M6X/M60S.py +76 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M6X/M60S_Plus.py +69 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M6X/M60S_Plus_Plus.py +13 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M6X/M61.py +62 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M6X/M61S.py +20 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M6X/M61S_Plus.py +6 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M6X/M62S_Plus.py +6 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M6X/M63.py +34 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M6X/M63S.py +48 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M6X/M63S_Plus.py +34 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M6X/M63S_Plus_Plus.py +6 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M6X/M64.py +13 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M6X/M64S.py +6 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M6X/M65S.py +13 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M6X/M65S_Plus.py +6 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M6X/M66.py +27 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M6X/M66S.py +69 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M6X/M66S_Plus.py +41 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M6X/M66S_Plus_Plus.py +6 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M6X/M67S.py +6 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M6X/__init__.py +103 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M7X/M70.py +6 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/M7X/__init__.py +1 -0
- pyasic_umhost-0.0.1/pyasic/miners/whatsminer/btminer/__init__.py +5 -0
- pyasic_umhost-0.0.1/pyasic/misc/__init__.py +110 -0
- pyasic_umhost-0.0.1/pyasic/network/__init__.py +216 -0
- pyasic_umhost-0.0.1/pyasic/rpc/__init__.py +24 -0
- pyasic_umhost-0.0.1/pyasic/rpc/antminer.py +36 -0
- pyasic_umhost-0.0.1/pyasic/rpc/base.py +291 -0
- pyasic_umhost-0.0.1/pyasic/rpc/bfgminer.py +181 -0
- pyasic_umhost-0.0.1/pyasic/rpc/bmminer.py +32 -0
- pyasic_umhost-0.0.1/pyasic/rpc/bosminer.py +270 -0
- pyasic_umhost-0.0.1/pyasic/rpc/btminer.py +1102 -0
- pyasic_umhost-0.0.1/pyasic/rpc/ccminer.py +34 -0
- pyasic_umhost-0.0.1/pyasic/rpc/cgminer.py +690 -0
- pyasic_umhost-0.0.1/pyasic/rpc/gcminer.py +178 -0
- pyasic_umhost-0.0.1/pyasic/rpc/luxminer.py +851 -0
- pyasic_umhost-0.0.1/pyasic/rpc/marathon.py +33 -0
- pyasic_umhost-0.0.1/pyasic/rpc/unknown.py +51 -0
- pyasic_umhost-0.0.1/pyasic/settings/__init__.py +64 -0
- pyasic_umhost-0.0.1/pyasic/ssh/__init__.py +17 -0
- pyasic_umhost-0.0.1/pyasic/ssh/antminer.py +16 -0
- pyasic_umhost-0.0.1/pyasic/ssh/base.py +47 -0
- pyasic_umhost-0.0.1/pyasic/ssh/braiins_os.py +95 -0
- pyasic_umhost-0.0.1/pyasic/web/__init__.py +25 -0
- pyasic_umhost-0.0.1/pyasic/web/antminer.py +421 -0
- pyasic_umhost-0.0.1/pyasic/web/auradine.py +442 -0
- pyasic_umhost-0.0.1/pyasic/web/avalonminer.py +108 -0
- pyasic_umhost-0.0.1/pyasic/web/base.py +98 -0
- pyasic_umhost-0.0.1/pyasic/web/braiins_os/__init__.py +2 -0
- pyasic_umhost-0.0.1/pyasic/web/braiins_os/better_monkey.py +93 -0
- pyasic_umhost-0.0.1/pyasic/web/braiins_os/boser.py +498 -0
- pyasic_umhost-0.0.1/pyasic/web/braiins_os/bosminer.py +101 -0
- pyasic_umhost-0.0.1/pyasic/web/braiins_os/proto/__init__.py +0 -0
- pyasic_umhost-0.0.1/pyasic/web/braiins_os/proto/braiins/__init__.py +0 -0
- pyasic_umhost-0.0.1/pyasic/web/braiins_os/proto/braiins/bos/__init__.py +76 -0
- pyasic_umhost-0.0.1/pyasic/web/braiins_os/proto/braiins/bos/v1/__init__.py +3388 -0
- pyasic_umhost-0.0.1/pyasic/web/elphapex.py +224 -0
- pyasic_umhost-0.0.1/pyasic/web/epic.py +167 -0
- pyasic_umhost-0.0.1/pyasic/web/espminer.py +96 -0
- pyasic_umhost-0.0.1/pyasic/web/goldshell.py +145 -0
- pyasic_umhost-0.0.1/pyasic/web/hammer.py +240 -0
- pyasic_umhost-0.0.1/pyasic/web/hiveon.py +213 -0
- pyasic_umhost-0.0.1/pyasic/web/iceriver.py +77 -0
- pyasic_umhost-0.0.1/pyasic/web/innosilicon.py +140 -0
- pyasic_umhost-0.0.1/pyasic/web/luckyminer.py +7 -0
- pyasic_umhost-0.0.1/pyasic/web/marathon.py +147 -0
- pyasic_umhost-0.0.1/pyasic/web/mskminer.py +72 -0
- pyasic_umhost-0.0.1/pyasic/web/vnish.py +157 -0
- pyasic_umhost-0.0.1/pyproject.toml +87 -0
|
@@ -0,0 +1,176 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
@@ -0,0 +1,325 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: pyasic-umhost
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A simplified and standardized interface for Bitcoin ASICs.
|
|
5
|
+
License: Apache 2.0
|
|
6
|
+
Keywords: python,asic,bitcoin,whatsminer,antminer,braiins-os,vnish,luxos
|
|
7
|
+
Author: UpstreamData
|
|
8
|
+
Author-email: brett@upstreamdata.ca
|
|
9
|
+
Requires-Python: >3.9, <4.0
|
|
10
|
+
Classifier: Development Status :: 4 - Beta
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
13
|
+
Classifier: Programming Language :: Python
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
20
|
+
Requires-Dist: aiofiles (>=23.2.1)
|
|
21
|
+
Requires-Dist: asyncssh (>=2.17.0)
|
|
22
|
+
Requires-Dist: betterproto (==2.0.0b7)
|
|
23
|
+
Requires-Dist: cryptography (>=39.0)
|
|
24
|
+
Requires-Dist: httpx (>=0.26.0)
|
|
25
|
+
Requires-Dist: passlib (>=1.7.4)
|
|
26
|
+
Requires-Dist: pyaml (>=23.12.0)
|
|
27
|
+
Requires-Dist: pydantic (>=2.9.2)
|
|
28
|
+
Requires-Dist: tomli (>=2.2.1,<3.0.0) ; python_version < "3.11"
|
|
29
|
+
Requires-Dist: tomli-w (>=1.0.0)
|
|
30
|
+
Description-Content-Type: text/markdown
|
|
31
|
+
|
|
32
|
+
# pyasic
|
|
33
|
+
*A simplified and standardized interface for Bitcoin ASICs.*
|
|
34
|
+
|
|
35
|
+
[](https://pypi.org/project/pyasic/)
|
|
36
|
+
[](https://pypi.org/project/pyasic/)
|
|
37
|
+
|
|
38
|
+
[](https://pypi.org/project/pyasic/)
|
|
39
|
+
[](https://www.codefactor.io/repository/github/upstreamdata/pyasic)
|
|
40
|
+
[](https://github.com/UpstreamData/pyasic/commits/master/)
|
|
41
|
+
|
|
42
|
+
[](https://github.com/psf/black)
|
|
43
|
+
[](https://docs.pyasic.org)
|
|
44
|
+
[](https://github.com/UpstreamData/pyasic/blob/master/LICENSE.txt)
|
|
45
|
+
|
|
46
|
+
---
|
|
47
|
+
## Intro
|
|
48
|
+
|
|
49
|
+
Welcome to `pyasic`! `pyasic` uses an asynchronous method of communicating with ASIC miners on your network, which makes it super fast.
|
|
50
|
+
|
|
51
|
+
[Click here to view supported miner types](https://docs.pyasic.org/en/latest/miners/supported_types/)
|
|
52
|
+
|
|
53
|
+
---
|
|
54
|
+
## Installation
|
|
55
|
+
|
|
56
|
+
It is recommended to install `pyasic` in a [virtual environment](https://realpython.com/python-virtual-environments-a-primer/#what-other-popular-options-exist-aside-from-venv) to isolate it from the rest of your system. Options include:
|
|
57
|
+
- [pypoetry](https://python-poetry.org/): the reccommended way, since pyasic already uses it by default
|
|
58
|
+
|
|
59
|
+
```
|
|
60
|
+
poetry install
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
- [venv](https://docs.python.org/3/library/venv.html): included in Python standard library but has fewer features than other options
|
|
64
|
+
- [pyenv-virtualenv](https://github.com/pyenv/pyenv-virtualenv): [pyenv](https://github.com/pyenv/pyenv) plugin for managing virtualenvs
|
|
65
|
+
|
|
66
|
+
```
|
|
67
|
+
pyenv install <python version number>
|
|
68
|
+
pyenv virtualenv <python version number> <env name>
|
|
69
|
+
pyenv activate <env name>
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
- [conda](https://docs.conda.io/en/latest/)
|
|
73
|
+
|
|
74
|
+
##### Installing `pyasic`
|
|
75
|
+
|
|
76
|
+
`python -m pip install pyasic` or `poetry install`
|
|
77
|
+
|
|
78
|
+
##### Additional Developer Setup
|
|
79
|
+
```
|
|
80
|
+
poetry install --with dev
|
|
81
|
+
pre-commit install
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
##### Building Documentation Locally
|
|
85
|
+
```
|
|
86
|
+
poetry install --with docs
|
|
87
|
+
python docs/generate_miners.py
|
|
88
|
+
poetry run mkdocs serve
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
---
|
|
92
|
+
## Getting started
|
|
93
|
+
|
|
94
|
+
Getting started with `pyasic` is easy. First, find your miner (or miners) on the network by scanning for them or getting the correct class automatically for them if you know the IP.
|
|
95
|
+
|
|
96
|
+
##### Scanning for miners
|
|
97
|
+
To scan for miners in `pyasic`, we use the class `MinerNetwork`, which abstracts the search, communication, identification, setup, and return of a miner to 1 command.
|
|
98
|
+
The command `MinerNetwork.scan()` returns a list that contains any miners found.
|
|
99
|
+
```python
|
|
100
|
+
import asyncio # asyncio for handling the async part
|
|
101
|
+
from pyasic.network import MinerNetwork # miner network handles the scanning
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
async def scan_miners(): # define async scan function to allow awaiting
|
|
105
|
+
# create a miner network
|
|
106
|
+
# you can pass in any IP and it will use that in a subnet with a /24 mask (255 IPs).
|
|
107
|
+
network = MinerNetwork.from_subnet("192.168.1.50/24") # this uses the 192.168.1.0-255 network
|
|
108
|
+
|
|
109
|
+
# scan for miners asynchronously
|
|
110
|
+
# this will return the correct type of miners if they are supported with all functionality.
|
|
111
|
+
miners = await network.scan()
|
|
112
|
+
print(miners)
|
|
113
|
+
|
|
114
|
+
if __name__ == "__main__":
|
|
115
|
+
asyncio.run(scan_miners()) # run the scan asynchronously with asyncio.run()
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
---
|
|
119
|
+
##### Creating miners based on IP
|
|
120
|
+
If you already know the IP address of your miner or miners, you can use the `MinerFactory` to communicate and identify the miners, or an abstraction of its functionality, `get_miner()`.
|
|
121
|
+
The function `get_miner()` will return any miner it found at the IP address specified, or an `UnknownMiner` if it cannot identify the miner.
|
|
122
|
+
```python
|
|
123
|
+
import asyncio # asyncio for handling the async part
|
|
124
|
+
from pyasic import get_miner # handles miner creation
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
async def get_miners(): # define async scan function to allow awaiting
|
|
128
|
+
# get the miner with the miner factory
|
|
129
|
+
# the miner factory is a singleton, and will always use the same object and cache
|
|
130
|
+
# this means you can always call it as MinerFactory().get_miner(), or just get_miner()
|
|
131
|
+
miner_1 = await get_miner("192.168.1.75")
|
|
132
|
+
miner_2 = await get_miner("192.168.1.76")
|
|
133
|
+
print(miner_1, miner_2)
|
|
134
|
+
|
|
135
|
+
# can also gather these, since they are async
|
|
136
|
+
# gathering them will get them both at the same time
|
|
137
|
+
# this makes it much faster to get a lot of miners at a time
|
|
138
|
+
tasks = [get_miner("192.168.1.75"), get_miner("192.168.1.76")]
|
|
139
|
+
miners = await asyncio.gather(*tasks)
|
|
140
|
+
print(miners)
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
if __name__ == "__main__":
|
|
144
|
+
asyncio.run(get_miners()) # get the miners asynchronously with asyncio.run()
|
|
145
|
+
```
|
|
146
|
+
|
|
147
|
+
---
|
|
148
|
+
## Data gathering
|
|
149
|
+
|
|
150
|
+
Once you have your miner(s) identified, you will likely want to get data from the miner(s). You can do this using a built-in function in each miner called `get_data()`.
|
|
151
|
+
This function will return an instance of the dataclass `MinerData` with all data it can gather from the miner.
|
|
152
|
+
Each piece of data in a `MinerData` instance can be referenced by getting it as an attribute, such as `MinerData().hashrate`.
|
|
153
|
+
|
|
154
|
+
##### One miner
|
|
155
|
+
```python
|
|
156
|
+
import asyncio
|
|
157
|
+
from pyasic import get_miner
|
|
158
|
+
|
|
159
|
+
async def gather_miner_data():
|
|
160
|
+
miner = await get_miner("192.168.1.75")
|
|
161
|
+
if miner is not None:
|
|
162
|
+
miner_data = await miner.get_data()
|
|
163
|
+
print(miner_data) # all data from the dataclass
|
|
164
|
+
print(miner_data.hashrate) # hashrate of the miner in TH/s
|
|
165
|
+
|
|
166
|
+
if __name__ == "__main__":
|
|
167
|
+
asyncio.run(gather_miner_data())
|
|
168
|
+
```
|
|
169
|
+
---
|
|
170
|
+
##### Multiple miners
|
|
171
|
+
You can do something similar with multiple miners, with only needing to make a small change to get all the data at once.
|
|
172
|
+
```python
|
|
173
|
+
import asyncio # asyncio for handling the async part
|
|
174
|
+
from pyasic.network import MinerNetwork # miner network handles the scanning
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
async def gather_miner_data(): # define async scan function to allow awaiting
|
|
178
|
+
network = MinerNetwork.from_subnet("192.168.1.50/24")
|
|
179
|
+
miners = await network.scan()
|
|
180
|
+
|
|
181
|
+
# we need to asyncio.gather() all the miners get_data() functions to make them run together
|
|
182
|
+
all_miner_data = await asyncio.gather(*[miner.get_data() for miner in miners])
|
|
183
|
+
|
|
184
|
+
for miner_data in all_miner_data:
|
|
185
|
+
print(miner_data) # print out all the data one by one
|
|
186
|
+
|
|
187
|
+
if __name__ == "__main__":
|
|
188
|
+
asyncio.run(gather_miner_data())
|
|
189
|
+
```
|
|
190
|
+
|
|
191
|
+
---
|
|
192
|
+
## Miner control
|
|
193
|
+
|
|
194
|
+
`pyasic` exposes a standard interface for each miner using control functions.
|
|
195
|
+
Every miner class in `pyasic` must implement all the control functions defined in `BaseMiner`.
|
|
196
|
+
|
|
197
|
+
These functions are
|
|
198
|
+
`check_light`,
|
|
199
|
+
`fault_light_off`,
|
|
200
|
+
`fault_light_on`,
|
|
201
|
+
`get_config`,
|
|
202
|
+
`get_data`,
|
|
203
|
+
`get_errors`,
|
|
204
|
+
`get_hostname`,
|
|
205
|
+
`get_model`,
|
|
206
|
+
`reboot`,
|
|
207
|
+
`restart_backend`,
|
|
208
|
+
`stop_mining`,
|
|
209
|
+
`resume_mining`,
|
|
210
|
+
`is_mining`,
|
|
211
|
+
`send_config`, and
|
|
212
|
+
`set_power_limit`.
|
|
213
|
+
|
|
214
|
+
##### Usage
|
|
215
|
+
```python
|
|
216
|
+
import asyncio
|
|
217
|
+
from pyasic import get_miner
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
async def set_fault_light():
|
|
221
|
+
miner = await get_miner("192.168.1.20")
|
|
222
|
+
|
|
223
|
+
# call control function
|
|
224
|
+
await miner.fault_light_on()
|
|
225
|
+
|
|
226
|
+
if __name__ == "__main__":
|
|
227
|
+
asyncio.run(set_fault_light())
|
|
228
|
+
```
|
|
229
|
+
|
|
230
|
+
---
|
|
231
|
+
## Helper dataclasses
|
|
232
|
+
|
|
233
|
+
##### `MinerConfig` and `MinerData`
|
|
234
|
+
|
|
235
|
+
`pyasic` implements a few dataclasses as helpers to make data return types consistent across different miners and miner APIs. The different fields of these dataclasses can all be viewed with the classmethod `cls.fields()`.
|
|
236
|
+
|
|
237
|
+
---
|
|
238
|
+
|
|
239
|
+
##### MinerData
|
|
240
|
+
|
|
241
|
+
`MinerData` is a return from the [`get_data()`](#get-data) function, and is used to have a consistent dataset across all returns.
|
|
242
|
+
|
|
243
|
+
You can call `MinerData.as_dict()` to get the dataclass as a dictionary, and there are many other helper functions contained in the class to convert to different data formats.
|
|
244
|
+
|
|
245
|
+
`MinerData` instances can also be added to each other to combine their data and can be divided by a number to divide all their data, allowing you to get average data from many miners by doing -
|
|
246
|
+
```python
|
|
247
|
+
from pyasic import MinerData
|
|
248
|
+
|
|
249
|
+
# examples of miner data
|
|
250
|
+
d1 = MinerData("192.168.1.1")
|
|
251
|
+
d2 = MinerData("192.168.1.2")
|
|
252
|
+
|
|
253
|
+
list_of_miner_data = [d1, d2]
|
|
254
|
+
|
|
255
|
+
average_data = sum(list_of_miner_data, start=MinerData("0.0.0.0"))/len(list_of_miner_data)
|
|
256
|
+
```
|
|
257
|
+
|
|
258
|
+
---
|
|
259
|
+
|
|
260
|
+
##### MinerConfig
|
|
261
|
+
|
|
262
|
+
`MinerConfig` is `pyasic`'s way to represent a configuration file from a miner.
|
|
263
|
+
It is designed to unionize the configuration of all supported miner types, and is the return from [`get_config()`](#get-config).
|
|
264
|
+
|
|
265
|
+
Each miner has a unique way to convert the `MinerConfig` to their specific type, there are helper functions in the class.
|
|
266
|
+
In most cases these helper functions should not be used, as [`send_config()`](#send-config) takes a [`MinerConfig` and will do the conversion to the right type for you.
|
|
267
|
+
|
|
268
|
+
You can use the `MinerConfig` as follows:
|
|
269
|
+
```python
|
|
270
|
+
import asyncio
|
|
271
|
+
from pyasic import get_miner
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
async def set_fault_light():
|
|
275
|
+
miner = await get_miner("192.168.1.20")
|
|
276
|
+
|
|
277
|
+
# get config
|
|
278
|
+
cfg = await miner.get_config()
|
|
279
|
+
|
|
280
|
+
# send config
|
|
281
|
+
await miner.send_config(cfg)
|
|
282
|
+
|
|
283
|
+
if __name__ == "__main__":
|
|
284
|
+
asyncio.run(set_fault_light())
|
|
285
|
+
|
|
286
|
+
```
|
|
287
|
+
|
|
288
|
+
---
|
|
289
|
+
## Settings
|
|
290
|
+
|
|
291
|
+
`pyasic` has settings designed to make using large groups of miners easier. You can set the default password for all types of miners using the `pyasic.settings` module, used as follows:
|
|
292
|
+
|
|
293
|
+
```python
|
|
294
|
+
from pyasic import settings
|
|
295
|
+
|
|
296
|
+
settings.update("default_antminer_web_password", "my_pwd")
|
|
297
|
+
```
|
|
298
|
+
|
|
299
|
+
##### Default values:
|
|
300
|
+
```
|
|
301
|
+
"network_ping_retries": 1,
|
|
302
|
+
"network_ping_timeout": 3,
|
|
303
|
+
"network_scan_semaphore": None,
|
|
304
|
+
"factory_get_retries": 1,
|
|
305
|
+
"factory_get_timeout": 3,
|
|
306
|
+
"get_data_retries": 1,
|
|
307
|
+
"api_function_timeout": 5,
|
|
308
|
+
"antminer_mining_mode_as_str": False,
|
|
309
|
+
"default_whatsminer_rpc_password": "admin",
|
|
310
|
+
"default_innosilicon_web_password": "admin",
|
|
311
|
+
"default_antminer_web_password": "root",
|
|
312
|
+
"default_bosminer_web_password": "root",
|
|
313
|
+
"default_vnish_web_password": "admin",
|
|
314
|
+
"default_goldshell_web_password": "123456789",
|
|
315
|
+
"default_auradine_web_password": "admin",
|
|
316
|
+
"default_epic_web_password": "letmein",
|
|
317
|
+
"default_hive_web_password": "admin",
|
|
318
|
+
"default_antminer_ssh_password": "miner",
|
|
319
|
+
"default_bosminer_ssh_password": "root",
|
|
320
|
+
|
|
321
|
+
# ADVANCED
|
|
322
|
+
# Only use this if you know what you are doing
|
|
323
|
+
"socket_linger_time": 1000,
|
|
324
|
+
```
|
|
325
|
+
|