paolofrancioso / telegrambot-amazon-bitly

Bot Telegram per Offerte
MIT License
13 stars 0 forks source link

Amazon Offers Telegram Bot

This project is a Telegram Bot connected to a Telegram Channel that checks Amazon offers and send them to your Channel. Original Project was from Samir Salman. This version adds a few options and has the Bitly functionalities embedded. Furthermore it increases performances limiting the number of calls to Amazon.

Deploy

Major Update: 20th February 2023

Now you can create a telegram group with this Bot as administrator and send him Amazon links. These will be translated in Offerings messages and they will be sent to the channel. For security reason it's necessary to set the SAFETY_CHAT_ID in consts.py. Please, add to your bot the followings commands (/setcommands):

Create a Group with your telegram and use /gid to get the CHAT ID. Add it as SAFETY_CHAT_ID parameter. Now you can use /gen where is an amazon link to a product.

Run the new functionality as: python bot_actions.py or python3 bot_actions.py or nohup python3 bot_actions.py &

or execute the new script to kill/startup both the processes: sh run.sh

Requirements

SCRIPT INSTALLER

Now you can run the script.sh file from the terminal to install all dependencies, included paapi5 package. Open a terminal in the working directory, then type bash script.sh and launch the command.

MANUAL INSTALLER

In order to use this bot you must complete the following steps:

Project Structure

The project is organized like follow:

How it works

The bot is running in a while loop, you can define your favorite parameters for:

The bot is active if the time is between MIN_HOUR and MAX_HOUR (you can deactivate it during the night for example), you can define these parameters in the code.

The bot has a break for defined PAUSE_MINUTE after sending a message.

You can also edit message body in create_messages.py.

The bot performs all http requests to Amazon API at start, saves a list of all results in RAM and as long as there are items in results list it:

  1. SEND OFFER MESSAGE
  2. PAUSE FOR PAUSE_MINUTES
  3. SEND ANOTHER MESSAGE

during the activity time. When all results have been sent, it restarts his loop.

NOW YOU CAN SEARCH OVER MULTIPLE CATEGORIES : in consts.py you need to specify your categories and a list of keywords for each category. The corresponding variable is categories, it accept a dictionary like:

{
  "1_CATEGORY_NAME":[LIST OF KEYWORD],
  "2_CATEGORY_NAME":[LIST OF KEYWORD]
}

Important! Remember that currently Amazon supports only English Categories while you can use keywords in your language. Check Amazon API for info.

Usage

After cloning the repository, define all parameters in the code, install all packages and then start bot with command: python bot.py or python3 bot.py or nohup python3 bot.py &

Support

If you need support for the installation and usage of the library you can write to:

Authors