format: reformat miner files to improve readability.
This commit is contained in:
@@ -19,12 +19,12 @@ from typing import List, Union
|
|||||||
|
|
||||||
from pyasic.errors import APIError
|
from pyasic.errors import APIError
|
||||||
from pyasic.miners import AnyMiner
|
from pyasic.miners import AnyMiner
|
||||||
from pyasic.miners._backends import ( # noqa - Ignore access to _module
|
from pyasic.miners.btc._backends import ( # noqa - Ignore access to _module
|
||||||
X19,
|
X19,
|
||||||
BOSMiner,
|
BOSMiner,
|
||||||
BTMiner,
|
BTMiner,
|
||||||
)
|
)
|
||||||
from pyasic.miners._types import ( # noqa - Ignore access to _module
|
from pyasic.miners.btc._types import ( # noqa - Ignore access to _module
|
||||||
S9,
|
S9,
|
||||||
S17,
|
S17,
|
||||||
T17,
|
T17,
|
||||||
|
|||||||
19
pyasic/miners/btc/__init__.py
Normal file
19
pyasic/miners/btc/__init__.py
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
# ------------------------------------------------------------------------------
|
||||||
|
# Copyright 2022 Upstream Data Inc -
|
||||||
|
# -
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License"); -
|
||||||
|
# you may not use this file except in compliance with the License. -
|
||||||
|
# You may obtain a copy of the License at -
|
||||||
|
# -
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0 -
|
||||||
|
# -
|
||||||
|
# Unless required by applicable law or agreed to in writing, software -
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS, -
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -
|
||||||
|
# See the License for the specific language governing permissions and -
|
||||||
|
# limitations under the License. -
|
||||||
|
# ------------------------------------------------------------------------------
|
||||||
|
from .antminer import *
|
||||||
|
from .avalonminer import *
|
||||||
|
from .innosilicon import *
|
||||||
|
from .whatsminer import *
|
||||||
@@ -20,7 +20,7 @@ from typing import List, Optional, Union
|
|||||||
from pyasic.API import APIError
|
from pyasic.API import APIError
|
||||||
from pyasic.config import MinerConfig, X19PowerMode
|
from pyasic.config import MinerConfig, X19PowerMode
|
||||||
from pyasic.data.error_codes import MinerErrorData, X19Error
|
from pyasic.data.error_codes import MinerErrorData, X19Error
|
||||||
from pyasic.miners._backends import BMMiner # noqa - Ignore access to _module
|
from pyasic.miners.btc._backends import BMMiner # noqa - Ignore access to _module
|
||||||
from pyasic.web.X19 import X19WebAPI
|
from pyasic.web.X19 import X19WebAPI
|
||||||
|
|
||||||
|
|
||||||
@@ -22,5 +22,3 @@ from .cgminer_avalon import CGMinerAvalon
|
|||||||
from .hiveon import Hiveon
|
from .hiveon import Hiveon
|
||||||
from .vnish import VNish
|
from .vnish import VNish
|
||||||
from .X19 import X19
|
from .X19 import X19
|
||||||
from .X7 import X7
|
|
||||||
from .X15 import X15
|
|
||||||
@@ -22,7 +22,7 @@ from pyasic.config import MinerConfig
|
|||||||
from pyasic.data import Fan, HashBoard
|
from pyasic.data import Fan, HashBoard
|
||||||
from pyasic.data.error_codes import MinerErrorData
|
from pyasic.data.error_codes import MinerErrorData
|
||||||
from pyasic.errors import APIError
|
from pyasic.errors import APIError
|
||||||
from pyasic.miners._backends import CGMiner
|
from pyasic.miners.btc._backends import CGMiner
|
||||||
|
|
||||||
|
|
||||||
class CGMinerAvalon(CGMiner):
|
class CGMinerAvalon(CGMiner):
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
import ipaddress
|
import ipaddress
|
||||||
|
|
||||||
from pyasic.miners._backends import BMMiner
|
from pyasic.miners.btc._backends import BMMiner
|
||||||
|
|
||||||
|
|
||||||
class Hiveon(BMMiner):
|
class Hiveon(BMMiner):
|
||||||
@@ -18,7 +18,7 @@ import logging
|
|||||||
from typing import Optional
|
from typing import Optional
|
||||||
|
|
||||||
from pyasic.errors import APIError
|
from pyasic.errors import APIError
|
||||||
from pyasic.miners._backends.bmminer import BMMiner
|
from pyasic.miners.btc._backends.bmminer import BMMiner
|
||||||
from pyasic.web.vnish import VNishWebAPI
|
from pyasic.web.vnish import VNishWebAPI
|
||||||
|
|
||||||
|
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
# limitations under the License. -
|
# limitations under the License. -
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
from pyasic.miners._types.makes import AntMiner
|
from pyasic.miners.makes import AntMiner
|
||||||
|
|
||||||
|
|
||||||
class S17(AntMiner): # noqa - ignore ABC method implementation
|
class S17(AntMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
# limitations under the License. -
|
# limitations under the License. -
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
from pyasic.miners._types.makes import AntMiner
|
from pyasic.miners.makes import AntMiner
|
||||||
|
|
||||||
|
|
||||||
class S17Plus(AntMiner): # noqa - ignore ABC method implementation
|
class S17Plus(AntMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
# limitations under the License. -
|
# limitations under the License. -
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
from pyasic.miners._types.makes import AntMiner
|
from pyasic.miners.makes import AntMiner
|
||||||
|
|
||||||
|
|
||||||
class S17Pro(AntMiner): # noqa - ignore ABC method implementation
|
class S17Pro(AntMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
# limitations under the License. -
|
# limitations under the License. -
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
from pyasic.miners._types.makes import AntMiner
|
from pyasic.miners.makes import AntMiner
|
||||||
|
|
||||||
|
|
||||||
class S17e(AntMiner): # noqa - ignore ABC method implementation
|
class S17e(AntMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
# limitations under the License. -
|
# limitations under the License. -
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
from pyasic.miners._types.makes import AntMiner
|
from pyasic.miners.makes import AntMiner
|
||||||
|
|
||||||
|
|
||||||
class T17(AntMiner): # noqa - ignore ABC method implementation
|
class T17(AntMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
# limitations under the License. -
|
# limitations under the License. -
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
from pyasic.miners._types.makes import AntMiner
|
from pyasic.miners.makes import AntMiner
|
||||||
|
|
||||||
|
|
||||||
class T17Plus(AntMiner): # noqa - ignore ABC method implementation
|
class T17Plus(AntMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
# limitations under the License. -
|
# limitations under the License. -
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
from pyasic.miners._types.makes import AntMiner
|
from pyasic.miners.makes import AntMiner
|
||||||
|
|
||||||
|
|
||||||
class T17e(AntMiner): # noqa - ignore ABC method implementation
|
class T17e(AntMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
# limitations under the License. -
|
# limitations under the License. -
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
from pyasic.miners._types.makes import AntMiner
|
from pyasic.miners.makes import AntMiner
|
||||||
|
|
||||||
|
|
||||||
class S19(AntMiner): # noqa - ignore ABC method implementation
|
class S19(AntMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
# limitations under the License. -
|
# limitations under the License. -
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
from pyasic.miners._types.makes import AntMiner
|
from pyasic.miners.makes import AntMiner
|
||||||
|
|
||||||
|
|
||||||
class S19Pro(AntMiner): # noqa - ignore ABC method implementation
|
class S19Pro(AntMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
# limitations under the License. -
|
# limitations under the License. -
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
from pyasic.miners._types.makes import AntMiner
|
from pyasic.miners.makes import AntMiner
|
||||||
|
|
||||||
|
|
||||||
class S19XP(AntMiner): # noqa - ignore ABC method implementation
|
class S19XP(AntMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
# limitations under the License. -
|
# limitations under the License. -
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
from pyasic.miners._types.makes import AntMiner
|
from pyasic.miners.makes import AntMiner
|
||||||
|
|
||||||
|
|
||||||
class S19a(AntMiner): # noqa - ignore ABC method implementation
|
class S19a(AntMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
# limitations under the License. -
|
# limitations under the License. -
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
from pyasic.miners._types.makes import AntMiner
|
from pyasic.miners.makes import AntMiner
|
||||||
|
|
||||||
|
|
||||||
class S19aPro(AntMiner): # noqa - ignore ABC method implementation
|
class S19aPro(AntMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
# limitations under the License. -
|
# limitations under the License. -
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
from pyasic.miners._types.makes import AntMiner
|
from pyasic.miners.makes import AntMiner
|
||||||
|
|
||||||
|
|
||||||
class S19j(AntMiner): # noqa - ignore ABC method implementation
|
class S19j(AntMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
# limitations under the License. -
|
# limitations under the License. -
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
from pyasic.miners._types.makes import AntMiner
|
from pyasic.miners.makes import AntMiner
|
||||||
|
|
||||||
|
|
||||||
class S19jPro(AntMiner): # noqa - ignore ABC method implementation
|
class S19jPro(AntMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
# limitations under the License. -
|
# limitations under the License. -
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
from pyasic.miners._types.makes import AntMiner
|
from pyasic.miners.makes import AntMiner
|
||||||
|
|
||||||
|
|
||||||
class T19(AntMiner): # noqa - ignore ABC method implementation
|
class T19(AntMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
# limitations under the License. -
|
# limitations under the License. -
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
from pyasic.miners._types.makes import AntMiner
|
from pyasic.miners.makes import AntMiner
|
||||||
|
|
||||||
|
|
||||||
class S9(AntMiner): # noqa - ignore ABC method implementation
|
class S9(AntMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
# limitations under the License. -
|
# limitations under the License. -
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
from pyasic.miners._types.makes import AntMiner
|
from pyasic.miners.makes import AntMiner
|
||||||
|
|
||||||
|
|
||||||
class S9i(AntMiner): # noqa - ignore ABC method implementation
|
class S9i(AntMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
# limitations under the License. -
|
# limitations under the License. -
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
from pyasic.miners._types.makes import AntMiner
|
from pyasic.miners.makes import AntMiner
|
||||||
|
|
||||||
|
|
||||||
class T9(AntMiner): # noqa - ignore ABC method implementation
|
class T9(AntMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -13,7 +13,6 @@
|
|||||||
# See the License for the specific language governing permissions and -
|
# See the License for the specific language governing permissions and -
|
||||||
# limitations under the License. -
|
# limitations under the License. -
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
from .X7 import *
|
|
||||||
from .X9 import *
|
from .X9 import *
|
||||||
from .X17 import *
|
from .X17 import *
|
||||||
from .X19 import *
|
from .X19 import *
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
# limitations under the License. -
|
# limitations under the License. -
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
from pyasic.miners._types.makes import AvalonMiner
|
from pyasic.miners.makes import AvalonMiner
|
||||||
|
|
||||||
|
|
||||||
class Avalon1026(AvalonMiner): # noqa - ignore ABC method implementation
|
class Avalon1026(AvalonMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
# limitations under the License. -
|
# limitations under the License. -
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
from pyasic.miners._types.makes import AvalonMiner
|
from pyasic.miners.makes import AvalonMiner
|
||||||
|
|
||||||
|
|
||||||
class Avalon1047(AvalonMiner): # noqa - ignore ABC method implementation
|
class Avalon1047(AvalonMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
# limitations under the License. -
|
# limitations under the License. -
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
from pyasic.miners._types.makes import AvalonMiner
|
from pyasic.miners.makes import AvalonMiner
|
||||||
|
|
||||||
|
|
||||||
class Avalon1066(AvalonMiner): # noqa - ignore ABC method implementation
|
class Avalon1066(AvalonMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
# limitations under the License. -
|
# limitations under the License. -
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
from pyasic.miners._types.makes import AvalonMiner
|
from pyasic.miners.makes import AvalonMiner
|
||||||
|
|
||||||
|
|
||||||
class Avalon721(AvalonMiner): # noqa - ignore ABC method implementation
|
class Avalon721(AvalonMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
# limitations under the License. -
|
# limitations under the License. -
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
from pyasic.miners._types.makes import AvalonMiner
|
from pyasic.miners.makes import AvalonMiner
|
||||||
|
|
||||||
|
|
||||||
class Avalon741(AvalonMiner): # noqa - ignore ABC method implementation
|
class Avalon741(AvalonMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
# limitations under the License. -
|
# limitations under the License. -
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
from pyasic.miners._types.makes import AvalonMiner
|
from pyasic.miners.makes import AvalonMiner
|
||||||
|
|
||||||
|
|
||||||
class Avalon761(AvalonMiner): # noqa - ignore ABC method implementation
|
class Avalon761(AvalonMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
# limitations under the License. -
|
# limitations under the License. -
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
from pyasic.miners._types.makes import AvalonMiner
|
from pyasic.miners.makes import AvalonMiner
|
||||||
|
|
||||||
|
|
||||||
class Avalon821(AvalonMiner): # noqa - ignore ABC method implementation
|
class Avalon821(AvalonMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
# limitations under the License. -
|
# limitations under the License. -
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
from pyasic.miners._types.makes import AvalonMiner
|
from pyasic.miners.makes import AvalonMiner
|
||||||
|
|
||||||
|
|
||||||
class Avalon841(AvalonMiner): # noqa - ignore ABC method implementation
|
class Avalon841(AvalonMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
# limitations under the License. -
|
# limitations under the License. -
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
from pyasic.miners._types.makes import AvalonMiner
|
from pyasic.miners.makes import AvalonMiner
|
||||||
|
|
||||||
|
|
||||||
class Avalon851(AvalonMiner): # noqa - ignore ABC method implementation
|
class Avalon851(AvalonMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
# limitations under the License. -
|
# limitations under the License. -
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
from pyasic.miners._types.makes import AvalonMiner
|
from pyasic.miners.makes import AvalonMiner
|
||||||
|
|
||||||
|
|
||||||
class Avalon921(AvalonMiner): # noqa - ignore ABC method implementation
|
class Avalon921(AvalonMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
# limitations under the License. -
|
# limitations under the License. -
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
from pyasic.miners._types.makes import InnosiliconMiner
|
from pyasic.miners.makes import InnosiliconMiner
|
||||||
|
|
||||||
|
|
||||||
class InnosiliconT3HPlus(InnosiliconMiner): # noqa - ignore ABC method implementation
|
class InnosiliconT3HPlus(InnosiliconMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
# limitations under the License. -
|
# limitations under the License. -
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
from pyasic.miners._types.makes import WhatsMiner
|
from pyasic.miners.makes import WhatsMiner
|
||||||
|
|
||||||
|
|
||||||
class M20V10(WhatsMiner): # noqa - ignore ABC method implementation
|
class M20V10(WhatsMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
from pyasic.miners._types.makes import WhatsMiner
|
from pyasic.miners.makes import WhatsMiner
|
||||||
|
|
||||||
|
|
||||||
class M20SV10(WhatsMiner): # noqa - ignore ABC method implementation
|
class M20SV10(WhatsMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
from pyasic.miners._types.makes import WhatsMiner
|
from pyasic.miners.makes import WhatsMiner
|
||||||
|
|
||||||
|
|
||||||
class M20SPlusV30(WhatsMiner): # noqa - ignore ABC method implementation
|
class M20SPlusV30(WhatsMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
from pyasic.miners._types.makes import WhatsMiner
|
from pyasic.miners.makes import WhatsMiner
|
||||||
|
|
||||||
|
|
||||||
class M21V10(WhatsMiner): # noqa - ignore ABC method implementation
|
class M21V10(WhatsMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
from pyasic.miners._types.makes import WhatsMiner
|
from pyasic.miners.makes import WhatsMiner
|
||||||
|
|
||||||
|
|
||||||
class M21SV20(WhatsMiner): # noqa - ignore ABC method implementation
|
class M21SV20(WhatsMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
from pyasic.miners._types.makes import WhatsMiner
|
from pyasic.miners.makes import WhatsMiner
|
||||||
|
|
||||||
|
|
||||||
class M21SPlusV20(WhatsMiner): # noqa - ignore ABC method implementation
|
class M21SPlusV20(WhatsMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
from pyasic.miners._types.makes import WhatsMiner
|
from pyasic.miners.makes import WhatsMiner
|
||||||
|
|
||||||
|
|
||||||
class M29V10(WhatsMiner): # noqa - ignore ABC method implementation
|
class M29V10(WhatsMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
from pyasic.miners._types.makes import WhatsMiner
|
from pyasic.miners.makes import WhatsMiner
|
||||||
|
|
||||||
|
|
||||||
class M30V10(WhatsMiner): # noqa - ignore ABC method implementation
|
class M30V10(WhatsMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
from pyasic.miners._types.makes import WhatsMiner
|
from pyasic.miners.makes import WhatsMiner
|
||||||
|
|
||||||
|
|
||||||
class M30SV10(WhatsMiner): # noqa - ignore ABC method implementation
|
class M30SV10(WhatsMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
from pyasic.miners._types.makes import WhatsMiner
|
from pyasic.miners.makes import WhatsMiner
|
||||||
|
|
||||||
|
|
||||||
class M30SPlusV10(WhatsMiner): # noqa - ignore ABC method implementation
|
class M30SPlusV10(WhatsMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
from pyasic.miners._types.makes import WhatsMiner
|
from pyasic.miners.makes import WhatsMiner
|
||||||
|
|
||||||
|
|
||||||
class M30SPlusPlusV10(WhatsMiner): # noqa - ignore ABC method implementation
|
class M30SPlusPlusV10(WhatsMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
from pyasic.miners._types.makes import WhatsMiner
|
from pyasic.miners.makes import WhatsMiner
|
||||||
|
|
||||||
|
|
||||||
class M31V10(WhatsMiner): # noqa - ignore ABC method implementation
|
class M31V10(WhatsMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
from pyasic.miners._types.makes import WhatsMiner
|
from pyasic.miners.makes import WhatsMiner
|
||||||
|
|
||||||
|
|
||||||
class M31HV40(WhatsMiner): # noqa - ignore ABC method implementation
|
class M31HV40(WhatsMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
from pyasic.miners._types.makes import WhatsMiner
|
from pyasic.miners.makes import WhatsMiner
|
||||||
|
|
||||||
|
|
||||||
class M31SV10(WhatsMiner): # noqa - ignore ABC method implementation
|
class M31SV10(WhatsMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
from pyasic.miners._types.makes import WhatsMiner
|
from pyasic.miners.makes import WhatsMiner
|
||||||
|
|
||||||
|
|
||||||
class M31SEV10(WhatsMiner): # noqa - ignore ABC method implementation
|
class M31SEV10(WhatsMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
from pyasic.miners._types.makes import WhatsMiner
|
from pyasic.miners.makes import WhatsMiner
|
||||||
|
|
||||||
|
|
||||||
class M31SPlusV10(WhatsMiner): # noqa - ignore ABC method implementation
|
class M31SPlusV10(WhatsMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
from pyasic.miners._types.makes import WhatsMiner
|
from pyasic.miners.makes import WhatsMiner
|
||||||
|
|
||||||
|
|
||||||
class M32V10(WhatsMiner): # noqa - ignore ABC method implementation
|
class M32V10(WhatsMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
# limitations under the License. -
|
# limitations under the License. -
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
from pyasic.miners._types.makes import WhatsMiner
|
from pyasic.miners.makes import WhatsMiner
|
||||||
|
|
||||||
|
|
||||||
class M32S(WhatsMiner): # noqa - ignore ABC method implementation
|
class M32S(WhatsMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
from pyasic.miners._types.makes import WhatsMiner
|
from pyasic.miners.makes import WhatsMiner
|
||||||
|
|
||||||
|
|
||||||
class M33V10(WhatsMiner): # noqa - ignore ABC method implementation
|
class M33V10(WhatsMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
from pyasic.miners._types.makes import WhatsMiner
|
from pyasic.miners.makes import WhatsMiner
|
||||||
|
|
||||||
|
|
||||||
class M33SVG30(WhatsMiner): # noqa - ignore ABC method implementation
|
class M33SVG30(WhatsMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
from pyasic.miners._types.makes import WhatsMiner
|
from pyasic.miners.makes import WhatsMiner
|
||||||
|
|
||||||
|
|
||||||
class M33SPlusVH20(WhatsMiner): # noqa - ignore ABC method implementation
|
class M33SPlusVH20(WhatsMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
from pyasic.miners._types.makes import WhatsMiner
|
from pyasic.miners.makes import WhatsMiner
|
||||||
|
|
||||||
|
|
||||||
class M33SPlusPlusVH20(WhatsMiner): # noqa - ignore ABC method implementation
|
class M33SPlusPlusVH20(WhatsMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
# limitations under the License. -
|
# limitations under the License. -
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
from pyasic.miners._types.makes import WhatsMiner
|
from pyasic.miners.makes import WhatsMiner
|
||||||
|
|
||||||
|
|
||||||
class M34SPlusVE10(WhatsMiner): # noqa - ignore ABC method implementation
|
class M34SPlusVE10(WhatsMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
from pyasic.miners._types.makes import WhatsMiner
|
from pyasic.miners.makes import WhatsMiner
|
||||||
|
|
||||||
|
|
||||||
class M36SVE10(WhatsMiner): # noqa - ignore ABC method implementation
|
class M36SVE10(WhatsMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
from pyasic.miners._types.makes import WhatsMiner
|
from pyasic.miners.makes import WhatsMiner
|
||||||
|
|
||||||
|
|
||||||
class M36SPlusVG30(WhatsMiner): # noqa - ignore ABC method implementation
|
class M36SPlusVG30(WhatsMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
from pyasic.miners._types.makes import WhatsMiner
|
from pyasic.miners.makes import WhatsMiner
|
||||||
|
|
||||||
|
|
||||||
class M36SPlusPlusVH30(WhatsMiner): # noqa - ignore ABC method implementation
|
class M36SPlusPlusVH30(WhatsMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
from pyasic.miners._types.makes import WhatsMiner
|
from pyasic.miners.makes import WhatsMiner
|
||||||
|
|
||||||
|
|
||||||
class M39V20(WhatsMiner): # noqa - ignore ABC method implementation
|
class M39V20(WhatsMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
from pyasic.miners._types.makes import WhatsMiner
|
from pyasic.miners.makes import WhatsMiner
|
||||||
|
|
||||||
|
|
||||||
class M50VG30(WhatsMiner): # noqa - ignore ABC method implementation
|
class M50VG30(WhatsMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
from pyasic.miners._types.makes import WhatsMiner
|
from pyasic.miners.makes import WhatsMiner
|
||||||
|
|
||||||
|
|
||||||
class M50SVJ10(WhatsMiner): # noqa - ignore ABC method implementation
|
class M50SVJ10(WhatsMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
from pyasic.miners._types.makes import WhatsMiner
|
from pyasic.miners.makes import WhatsMiner
|
||||||
|
|
||||||
|
|
||||||
class M50SPlusVH30(WhatsMiner): # noqa - ignore ABC method implementation
|
class M50SPlusVH30(WhatsMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
from pyasic.miners._types.makes import WhatsMiner
|
from pyasic.miners.makes import WhatsMiner
|
||||||
|
|
||||||
|
|
||||||
class M53VH30(WhatsMiner): # noqa - ignore ABC method implementation
|
class M53VH30(WhatsMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
from pyasic.miners._types.makes import WhatsMiner
|
from pyasic.miners.makes import WhatsMiner
|
||||||
|
|
||||||
|
|
||||||
class M53SVH30(WhatsMiner): # noqa - ignore ABC method implementation
|
class M53SVH30(WhatsMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
from pyasic.miners._types.makes import WhatsMiner
|
from pyasic.miners.makes import WhatsMiner
|
||||||
|
|
||||||
|
|
||||||
class M53SPlusVJ30(WhatsMiner): # noqa - ignore ABC method implementation
|
class M53SPlusVJ30(WhatsMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
from pyasic.miners._types.makes import WhatsMiner
|
from pyasic.miners.makes import WhatsMiner
|
||||||
|
|
||||||
|
|
||||||
class M56VH30(WhatsMiner): # noqa - ignore ABC method implementation
|
class M56VH30(WhatsMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
from pyasic.miners._types.makes import WhatsMiner
|
from pyasic.miners.makes import WhatsMiner
|
||||||
|
|
||||||
|
|
||||||
class M56SVH30(WhatsMiner): # noqa - ignore ABC method implementation
|
class M56SVH30(WhatsMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
from pyasic.miners._types.makes import WhatsMiner
|
from pyasic.miners.makes import WhatsMiner
|
||||||
|
|
||||||
|
|
||||||
class M56SPlusVJ30(WhatsMiner): # noqa - ignore ABC method implementation
|
class M56SPlusVJ30(WhatsMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
from pyasic.miners._types.makes import WhatsMiner
|
from pyasic.miners.makes import WhatsMiner
|
||||||
|
|
||||||
|
|
||||||
class M59VH30(WhatsMiner): # noqa - ignore ABC method implementation
|
class M59VH30(WhatsMiner): # noqa - ignore ABC method implementation
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
# limitations under the License. -
|
# limitations under the License. -
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
from pyasic.miners._types import S17 # noqa - Ignore access to _module
|
from pyasic.miners.btc._types import S17 # noqa - Ignore access to _module
|
||||||
|
|
||||||
from .X17 import BMMinerX17
|
from .X17 import BMMinerX17
|
||||||
|
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
# limitations under the License. -
|
# limitations under the License. -
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
from pyasic.miners._types import S17Plus # noqa - Ignore access to _module
|
from pyasic.miners.btc._types import S17Plus # noqa - Ignore access to _module
|
||||||
|
|
||||||
from .X17 import BMMinerX17
|
from .X17 import BMMinerX17
|
||||||
|
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
# limitations under the License. -
|
# limitations under the License. -
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
from pyasic.miners._types import S17Pro # noqa - Ignore access to _module
|
from pyasic.miners.btc._types import S17Pro # noqa - Ignore access to _module
|
||||||
|
|
||||||
from .X17 import BMMinerX17
|
from .X17 import BMMinerX17
|
||||||
|
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
# limitations under the License. -
|
# limitations under the License. -
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
from pyasic.miners._types import S17e # noqa - Ignore access to _module
|
from pyasic.miners.btc._types import S17e # noqa - Ignore access to _module
|
||||||
|
|
||||||
from .X17 import BMMinerX17
|
from .X17 import BMMinerX17
|
||||||
|
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
# limitations under the License. -
|
# limitations under the License. -
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
from pyasic.miners._types import T17 # noqa - Ignore access to _module
|
from pyasic.miners.btc._types import T17 # noqa - Ignore access to _module
|
||||||
|
|
||||||
from .X17 import BMMinerX17
|
from .X17 import BMMinerX17
|
||||||
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user