| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Discord
Phoenix Bot is inspired by Natewong1313's Bird Bot project yet due to lack of activity by their team. We have decided to revive this project to achieve a common goal. Due to the recent insurgence of botters/scalpers taking advantage, our goal is to enable everyone the ability to combat these botters/scalpers by implementing their own botting system. Currently, this auto-checkout bot will support Walmart, Best Buy, Gamestop, & Target. There are more plans for future implementations later on.
| Website | Auto Checkout | Open Cart Link | Work In Progress |
|---|---|---|---|
| amazon.com | ✔ | ||
| bestbuy.com | ✔ | ✔ | |
| gamestop.com | ✔ | ✔ | |
| target.com | ✔ | ✔ | |
| walmart.com | ✔ |
Gamestop - Captcha work-arounds in progress, will attempt to add to cart currently and then open browser for you to click captcha's.
Target Signin error work around - Wait for target browser to launch, once it's refreshing on product page, open new tab in browser, navigate to target.com and signin manually, then close that tab.
Make sure your Chrome browser is updated to the latest
Open Powershell as Administrator within your desired directory for the application to live.
Run the following commands:
git clone https://github.com/Strip3s/PhoenixBot/
cd PhoenixBot
python -m venv ./env
./env/Scripts/activate
python -m pip install --upgrade pip
pip install -r requirements.txt
If you encounter any errors during installation, please consider the following:
pip install pip-tools==5.5.0
pip-compile --generate-hashes --no-index --output-file=requirements.txt requirements.in
pip install -r requirements.txt
pip install pycryptodomex
Run the following command:
python app.py
To Run Target.com bot, download GeckoDriver and select the folder of it's location in the settings.
It is highly recommended you install brew and update python3 to latest version
Make sure your Chrome browser is updated to the latest
Run the following commands:
git clone https://github.com/Strip3s/PhoenixBot/
cd PhoenixBot
python3 -m venv ./env
source env/bin/activate
python3 -m pip3 install --upgrade pip
pip3 install -r requirements.txt
If you encounter any errors during installation, please consider the following:
pip3 install pip-tools==5.4.0
pip-compile --generate-hashes --no-index --output-file=requirements.txt requirements.in
pip3 install -r requirements.txt
pip3 install pycryptodomex
Run the following command:
python3 app.py
To Run Target.com bot, download GeckoDriver and select the folder of it's location in the settings.
To resume working on the bot for testing after closing powershell, navigate again to the folder and run the following commands:
./env/Scripts/activate python app.py
This project uses pip-compile with the --generate-hashes flag to validate dependencies via checksums. This helps prevent updates to existing package versions on PyPI from adding new code to our project. When changing requirements, make updates in the requirements.in file, then compile using the command below to update requirements.txt before committing.
pip-compile --generate-hashes --no-index --output-file=requirements.txt requirements.in
If you receive an error when running this command related to pinning a version of pip, make sure your system or virtualenv pip version is up to date by running the following command:
python -m pip install --upgrade pip
| Back | FazBrowse Home | New Git URL |