You can get daily arxiv notification with pre-defined keywords as here.
Arxiv.org announces new submissions every day on fixed time as informed here.
This repository makes it easy to filter papers and follow-up new papers which are in your interests by creating an issue in a github repository.
- Python3.x
Install requirements with below command.
$ pip install --upgrade pip
$ pip install -r requirements.txt
Create a repository to get notification in your github.
Revise config.py
as your perferences.
# Authentication for user filing issue (must have read/write access to repository to add issue to)
USERNAME = 'changeme'
TOKEN = 'changeme'
# The repository to add this issue to
REPO_OWNER = 'changeme'
REPO_NAME = 'changeme'
# Set new submission url of subject
NEW_SUB_URL = 'https://arxiv.org/list/cs/new'
# Keywords to search
KEYWORD_LIST = ["changeme"]
You need to set a cronjob to run the code everyday to get the daily notification.
Refer the announcement schedule in arxiv.org and set the cronjob as below.
$ cronjob -e
$ 0 2 * * mon-fri python PATH-TO-CODE/get-daily-arxiv-noti/main.py