I’m looking for a Telegram bot that delivers daily updates from arXiv.
Browsing arXiv each day to catch the latest articles has become quite cumbersome, so an automated solution would be very helpful. Despite searching online, I haven’t found any bot that meets this need. Has anyone come across a tool or service that might serve this purpose? Any suggestions or guidance would be greatly appreciated.
I developed a custom solution to get daily arXiv updates when I couldn’t find an existing bot that met my needs. I wrote a script that uses the arXiv API to retrieve the latest submissions and then posts them to a Telegram channel. It took some time to set up, but I found it immensely useful, especially since I could filter by specific subjects. The experience made it clear that sometimes building your own tool, with the right APIs and a bit of creativity, is the best solution.
I recently implemented a solution along similar lines by integrating RSS feed parsing with a scheduled task system on my server. Utilizing cron jobs along with a Python script to monitor the arXiv RSS feeds allowed for custom filtering and formatting before sending updates via the Telegram Bot API. This method took some initial tweaking to perfect the message format and timing, but it has provided a steady stream of targeted information without overwhelming the channel. It is a straightforward approach that provides both customization and reliability.
hey, i’ve rolled out a nodejs bot using the arxiv api. i hit some snags initially, but it ended up working smootly for daily updates. maybe worth a try if you’re looking for an alternative to python based setups.