update the readme

This commit is contained in:
Alessandro Maggio
2021-01-19 22:22:17 +01:00
parent 2d4cae1e77
commit f22502a9b6
2 changed files with 12 additions and 3 deletions

View File

@@ -16,10 +16,11 @@ Read more here: https://help.twitch.tv/s/article/channel-points-guide?language=e
- Improve the logging
- Final report with all the datas
- Rewrite the entire code using classe instead of module with global variables
- Automatic download the followers list and use as input
- Place the bet / make prediction and won or lose (good luck) your channel points!
**CURRENTLY IN BETA / VERY UNSTABLE**
For the bet system the script use Selenium (Chrome implemented but not tested as well). Could be usefull how to MakePrediction usign a [POST] request. I've also write a [poc](/TwitchChannelPointsMiner/classes/Twitch.py#L160) but I don't know how to calculate/create the transactionID. Any helps are welcome
For the bet system the script use Selenium. Could be usefull how to MakePrediction usign a [POST] request. I've also write a [poc](/TwitchChannelPointsMiner/classes/Twitch.py#L160) but I don't know how to calculate/create the transactionID. Any helps are welcome
## How to use:
1. Clone this repository `git clone https://github.com/Tkd-Alex/Twitch-Channel-Points-Miner-v2`
@@ -56,13 +57,18 @@ twitch_miner = TwitchChannelPointsMiner(
)
)
twitch_miner.mine(["streamer1", "streamer2"]) # Array of streamers
twitch_miner.mine(
["streamer1", "streamer2"], # Array of streamers
followers=False # Automatic download the list of your followers
)
```
You can also use all the default values except for your username obv. Short version:
```python
from TwitchChannelPointsMiner import TwitchChannelPointsMiner
twitch_miner = TwitchChannelPointsMiner("your-twitch-username")
twitch_miner.mine(["streamer1", "streamer2"]) # Array of streamers
twitch_miner.mine(followers=True) # Automatic use the followers list
twitch_miner.mine(["streamer1", "streamer2"], followers=True) # Mixed
```
4. Start mining! `python run.py`

View File

@@ -28,4 +28,7 @@ twitch_miner = TwitchChannelPointsMiner(
)
)
twitch_miner.mine(["streamer1", "streamer2"]) # Array of streamers
twitch_miner.mine(
["streamer1", "streamer2"], # Array of streamers
followers=False # Automatic download the list of your followers
)