This bot will help you find the most beneficial purchase options.
- Send a link to the product you are interested in.
- Specify your SberSpasibo level in the settings.
- Provide any available promo codes.
- Set up notification filters according to your preferences.
The bot will send a notification if an offer matching your parameters becomes available.
Make sure you have Docker installed on your computer. Follow the instructions.
#!/bin/bash
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg -i google-chrome-stable_current_amd64.deb
sudo apt --fix-broken install -y#!/bin/bash
git clone https://github.com/schegolevalex/mm-parser.git
cd ./mm-parser/
chmod +x ./mvnwCreate a file named proxy_list and place it in the mm-parser/src/main/resources folder.
The file should contain a list of proxies in the following format:
{username1}:{password1}@{host1}:{port1}
{username2}:{password2}@{host2}:{port2}
...
Use @BotFather on Telegram to create your bot. Save the bot name and bot token parameters.
#!/bin/bash
export BOT_USERNAME={YOUR_BOT_NAME}
export BOT_TOKEN={YOUR_BOT_TOKEN}
export CREATOR_ID={YOUR_BOT_NAME}You can see your CREATOR_ID using @userinfobot.
#!/bin/bash
./mvnw spring-boot:run