This project queries the arXiv API for research articles and automatically sends a list of 1-10 relevant articles (from the past month) to a specified recipient email.
- Fetches research articles based on specific search queries.
- Sends results via email using an automated cloud-based service.
- Runs on PythonAnywhere (pythonanywhere.com).
"Every month, I want to query arXiv and return 1-10 articles related to cognitive architectures and **cognitive modeling/computational cognitive modeling."
url_architecture = (
'http://export.arxiv.org/api/query?'
'search_query=all:cognitive+AND+all:architecture&'
'start=0&max_results=10&sortBy=lastUpdatedDate&sortOrder=descending'
)This includes results for "cognitive modeling" OR "computational cognitive modeling".
url_modeling = (
'http://export.arxiv.org/api/query?'
'search_query=all:%22cognitive%20modeling%22+OR+all:%22computational%20cognitive%20modeling%22&'
'start=0&max_results=10&sortBy=lastUpdatedDate&sortOrder=descending'
)- For more details on structuring search queries, refer to the arXiv API Documentation.
- arXiv: arXiv Home Webpage

