CarouSpot is a Telegram bot that notifies you of new listings on Carousell SG, a community marketplace and classifieds platform. Subscribe to keywords to be the first to know about new listings and get notified when they are posted!
Try it out https://t.me/carouspot_bot
- Subscribe to keywords and get notified when new listings are posted.
- Spotlight and Bumped listings (old listings) are automatically excluded.
docker run -itd --env MONGO_URL="your_mongo_url" --env BOT_TOKEN="your_bot_token" ghcr.io/leejunweisg/carouspot:main
Two environment variables must be passed into the Docker container:
MONGO_URL
: The connection URL to your MongoDB instance.BOT_TOKEN
: The token of your telegram bot, this can be retrieved from BotFather.
- Clone the repository
git clone https://github.com/leejunweisg/carouspot && cd carouspot
- Create Python virtual environment and install packages
python3 -m venv venv source ./venv/scripts/activate pip install -r ./requirements.txt
- Update the
.env
file to fill inMONGO_URL
andBOT_TOKEN
. - Run the bot.
python3 bot.py
- Refactor to scrape all items using one instance of the Selenium webdriver.
- Currently, a new webdriver is instantiated to scrape each search term.
- Improve user experience on the bot (e.g. inline keyboard instead of typing)
- Add support for filters (e.g. price range, condition, etc) in subscriptions.
- Support for other countries (e.g. Carousell MY, Carousell PH, etc).