Name | blaze-double-bot JSON |
Version |
1.3.3
JSON |
| download |
home_page | None |
Summary | This Python library automates the betting process on the Blaze Double |
upload_time | 2024-06-02 20:34:24 |
maintainer | None |
docs_url | None |
author | ror74559 |
requires_python | None |
license | MIT License |
keywords |
blaze
double
bot
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# Blaze Double Bot
---
## Description
This Python script automates the betting process on the Blaze Double website using Selenium and undetected-chromedriver. It monitors the game state, places bets according to a predefined strategy, and handles winnings and losses. Google Chrome browser required.
---
## Installation
```bash
pip install blaze-double-bot
```
## How to use the JSON file in the Blaze Double Bot
To use the Blaze Double Bot, you need to configure your credentials and other settings through a JSON file. Follow the instructions below to set up and use the bot:
1. **Create a `config.json` file** with the following content:
```json
{
"username": "your blaze username",
"password": "your blaze password",
"bet_amount":0.1,
"stop_loss_ratio":0.9,
"stop_win_ratio":1.1,
"wait_after_bet":150,
"martingale":2,
"headless": true,
"language":"en",
"strategies": {
"red": [
["B", "R", "B", "R", "B"],
["B", "B", "B", "B"],
["R", "B", "B", "B"]
],
"black": [
["R", "B", "R", "B", "R","B","R"],
["R", "R", "R", "R", "R"]
]
}
}
```
- **username**: Your username or email registered on Blaze Double.
- **password**: Your password to access Blaze Double.
- **bet_amount**: The amount of the bet to be placed in each round.
- **stop_loss_ratio**: The multiplication factor of the initial balance indicating the loss limit. The bot will stop betting if the balance drops below this limit.
- **stop_win_ratio**: The multiplication factor of the initial balance indicating the win limit. The bot will stop betting if the balance reaches or exceeds this limit.
- **wait_after_bet**: Waiting time, in seconds, to restart analyzes after the bet result.
- **martingale**: MartinGale's strategy doubles the bet after a loss. The bot will do this procedure if the value is different from 0. If the value is 1 it will do the procedure 1 time, if 2 it will do it 2 times and so on. Be very careful with this strategy.
- **headless**: receives true or false. If true the browser will be invisible
- **language**: "en" (English) and "pt" (Portuguese).
- **strategies**: Pre-defined betting strategies with sequences of colors (black = "B", red = "R"). You can add as many strategies as you want here. Lists must have a maximum of 20 items. Put the lists with the largest number of items first.
2. **Create a `blazeBot.py` file** with the following content:
```python
from blaze_double_bot import BlazeDoubleBot
import json
with open('config.json', 'r') as f:
config = json.load(f)
bot = BlazeDoubleBot(config)
bot.run()
```
---
## Support This Project
If you find this project helpful, consider supporting it by making a donation. Your contribution will help me maintain and improve this bot.
[Donate via PayPal](https://www.paypal.com/donate/?hosted_button_id=928TRAX74TYSA)
---
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
---
© 2024 Rafael Ribeiro.
Raw data
{
"_id": null,
"home_page": null,
"name": "blaze-double-bot",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "blaze double bot",
"author": "ror74559",
"author_email": "ror74559@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/86/52/3e9ecd4c5ab9fb9697c065c54ef75eeed2d9e4bdca1ed647b5078ca85c93/blaze_double_bot-1.3.3.tar.gz",
"platform": null,
"description": "# Blaze Double Bot\r\n\r\n---\r\n\r\n## Description\r\n\r\nThis Python script automates the betting process on the Blaze Double website using Selenium and undetected-chromedriver. It monitors the game state, places bets according to a predefined strategy, and handles winnings and losses. Google Chrome browser required.\r\n\r\n---\r\n\r\n## Installation\r\n\r\n```bash\r\n\r\npip install blaze-double-bot\r\n\r\n```\r\n\r\n## How to use the JSON file in the Blaze Double Bot\r\n\r\nTo use the Blaze Double Bot, you need to configure your credentials and other settings through a JSON file. Follow the instructions below to set up and use the bot:\r\n\r\n1. **Create a `config.json` file** with the following content:\r\n\r\n```json\r\n{\r\n \"username\": \"your blaze username\",\r\n \"password\": \"your blaze password\",\r\n \"bet_amount\":0.1,\r\n \"stop_loss_ratio\":0.9,\r\n \"stop_win_ratio\":1.1,\r\n \"wait_after_bet\":150,\r\n \"martingale\":2,\r\n \"headless\": true,\r\n \"language\":\"en\",\r\n \"strategies\": {\r\n \"red\": [\r\n [\"B\", \"R\", \"B\", \"R\", \"B\"],\r\n [\"B\", \"B\", \"B\", \"B\"],\r\n [\"R\", \"B\", \"B\", \"B\"]\r\n ],\r\n \"black\": [\r\n [\"R\", \"B\", \"R\", \"B\", \"R\",\"B\",\"R\"],\r\n [\"R\", \"R\", \"R\", \"R\", \"R\"]\r\n ]\r\n }\r\n}\r\n\r\n```\r\n\r\n- **username**: Your username or email registered on Blaze Double.\r\n- **password**: Your password to access Blaze Double.\r\n- **bet_amount**: The amount of the bet to be placed in each round.\r\n- **stop_loss_ratio**: The multiplication factor of the initial balance indicating the loss limit. The bot will stop betting if the balance drops below this limit.\r\n- **stop_win_ratio**: The multiplication factor of the initial balance indicating the win limit. The bot will stop betting if the balance reaches or exceeds this limit.\r\n- **wait_after_bet**: Waiting time, in seconds, to restart analyzes after the bet result.\r\n- **martingale**: MartinGale's strategy doubles the bet after a loss. The bot will do this procedure if the value is different from 0. If the value is 1 it will do the procedure 1 time, if 2 it will do it 2 times and so on. Be very careful with this strategy.\r\n- **headless**: receives true or false. If true the browser will be invisible\r\n- **language**: \"en\" (English) and \"pt\" (Portuguese).\r\n- **strategies**: Pre-defined betting strategies with sequences of colors (black = \"B\", red = \"R\"). You can add as many strategies as you want here. Lists must have a maximum of 20 items. Put the lists with the largest number of items first.\r\n\r\n2. **Create a `blazeBot.py` file** with the following content:\r\n\r\n```python\r\n\r\nfrom blaze_double_bot import BlazeDoubleBot\r\n\r\nimport json\r\n\r\nwith open('config.json', 'r') as f:\r\n config = json.load(f)\r\n\r\nbot = BlazeDoubleBot(config)\r\n\r\nbot.run()\r\n\r\n```\r\n---\r\n\r\n## Support This Project\r\n\r\nIf you find this project helpful, consider supporting it by making a donation. Your contribution will help me maintain and improve this bot.\r\n\r\n[Donate via PayPal](https://www.paypal.com/donate/?hosted_button_id=928TRAX74TYSA)\r\n\r\n---\r\n\r\n## License\r\n\r\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\r\n\r\n---\r\n\r\n\u00c2\u00a9 2024 Rafael Ribeiro.\r\n",
"bugtrack_url": null,
"license": "MIT License",
"summary": "This Python library automates the betting process on the Blaze Double",
"version": "1.3.3",
"project_urls": null,
"split_keywords": [
"blaze",
"double",
"bot"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "86523e9ecd4c5ab9fb9697c065c54ef75eeed2d9e4bdca1ed647b5078ca85c93",
"md5": "071e28374c3ec11bc9425f3997795c42",
"sha256": "74c85a5832e1b9b40d8a3e74afc65948fac3f42af7dd42382f50fe1d32be57ea"
},
"downloads": -1,
"filename": "blaze_double_bot-1.3.3.tar.gz",
"has_sig": false,
"md5_digest": "071e28374c3ec11bc9425f3997795c42",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 6522,
"upload_time": "2024-06-02T20:34:24",
"upload_time_iso_8601": "2024-06-02T20:34:24.141098Z",
"url": "https://files.pythonhosted.org/packages/86/52/3e9ecd4c5ab9fb9697c065c54ef75eeed2d9e4bdca1ed647b5078ca85c93/blaze_double_bot-1.3.3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-06-02 20:34:24",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "blaze-double-bot"
}