repo
stringlengths
7
90
file_url
stringlengths
81
315
file_path
stringlengths
4
228
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 14:38:15
2026-01-05 02:33:18
truncated
bool
2 classes
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/iceriver/iceminer/ALX/__init__.py
pyasic/miners/iceriver/iceminer/ALX/__init__.py
from .AL3 import IceRiverAL3
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/iceriver/iceminer/KSX/KS2.py
pyasic/miners/iceriver/iceminer/KSX/KS2.py
from pyasic.miners.backends.iceriver import IceRiver from pyasic.miners.device.models import KS2 class IceRiverKS2(IceRiver, KS2): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/iceriver/iceminer/KSX/KS3.py
pyasic/miners/iceriver/iceminer/KSX/KS3.py
from pyasic.miners.backends.iceriver import IceRiver from pyasic.miners.device.models.iceriver import KS3, KS3L, KS3M class IceRiverKS3(IceRiver, KS3): pass class IceRiverKS3L(IceRiver, KS3L): pass class IceRiverKS3M(IceRiver, KS3M): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/iceriver/iceminer/KSX/KS0.py
pyasic/miners/iceriver/iceminer/KSX/KS0.py
from pyasic.miners.backends.iceriver import IceRiver from pyasic.miners.device.models import KS0 class IceRiverKS0(IceRiver, KS0): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/iceriver/iceminer/KSX/KS1.py
pyasic/miners/iceriver/iceminer/KSX/KS1.py
from pyasic.miners.backends.iceriver import IceRiver from pyasic.miners.device.models import KS1 class IceRiverKS1(IceRiver, KS1): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/iceriver/iceminer/KSX/__init__.py
pyasic/miners/iceriver/iceminer/KSX/__init__.py
from .KS0 import IceRiverKS0 from .KS1 import IceRiverKS1 from .KS2 import IceRiverKS2 from .KS3 import IceRiverKS3, IceRiverKS3L, IceRiverKS3M from .KS5 import IceRiverKS5, IceRiverKS5L, IceRiverKS5M
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/iceriver/iceminer/KSX/KS5.py
pyasic/miners/iceriver/iceminer/KSX/KS5.py
from pyasic.miners.backends.iceriver import IceRiver from pyasic.miners.device.models.iceriver import KS5, KS5L, KS5M class IceRiverKS5(IceRiver, KS5): pass class IceRiverKS5L(IceRiver, KS5L): pass class IceRiverKS5M(IceRiver, KS5M): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/__init__.py
pyasic/miners/antminer/__init__.py
# ------------------------------------------------------------------------------ # 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 .bmminer import * from .bosminer import * from .cgminer import * from .epic import * from .hiveon import * from .luxos import * from .marathon import * from .mskminer import * from .vnish import *
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/luxos/__init__.py
pyasic/miners/antminer/luxos/__init__.py
# ------------------------------------------------------------------------------ # 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 .X9 import * from .X19 import * from .X21 import *
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/luxos/X9/S9.py
pyasic/miners/antminer/luxos/X9/S9.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import LUXMiner from pyasic.miners.device.models import S9 class LUXMinerS9(LUXMiner, S9): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/luxos/X9/__init__.py
pyasic/miners/antminer/luxos/X9/__init__.py
# ------------------------------------------------------------------------------ # 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 .S9 import LUXMinerS9
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/luxos/X19/S19.py
pyasic/miners/antminer/luxos/X19/S19.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import LUXMiner from pyasic.miners.device.models import ( S19, S19XP, S19jPro, S19jProPlus, S19kPro, S19Pro, ) class LUXMinerS19(LUXMiner, S19): pass class LUXMinerS19Pro(LUXMiner, S19Pro): pass class LUXMinerS19jPro(LUXMiner, S19jPro): pass class LUXMinerS19jProPlus(LUXMiner, S19jProPlus): pass class LUXMinerS19kPro(LUXMiner, S19kPro): pass class LUXMinerS19XP(LUXMiner, S19XP): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/luxos/X19/__init__.py
pyasic/miners/antminer/luxos/X19/__init__.py
# ------------------------------------------------------------------------------ # 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 .S19 import ( LUXMinerS19, LUXMinerS19jPro, LUXMinerS19jProPlus, LUXMinerS19kPro, LUXMinerS19Pro, LUXMinerS19XP, ) from .T19 import LUXMinerT19
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/luxos/X19/T19.py
pyasic/miners/antminer/luxos/X19/T19.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import LUXMiner from pyasic.miners.device.models import T19 class LUXMinerT19(LUXMiner, T19): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/luxos/X21/S21.py
pyasic/miners/antminer/luxos/X21/S21.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import LUXMiner from pyasic.miners.device.models import S21 class LUXMinerS21(LUXMiner, S21): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/luxos/X21/T21.py
pyasic/miners/antminer/luxos/X21/T21.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import LUXMiner from pyasic.miners.device.models import T21 class LUXMinerT21(LUXMiner, T21): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/luxos/X21/__init__.py
pyasic/miners/antminer/luxos/X21/__init__.py
# ------------------------------------------------------------------------------ # 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 .S21 import LUXMinerS21 from .T21 import LUXMinerT21
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/epic/__init__.py
pyasic/miners/antminer/epic/__init__.py
# ------------------------------------------------------------------------------ # 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 .X19 import * from .X21 import *
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/epic/X19/S19.py
pyasic/miners/antminer/epic/X19/S19.py
# ------------------------------------------------------------------------------ # 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 pyasic.device.models import MinerModel, MinerModelType from pyasic.miners.backends import ePIC from pyasic.miners.device.models import ( S19, S19XP, S19j, S19jPro, S19jProPlus, S19kPro, S19Pro, ) class ePICS19(ePIC, S19): pass class ePICS19Pro(ePIC, S19Pro): pass class ePICS19j(ePIC, S19j): pass class ePICS19jPro(ePIC, S19jPro): pass class ePICS19jProPlus(ePIC, S19jProPlus): pass class ePICS19kPro(ePIC, S19kPro): pass class ePICS19XP(ePIC, S19XP): pass class ePICS19jProDual(ePIC, S19jPro): raw_model: MinerModelType = MinerModel.EPIC.S19jProDual expected_fans = S19jPro.expected_fans * 2 expected_hashboards = S19jPro.expected_hashboards * 2 class ePICS19kProDual(ePIC, S19kPro): raw_model: MinerModelType = MinerModel.EPIC.S19kProDual expected_fans = S19kPro.expected_fans * 2 expected_hashboards = S19kPro.expected_hashboards * 2
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/epic/X19/__init__.py
pyasic/miners/antminer/epic/X19/__init__.py
# ------------------------------------------------------------------------------ # 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 .S19 import ( ePICS19, ePICS19j, ePICS19jPro, ePICS19jProDual, ePICS19jProPlus, ePICS19kPro, ePICS19kProDual, ePICS19Pro, ePICS19XP, )
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/epic/X21/S21.py
pyasic/miners/antminer/epic/X21/S21.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import ePIC from pyasic.miners.device.models import S21, S21Pro class ePICS21(ePIC, S21): pass class ePICS21Pro(ePIC, S21Pro): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/epic/X21/T21.py
pyasic/miners/antminer/epic/X21/T21.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import ePIC from pyasic.miners.device.models import T21 class ePICT21(ePIC, T21): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/epic/X21/__init__.py
pyasic/miners/antminer/epic/X21/__init__.py
# ------------------------------------------------------------------------------ # 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 .S21 import ePICS21, ePICS21Pro from .T21 import ePICT21
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/bmminer/__init__.py
pyasic/miners/antminer/bmminer/__init__.py
# ------------------------------------------------------------------------------ # 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 .X3 import * from .X5 import * from .X7 import * from .X9 import * from .X15 import * from .X17 import * from .X19 import * from .X21 import *
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/bmminer/X9/L9.py
pyasic/miners/antminer/bmminer/X9/L9.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import AntminerModern from pyasic.miners.device.models import L9 class BMMinerL9(AntminerModern, L9): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/bmminer/X9/E9.py
pyasic/miners/antminer/bmminer/X9/E9.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import AntminerModern from pyasic.miners.device.models import E9Pro class BMMinerE9Pro(AntminerModern, E9Pro): supports_shutdown = False
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/bmminer/X9/S9.py
pyasic/miners/antminer/bmminer/X9/S9.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import BMMiner from pyasic.miners.device.models import S9, S9i, S9j class BMMinerS9(BMMiner, S9): pass class BMMinerS9i(BMMiner, S9i): pass class BMMinerS9j(BMMiner, S9j): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/bmminer/X9/T9.py
pyasic/miners/antminer/bmminer/X9/T9.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import BMMiner from pyasic.miners.device.models import T9 class BMMinerT9(BMMiner, T9): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/bmminer/X9/__init__.py
pyasic/miners/antminer/bmminer/X9/__init__.py
# ------------------------------------------------------------------------------ # 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 .D9 import BMMinerD9 from .E9 import BMMinerE9Pro from .L9 import BMMinerL9 from .S9 import BMMinerS9, BMMinerS9i, BMMinerS9j from .T9 import BMMinerT9
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/bmminer/X9/D9.py
pyasic/miners/antminer/bmminer/X9/D9.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import AntminerModern from pyasic.miners.device.models import D9 class BMMinerD9(AntminerModern, D9): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/bmminer/X17/T17.py
pyasic/miners/antminer/bmminer/X17/T17.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import AntminerOld from pyasic.miners.device.models import T17, T17e, T17Plus class BMMinerT17(AntminerOld, T17): pass class BMMinerT17Plus(AntminerOld, T17Plus): pass class BMMinerT17e(AntminerOld, T17e): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/bmminer/X17/__init__.py
pyasic/miners/antminer/bmminer/X17/__init__.py
# ------------------------------------------------------------------------------ # 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 .S17 import BMMinerS17, BMMinerS17e, BMMinerS17Plus, BMMinerS17Pro from .T17 import BMMinerT17, BMMinerT17e, BMMinerT17Plus
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/bmminer/X17/S17.py
pyasic/miners/antminer/bmminer/X17/S17.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import AntminerOld from pyasic.miners.device.models import S17, S17e, S17Plus, S17Pro class BMMinerS17(AntminerOld, S17): pass class BMMinerS17Plus(AntminerOld, S17Plus): pass class BMMinerS17Pro(AntminerOld, S17Pro): pass class BMMinerS17e(AntminerOld, S17e): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/bmminer/X5/__init__.py
pyasic/miners/antminer/bmminer/X5/__init__.py
# ------------------------------------------------------------------------------ # 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 .KS5 import BMMinerKS5, BMMinerKS5Pro
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/bmminer/X5/KS5.py
pyasic/miners/antminer/bmminer/X5/KS5.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import AntminerModern from pyasic.miners.device.models.antminer import KS5, KS5Pro class BMMinerKS5(AntminerModern, KS5): supports_shutdown = False class BMMinerKS5Pro(AntminerModern, KS5Pro): supports_shutdown = False
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/bmminer/X19/S19.py
pyasic/miners/antminer/bmminer/X19/S19.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import AntminerModern from pyasic.miners.device.models import ( S19, S19L, S19XP, S19a, S19aPro, S19Hydro, S19i, S19j, S19jNoPIC, S19jPlus, S19jPro, S19jProPlus, S19jXP, S19KPro, S19Plus, S19Pro, S19ProHydro, S19ProPlus, S19ProPlusHydro, ) class BMMinerS19(AntminerModern, S19): pass class BMMinerS19Plus(AntminerModern, S19Plus): pass class BMMinerS19i(AntminerModern, S19i): pass class BMMinerS19Pro(AntminerModern, S19Pro): pass class BMMinerS19ProPlus(AntminerModern, S19ProPlus): pass class BMMinerS19XP(AntminerModern, S19XP): pass class BMMinerS19a(AntminerModern, S19a): pass class BMMinerS19aPro(AntminerModern, S19aPro): pass class BMMinerS19j(AntminerModern, S19j): pass class BMMinerS19jNoPIC(AntminerModern, S19jNoPIC): pass class BMMinerS19jPro(AntminerModern, S19jPro): pass class BMMinerS19jPlus(AntminerModern, S19jPlus): pass class BMMinerS19L(AntminerModern, S19L): pass class BMMinerS19ProHydro(AntminerModern, S19ProHydro): pass class BMMinerS19Hydro(AntminerModern, S19Hydro): pass class BMMinerS19ProPlusHydro(AntminerModern, S19ProPlusHydro): pass class BMMinerS19KPro(AntminerModern, S19KPro): pass class BMMinerS19jXP(AntminerModern, S19jXP): pass class BMMinerS19jProPlus(AntminerModern, S19jProPlus): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/bmminer/X19/__init__.py
pyasic/miners/antminer/bmminer/X19/__init__.py
# ------------------------------------------------------------------------------ # 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 .S19 import ( BMMinerS19, BMMinerS19a, BMMinerS19aPro, BMMinerS19Hydro, BMMinerS19i, BMMinerS19j, BMMinerS19jNoPIC, BMMinerS19jPlus, BMMinerS19jPro, BMMinerS19jProPlus, BMMinerS19jXP, BMMinerS19KPro, BMMinerS19L, BMMinerS19Plus, BMMinerS19Pro, BMMinerS19ProHydro, BMMinerS19ProPlus, BMMinerS19ProPlusHydro, BMMinerS19XP, ) from .T19 import BMMinerT19
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/bmminer/X19/T19.py
pyasic/miners/antminer/bmminer/X19/T19.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import AntminerModern from pyasic.miners.device.models import T19 class BMMinerT19(AntminerModern, T19): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/bmminer/X7/L7.py
pyasic/miners/antminer/bmminer/X7/L7.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import AntminerModern from pyasic.miners.device.models import L7 class BMMinerL7(AntminerModern, L7): supports_shutdown = False
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/bmminer/X7/K7.py
pyasic/miners/antminer/bmminer/X7/K7.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import AntminerModern from pyasic.miners.device.models import K7 class BMMinerK7(AntminerModern, K7): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/bmminer/X7/D7.py
pyasic/miners/antminer/bmminer/X7/D7.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import AntminerModern from pyasic.miners.device.models import D7 class BMMinerD7(AntminerModern, D7): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/bmminer/X7/__init__.py
pyasic/miners/antminer/bmminer/X7/__init__.py
# ------------------------------------------------------------------------------ # 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 .D7 import BMMinerD7 from .K7 import BMMinerK7 from .L7 import BMMinerL7
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/bmminer/X21/S21.py
pyasic/miners/antminer/bmminer/X21/S21.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import AntminerModern from pyasic.miners.device.models import ( S21, S21XP, S21Hydro, S21Plus, S21PlusHydro, S21Pro, ) class BMMinerS21(AntminerModern, S21): pass class BMMinerS21Plus(AntminerModern, S21Plus): pass class BMMinerS21PlusHydro(AntminerModern, S21PlusHydro): pass class BMMinerS21Pro(AntminerModern, S21Pro): pass class BMMinerS21Hydro(AntminerModern, S21Hydro): pass class BMMinerS21XP(AntminerModern, S21XP): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/bmminer/X21/T21.py
pyasic/miners/antminer/bmminer/X21/T21.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import AntminerModern from pyasic.miners.device.models import T21 class BMMinerT21(AntminerModern, T21): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/bmminer/X21/__init__.py
pyasic/miners/antminer/bmminer/X21/__init__.py
# ------------------------------------------------------------------------------ # 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 .S21 import ( BMMinerS21, BMMinerS21Hydro, BMMinerS21Plus, BMMinerS21PlusHydro, BMMinerS21Pro, BMMinerS21XP, ) from .T21 import BMMinerT21
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/bmminer/X15/Z15.py
pyasic/miners/antminer/bmminer/X15/Z15.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import AntminerModern from pyasic.miners.device.models import Z15Pro class BMMinerZ15Pro(AntminerModern, Z15Pro): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/bmminer/X15/__init__.py
pyasic/miners/antminer/bmminer/X15/__init__.py
# ------------------------------------------------------------------------------ # 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 .Z15 import BMMinerZ15Pro
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/bmminer/X3/KA3.py
pyasic/miners/antminer/bmminer/X3/KA3.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import AntminerModern from pyasic.miners.device.models import KA3 class BMMinerKA3(AntminerModern, KA3): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/bmminer/X3/L3.py
pyasic/miners/antminer/bmminer/X3/L3.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import AntminerOld from pyasic.miners.device.models import L3Plus class BMMinerL3Plus(AntminerOld, L3Plus): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/bmminer/X3/KS3.py
pyasic/miners/antminer/bmminer/X3/KS3.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import AntminerModern from pyasic.miners.device.models.antminer import KS3 class BMMinerKS3(AntminerModern, KS3): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/bmminer/X3/__init__.py
pyasic/miners/antminer/bmminer/X3/__init__.py
# ------------------------------------------------------------------------------ # 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 .HS3 import BMMinerHS3 from .KA3 import BMMinerKA3 from .KS3 import BMMinerKS3 from .L3 import BMMinerL3Plus
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/bmminer/X3/HS3.py
pyasic/miners/antminer/bmminer/X3/HS3.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import AntminerModern from pyasic.miners.device.models import HS3 class BMMinerHS3(AntminerModern, HS3): supports_shutdown = False
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/mskminer/__init__.py
pyasic/miners/antminer/mskminer/__init__.py
# ------------------------------------------------------------------------------ # 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 .X19 import *
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/mskminer/X19/S19.py
pyasic/miners/antminer/mskminer/X19/S19.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends.mskminer import MSKMiner from pyasic.miners.device.models import ( S19NoPIC, ) class MSKMinerS19NoPIC(MSKMiner, S19NoPIC): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/mskminer/X19/__init__.py
pyasic/miners/antminer/mskminer/X19/__init__.py
# ------------------------------------------------------------------------------ # 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 .S19 import MSKMinerS19NoPIC
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/marathon/__init__.py
pyasic/miners/antminer/marathon/__init__.py
from .X19 import * from .X21 import *
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/marathon/X19/S19.py
pyasic/miners/antminer/marathon/X19/S19.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import MaraMiner from pyasic.miners.device.models import ( S19, S19XP, S19j, S19jNoPIC, S19jPro, S19KPro, S19Pro, ) class MaraS19(MaraMiner, S19): pass class MaraS19Pro(MaraMiner, S19Pro): pass class MaraS19XP(MaraMiner, S19XP): pass class MaraS19j(MaraMiner, S19j): pass class MaraS19jNoPIC(MaraMiner, S19jNoPIC): pass class MaraS19jPro(MaraMiner, S19jPro): pass class MaraS19KPro(MaraMiner, S19KPro): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/marathon/X19/__init__.py
pyasic/miners/antminer/marathon/X19/__init__.py
from .S19 import ( MaraS19, MaraS19j, MaraS19jNoPIC, MaraS19jPro, MaraS19KPro, MaraS19Pro, MaraS19XP, )
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/marathon/X21/S21.py
pyasic/miners/antminer/marathon/X21/S21.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import MaraMiner from pyasic.miners.device.models import S21 class MaraS21(MaraMiner, S21): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/marathon/X21/T21.py
pyasic/miners/antminer/marathon/X21/T21.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import MaraMiner from pyasic.miners.device.models import T21 class MaraT21(MaraMiner, T21): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/marathon/X21/__init__.py
pyasic/miners/antminer/marathon/X21/__init__.py
from .S21 import MaraS21 from .T21 import MaraT21
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/cgminer/__init__.py
pyasic/miners/antminer/cgminer/__init__.py
# ------------------------------------------------------------------------------ # 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 .X3 import * from .X5 import * from .X15 import *
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/cgminer/X5/DR5.py
pyasic/miners/antminer/cgminer/X5/DR5.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import AntminerOld from pyasic.miners.device.models import DR5 class CGMinerDR5(AntminerOld, DR5): supports_shutdown = False
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/cgminer/X5/__init__.py
pyasic/miners/antminer/cgminer/X5/__init__.py
# ------------------------------------------------------------------------------ # 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 .DR5 import CGMinerDR5
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/cgminer/X15/Z15.py
pyasic/miners/antminer/cgminer/X15/Z15.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import AntminerOld from pyasic.miners.device.models import Z15 class CGMinerZ15(AntminerOld, Z15): supports_shutdown = False
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/cgminer/X15/__init__.py
pyasic/miners/antminer/cgminer/X15/__init__.py
# ------------------------------------------------------------------------------ # 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 .Z15 import CGMinerZ15
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/cgminer/X3/D3.py
pyasic/miners/antminer/cgminer/X3/D3.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import AntminerOld from pyasic.miners.device.models import D3 class CGMinerD3(AntminerOld, D3): supports_shutdown = False
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/cgminer/X3/__init__.py
pyasic/miners/antminer/cgminer/X3/__init__.py
# ------------------------------------------------------------------------------ # 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 .D3 import CGMinerD3
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/bosminer/__init__.py
pyasic/miners/antminer/bosminer/__init__.py
# ------------------------------------------------------------------------------ # 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 .X9 import * from .X17 import * from .X19 import * from .X21 import *
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/bosminer/X9/S9.py
pyasic/miners/antminer/bosminer/X9/S9.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import BOSMiner from pyasic.miners.device.models import S9 class BOSMinerS9(BOSMiner, S9): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/bosminer/X9/__init__.py
pyasic/miners/antminer/bosminer/X9/__init__.py
# ------------------------------------------------------------------------------ # 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 .S9 import BOSMinerS9
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/bosminer/X17/T17.py
pyasic/miners/antminer/bosminer/X17/T17.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import BOSMiner from pyasic.miners.device.models import T17, T17e, T17Plus class BOSMinerT17(BOSMiner, T17): pass class BOSMinerT17Plus(BOSMiner, T17Plus): pass class BOSMinerT17e(BOSMiner, T17e): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/bosminer/X17/__init__.py
pyasic/miners/antminer/bosminer/X17/__init__.py
# ------------------------------------------------------------------------------ # 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 .S17 import BOSMinerS17, BOSMinerS17e, BOSMinerS17Plus, BOSMinerS17Pro from .T17 import BOSMinerT17, BOSMinerT17e, BOSMinerT17Plus
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/bosminer/X17/S17.py
pyasic/miners/antminer/bosminer/X17/S17.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import BOSMiner from pyasic.miners.device.models import S17, S17e, S17Plus, S17Pro class BOSMinerS17(BOSMiner, S17): pass class BOSMinerS17Plus(BOSMiner, S17Plus): pass class BOSMinerS17Pro(BOSMiner, S17Pro): pass class BOSMinerS17e(BOSMiner, S17e): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/bosminer/X19/S19.py
pyasic/miners/antminer/bosminer/X19/S19.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import BOSer from pyasic.miners.device.models import ( S19, S19XP, S19a, S19aPro, S19j, S19jNoPIC, S19jPro, S19jProNoPIC, S19jProPlus, S19jProPlusNoPIC, S19kProNoPIC, S19Plus, S19Pro, S19ProPlusHydro, S19XPHydro, ) class BOSMinerS19(BOSer, S19): pass class BOSMinerS19Plus(BOSer, S19Plus): pass class BOSMinerS19Pro(BOSer, S19Pro): pass class BOSMinerS19a(BOSer, S19a): pass class BOSMinerS19j(BOSer, S19j): pass class BOSMinerS19jNoPIC(BOSer, S19jNoPIC): pass class BOSMinerS19jPro(BOSer, S19jPro): pass class BOSMinerS19jProNoPIC(BOSer, S19jProNoPIC): pass class BOSMinerS19kProNoPIC(BOSer, S19kProNoPIC): pass class BOSMinerS19aPro(BOSer, S19aPro): pass class BOSMinerS19jProPlus(BOSer, S19jProPlus): pass class BOSMinerS19jProPlusNoPIC(BOSer, S19jProPlusNoPIC): pass class BOSMinerS19XP(BOSer, S19XP): pass class BOSMinerS19ProPlusHydro(BOSer, S19ProPlusHydro): pass class BOSMinerS19XPHydro(BOSer, S19XPHydro): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/bosminer/X19/__init__.py
pyasic/miners/antminer/bosminer/X19/__init__.py
# ------------------------------------------------------------------------------ # 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 .S19 import ( BOSMinerS19, BOSMinerS19a, BOSMinerS19aPro, BOSMinerS19j, BOSMinerS19jNoPIC, BOSMinerS19jPro, BOSMinerS19jProNoPIC, BOSMinerS19jProPlus, BOSMinerS19jProPlusNoPIC, BOSMinerS19kProNoPIC, BOSMinerS19Plus, BOSMinerS19Pro, BOSMinerS19ProPlusHydro, BOSMinerS19XP, BOSMinerS19XPHydro, ) from .T19 import BOSMinerT19
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/bosminer/X19/T19.py
pyasic/miners/antminer/bosminer/X19/T19.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import BOSer from pyasic.miners.device.models import T19 class BOSMinerT19(BOSer, T19): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/bosminer/X21/S21.py
pyasic/miners/antminer/bosminer/X21/S21.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import BOSer from pyasic.miners.device.models import S21, S21Hydro, S21Plus, S21PlusHydro, S21Pro # ------------------------------------------------------------------------------ # 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. - # ------------------------------------------------------------------------------ class BOSMinerS21(BOSer, S21): pass class BOSMinerS21Plus(BOSer, S21Plus): pass class BOSMinerS21PlusHydro(BOSer, S21PlusHydro): pass class BOSMinerS21Pro(BOSer, S21Pro): pass class BOSMinerS21Hydro(BOSer, S21Hydro): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/bosminer/X21/T21.py
pyasic/miners/antminer/bosminer/X21/T21.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import BOSer from pyasic.miners.device.models import T21 class BOSMinerT21(BOSer, T21): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/bosminer/X21/__init__.py
pyasic/miners/antminer/bosminer/X21/__init__.py
# ------------------------------------------------------------------------------ # 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 .S21 import ( BOSMinerS21, BOSMinerS21Hydro, BOSMinerS21Plus, BOSMinerS21PlusHydro, BOSMinerS21Pro, ) from .T21 import BOSMinerT21
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/vnish/__init__.py
pyasic/miners/antminer/vnish/__init__.py
# ------------------------------------------------------------------------------ # 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 .X3 import * from .X7 import * from .X9 import * from .X17 import * from .X19 import * from .X21 import *
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/vnish/X9/L9.py
pyasic/miners/antminer/vnish/X9/L9.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import VNish from pyasic.miners.device.models import L9 class VNishL9(VNish, L9): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/vnish/X9/__init__.py
pyasic/miners/antminer/vnish/X9/__init__.py
# ------------------------------------------------------------------------------ # 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 .L9 import VNishL9
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/vnish/X17/__init__.py
pyasic/miners/antminer/vnish/X17/__init__.py
# ------------------------------------------------------------------------------ # 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 .S17 import VNishS17Plus, VNishS17Pro
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/vnish/X17/S17.py
pyasic/miners/antminer/vnish/X17/S17.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import VNish from pyasic.miners.device.models import S17Plus, S17Pro class VNishS17Plus(VNish, S17Plus): pass class VNishS17Pro(VNish, S17Pro): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/vnish/X19/S19.py
pyasic/miners/antminer/vnish/X19/S19.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import VNish from pyasic.miners.device.models import ( S19, S19XP, S19a, S19aPro, S19Hydro, S19i, S19j, S19jPro, S19jProPlus, S19jXP, S19kPro, S19NoPIC, S19Pro, S19ProA, S19ProHydro, S19XPHydro, S19XPPlus, ) class VNishS19(VNish, S19): pass class VNishS19NoPIC(VNish, S19NoPIC): pass class VNishS19Pro(VNish, S19Pro): pass class VNishS19Hydro(VNish, S19Hydro): pass class VNishS19XP(VNish, S19XP): pass class VNishS19XPHydro(VNish, S19XPHydro): pass class VNishS19a(VNish, S19a): pass class VNishS19aPro(VNish, S19aPro): pass class VNishS19ProA(VNish, S19ProA): pass class VNishS19i(VNish, S19i): pass class VNishS19j(VNish, S19j): pass class VNishS19jPro(VNish, S19jPro): pass class VNishS19ProHydro(VNish, S19ProHydro): pass class VNishS19kPro(VNish, S19kPro): pass class VNishS19XPPlus(VNish, S19XPPlus): pass class VNishS19jProPlus(VNish, S19jProPlus): pass class VNishS19jXP(VNish, S19jXP): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/vnish/X19/__init__.py
pyasic/miners/antminer/vnish/X19/__init__.py
# ------------------------------------------------------------------------------ # 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 .S19 import ( VNishS19, VNishS19a, VNishS19aPro, VNishS19Hydro, VNishS19i, VNishS19j, VNishS19jPro, VNishS19jProPlus, VNishS19jXP, VNishS19kPro, VNishS19NoPIC, VNishS19Pro, VNishS19ProA, VNishS19ProHydro, VNishS19XP, VNishS19XPHydro, VNishS19XPPlus, ) from .T19 import VNishT19
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/vnish/X19/T19.py
pyasic/miners/antminer/vnish/X19/T19.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import VNish from pyasic.miners.device.models import T19 class VNishT19(VNish, T19): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/vnish/X7/L7.py
pyasic/miners/antminer/vnish/X7/L7.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import VNish from pyasic.miners.device.models import L7 class VNishL7(VNish, L7): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/vnish/X7/__init__.py
pyasic/miners/antminer/vnish/X7/__init__.py
# ------------------------------------------------------------------------------ # 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 .L7 import VNishL7
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/vnish/X21/S21.py
pyasic/miners/antminer/vnish/X21/S21.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import VNish from pyasic.miners.device.models import S21, S21Hydro, S21Plus, S21PlusHydro, S21Pro class VNishS21(VNish, S21): pass class VNishS21Plus(VNish, S21Plus): pass class VNishS21PlusHydro(VNish, S21PlusHydro): pass class VNishS21Pro(VNish, S21Pro): pass class VNishS21Hydro(VNish, S21Hydro): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/vnish/X21/T21.py
pyasic/miners/antminer/vnish/X21/T21.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import VNish from pyasic.miners.device.models import T21 class VNishT21(VNish, T21): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/vnish/X21/__init__.py
pyasic/miners/antminer/vnish/X21/__init__.py
# ------------------------------------------------------------------------------ # 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 .S21 import ( VNishS21, VNishS21Hydro, VNishS21Plus, VNishS21PlusHydro, VNishS21Pro, ) from .T21 import VNishT21
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/vnish/X3/L3.py
pyasic/miners/antminer/vnish/X3/L3.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import VNish from pyasic.miners.device.models import L3Plus class VNishL3Plus(VNish, L3Plus): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/vnish/X3/__init__.py
pyasic/miners/antminer/vnish/X3/__init__.py
# ------------------------------------------------------------------------------ # 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 .L3 import VNishL3Plus
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/hiveon/__init__.py
pyasic/miners/antminer/hiveon/__init__.py
# ------------------------------------------------------------------------------ # 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 .X9 import * from .X19 import *
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/hiveon/X9/T9.py
pyasic/miners/antminer/hiveon/X9/T9.py
# ------------------------------------------------------------------------------ # 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 pyasic.data import HashBoard from pyasic.device.algorithm import AlgoHashRate, HashUnit from pyasic.errors import APIError from pyasic.miners.backends import HiveonOld from pyasic.miners.data import DataFunction, DataLocations, DataOptions, RPCAPICommand from pyasic.miners.device.models import T9 HIVEON_T9_DATA_LOC = DataLocations( **{ str(DataOptions.API_VERSION): DataFunction( "_get_api_ver", [RPCAPICommand("rpc_version", "version")], ), str(DataOptions.FW_VERSION): DataFunction( "_get_fw_ver", [RPCAPICommand("rpc_version", "version")], ), str(DataOptions.HASHRATE): DataFunction( "_get_hashrate", [RPCAPICommand("rpc_summary", "summary")], ), str(DataOptions.EXPECTED_HASHRATE): DataFunction( "_get_expected_hashrate", [RPCAPICommand("rpc_stats", "stats")], ), str(DataOptions.HASHBOARDS): DataFunction( "_get_hashboards", [RPCAPICommand("rpc_stats", "stats")], ), str(DataOptions.ENVIRONMENT_TEMP): DataFunction( "_get_env_temp", [RPCAPICommand("rpc_stats", "stats")], ), str(DataOptions.WATTAGE): DataFunction( "_get_wattage", [RPCAPICommand("rpc_stats", "stats")], ), str(DataOptions.FANS): DataFunction( "_get_fans", [RPCAPICommand("rpc_stats", "stats")], ), str(DataOptions.UPTIME): DataFunction( "_get_uptime", [RPCAPICommand("rpc_stats", "stats")], ), str(DataOptions.POOLS): DataFunction( "_get_pools", [RPCAPICommand("rpc_pools", "pools")], ), } ) class HiveonT9(HiveonOld, T9): data_locations = HIVEON_T9_DATA_LOC ################################################## ### DATA GATHERING FUNCTIONS (get_{some_data}) ### ################################################## async def _get_hashboards(self, rpc_stats: dict | None = None) -> list[HashBoard]: hashboards = [ HashBoard(slot=board, expected_chips=self.expected_chips) for board in range(self.expected_hashboards) ] if rpc_stats is None: try: rpc_stats = await self.rpc.stats() except APIError: return [] board_map = { 0: [2, 9, 10], 1: [3, 11, 12], 2: [4, 13, 14], } for board in board_map: hashrate = 0 chips = 0 for chipset in board_map[board]: if hashboards[board].chip_temp is None and rpc_stats is not None: try: hashboards[board].temp = rpc_stats["STATS"][1][f"temp{chipset}"] hashboards[board].chip_temp = rpc_stats["STATS"][1][ f"temp2_{chipset}" ] except (KeyError, IndexError): pass else: hashboards[board].missing = False if rpc_stats is not None: try: hashrate += rpc_stats["STATS"][1][f"chain_rate{chipset}"] chips += rpc_stats["STATS"][1][f"chain_acn{chipset}"] except (KeyError, IndexError): pass hashboards[board].hashrate = AlgoHashRate.SHA256( rate=float(hashrate), unit=HashUnit.SHA256.GH ).into(self.algo.unit.default) hashboards[board].chips = chips return hashboards async def _get_env_temp(self, rpc_stats: dict | None = None) -> float | None: env_temp_list: list[int] = [] board_map = { 0: [2, 9, 10], 1: [3, 11, 12], 2: [4, 13, 14], } if not rpc_stats: try: rpc_stats = await self.rpc.stats() except APIError: pass if rpc_stats: for board in board_map.values(): for chipset in board: try: env_temp = rpc_stats["STATS"][1][f"temp3_{chipset}"] if not env_temp == 0: env_temp_list.append(int(env_temp)) except (KeyError, IndexError): pass if not env_temp_list == []: return round(sum(env_temp_list) / len(env_temp_list)) return None
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/hiveon/X9/__init__.py
pyasic/miners/antminer/hiveon/X9/__init__.py
# ------------------------------------------------------------------------------ # 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 .T9 import HiveonT9
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/hiveon/X19/S19.py
pyasic/miners/antminer/hiveon/X19/S19.py
# ------------------------------------------------------------------------------ # 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 pyasic.miners.backends import HiveonModern from pyasic.miners.device.models import ( S19, S19L, S19XP, S19a, S19aPro, S19Hydro, S19i, S19j, S19jNoPIC, S19jPro, S19KPro, S19NoPIC, S19Plus, S19Pro, S19ProHydro, S19ProPlus, S19ProPlusHydro, ) class HiveonS19(HiveonModern, S19): pass class HiveonS19NoPIC(HiveonModern, S19NoPIC): pass class HiveonS19Plus(HiveonModern, S19Plus): pass class HiveonS19i(HiveonModern, S19i): pass class HiveonS19Pro(HiveonModern, S19Pro): pass class HiveonS19ProPlus(HiveonModern, S19ProPlus): pass class HiveonS19XP(HiveonModern, S19XP): pass class HiveonS19a(HiveonModern, S19a): pass class HiveonS19aPro(HiveonModern, S19aPro): pass class HiveonS19j(HiveonModern, S19j): pass class HiveonS19jNoPIC(HiveonModern, S19jNoPIC): pass class HiveonS19jPro(HiveonModern, S19jPro): pass class HiveonS19L(HiveonModern, S19L): pass class HiveonS19ProHydro(HiveonModern, S19ProHydro): pass class HiveonS19Hydro(HiveonModern, S19Hydro): pass class HiveonS19ProPlusHydro(HiveonModern, S19ProPlusHydro): pass class HiveonS19kPro(HiveonModern, S19KPro): pass
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false
UpstreamData/pyasic
https://github.com/UpstreamData/pyasic/blob/820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3/pyasic/miners/antminer/hiveon/X19/__init__.py
pyasic/miners/antminer/hiveon/X19/__init__.py
# ------------------------------------------------------------------------------ # 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 .S19 import ( HiveonS19, HiveonS19a, HiveonS19aPro, HiveonS19Hydro, HiveonS19i, HiveonS19j, HiveonS19jNoPIC, HiveonS19jPro, HiveonS19kPro, HiveonS19L, HiveonS19NoPIC, HiveonS19Plus, HiveonS19Pro, HiveonS19ProHydro, HiveonS19ProPlus, HiveonS19ProPlusHydro, HiveonS19XP, ) from .T19 import HiveonT19
python
Apache-2.0
820d2aafdaa6bf2b046f94c017bf7ea58b7c50f3
2026-01-05T07:14:50.237218Z
false