Skip to content

Commit

Permalink
Merge branch 'master' into switchable
Browse files Browse the repository at this point in the history
  • Loading branch information
rdavydov authored Oct 24, 2022
2 parents 75af772 + 230be0d commit 414694c
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -644,4 +644,4 @@ Now when we did everything we can run miner: `python run.py`
Read more at [#92](https://github.com/Tkd-Alex/Twitch-Channel-Points-Miner-v2/issues/92) [#76](https://github.com/Tkd-Alex/Twitch-Channel-Points-Miner-v2/issues/76)

## Disclaimer
This project comes with no guarantee or warranty. You are responsible for whatever happens from using this project. It is possible to get soft or hard banned by using this project if you are not careful. This is a personal project and is in no way affiliated with Twitch.
This project comes with no guarantee or warranty. You are responsible for whatever happens from using this project. It is possible to get soft or hard banned by using this project if you are not careful. This is a personal project and is in no way affiliated with Twitch.
2 changes: 1 addition & 1 deletion TwitchChannelPointsMiner/TwitchChannelPointsMiner.py
Original file line number Diff line number Diff line change
Expand Up @@ -426,4 +426,4 @@ def __print_report(self):
logger.info(
f"{self.streamers[streamer_index].print_history()}",
extra={"emoji": ":moneybag:"},
)
)
2 changes: 1 addition & 1 deletion TwitchChannelPointsMiner/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
__version__ = "2.1.1"
__version__ = "1.3.3"
from .TwitchChannelPointsMiner import TwitchChannelPointsMiner

__all__ = [
Expand Down
2 changes: 1 addition & 1 deletion TwitchChannelPointsMiner/classes/Settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ def __str__(self):

@classmethod
def get(cls, key):
return getattr(cls, str(key)) if str(key) in dir(cls) else None
return getattr(cls, str(key)) if str(key) in dir(cls) else None
2 changes: 1 addition & 1 deletion TwitchChannelPointsMiner/classes/WebSocketsPool.py
Original file line number Diff line number Diff line change
Expand Up @@ -385,4 +385,4 @@ def on_message(ws, message):
WebSocketsPool.handle_reconnection(ws)

elif response["type"] == "PONG":
ws.last_pong = time.time()
ws.last_pong = time.time()
2 changes: 1 addition & 1 deletion TwitchChannelPointsMiner/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

BRANCH = "master"
GITHUB_url = (
"https://raw.githubusercontent.com/Tkd-Alex/Twitch-Channel-Points-Miner-v2/"
"https://raw.githubusercontent.com/rdavydov/Twitch-Channel-Points-Miner-v2/"
+ BRANCH
)

Expand Down
2 changes: 1 addition & 1 deletion example.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,4 +95,4 @@
], # Array of streamers (order = priority)
followers=False, # Automatic download the list of your followers
followers_order=FollowersOrder.ASC # Sort the followers list by follow date. ASC or DESC
)
)
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ def read(fname):
setuptools.setup(
name="Twitch-Channel-Points-Miner-v2",
version=metadata["version"],
author="Tkd-Alex (Alessandro Maggio)",
author="Tkd-Alex (Alessandro Maggio) and rdavydov (Roman Davydov)",
author_email="alex.tkd.alex@gmail.com",
description="A simple script that will watch a stream for you and earn the channel points.",
license="GPLv3+",
keywords="python bot streaming script miner twtich channel-points",
url="https://github.com/Tkd-Alex/Twitch-Channel-Points-Miner-v2",
url="https://github.com/rdavydov/Twitch-Channel-Points-Miner-v2",
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=[
Expand Down

0 comments on commit 414694c

Please sign in to comment.