Search arXiv papers and automatically find associated GitHub repositories with a single command.
- π Search arXiv - Query academic papers from arXiv.org
- π GitHub Integration - Automatically find associated GitHub repositories
- β Smart Comparison - Compare multiple repos by star count
- π Export Results - Save results as Stata dataset
- π Clickable Links - Direct links to papers, PDFs, DOIs, and repos
- π― Flexible Syntax - Simple keywords or detailed query options
net install findar, from("https://raw.githubusercontent.com/BlueDayDreeaming/findar/main/")Or download and place in your Stata ado directory.
- Stata 16.0 or later
- Windows or macOS (Linux not supported)
- Internet connection
findar deep learningfindar machine learning, maxresults(10)findar transformer attention, abstractfindar neural networks, detailfindar causal inference, saving(results) replacefindar keywords [, options]findar, query(string) [options]| Option | Description |
|---|---|
query(string) |
Search query (required for standard syntax) |
maxresults(#) |
Maximum number of results (default: 10) |
detail |
Display detailed information |
abstract |
Show paper abstracts |
nogithub |
Disable GitHub search |
save |
Keep results in memory (v1.1.5+) |
saving(filename) |
Save results to file |
replace |
Overwrite existing dataset |
See findar_example.do for comprehensive examples.
* Basic search
findar deep learning
* More results
findar machine learning, maxresults(20)
* With abstracts
findar transformer attention, abstract
* Detailed mode
findar reinforcement learning, detail
* Save to memory (new in v1.1.5)
findar computer vision, maxresults(10) save
* Save to file
findar computer vision, saving(cv_papers) replace
* Standard syntax
findar, query("natural language processing") maxresults(5)When using saving(), the dataset includes:
| Variable | Description |
|---|---|
arxiv_id |
arXiv paper ID |
title |
Paper title |
authors |
Author list |
published |
Publication date |
summary |
Abstract |
doi |
Digital Object Identifier |
gh_repo |
GitHub repository (owner/repo) |
gh_url |
GitHub URL |
gh_stars |
Star count |
gh_lang |
Programming language |
| Result | Description |
|---|---|
r(count) |
Number of papers found |
r(arxiv_found) |
Papers with GitHub repos |
r(not_found) |
Papers without repos |
- Query arXiv API - Searches arXiv for matching papers
- Extract GitHub URLs - Scans paper metadata for GitHub links
- Fetch Repo Info - Queries GitHub API for repository details
- Compare & Rank - When multiple repos found, compares by stars
- Display Results - Shows formatted output with clickable links
--------------------------------------------------------------------------------
arXiv Search + GitHub Integration
--------------------------------------------------------------------------------
Query: deep learning
Max results: 5
GitHub search: ENABLED (default)
--------------------------------------------------------------------------------
Searching arXiv...
Found 5 papers.
[1] Opening the black box of deep learning
Links: arXiv PDF DOI GitHub(β
1234)
[1] Neural Network Architectures
Authors: John Doe, Jane Smith
Published: 2024-01-15
Links: arXiv PDF GitHub(repo_name_β
5678_Python)
- Linux/Unix not supported (Windows and macOS only)
- GitHub API rate limits apply (60 requests/hour unauthenticated)
- Requires internet connection
- Corporate firewalls may block API access
help findarIf you use findar in your research, please cite:
Chucheng Wan, Yile Zhang, Xinyi Huang, Qin Qin, and Xinyi Yi (2025). findar: Search arXiv papers with GitHub integration.
Stata package. https://github.com/BlueDayDreeaming/findar
- π Documentation
- π Issue Tracker
- π¬ Discussions
Chucheng Wan
- Affiliation: Sun Yat-sen University, Guangzhou, China
- Email: chucheng.wan@outlook.com
Yile Zhang
- Affiliation: Sun Yat-sen University, Guangzhou, China
- Email: zhangyle5@mail2.sysu.edu.cn
Xinyi Huang
- Affiliation: Sun Yat-sen University, Guangzhou, China
- Email: huangxy577@mail2.sysu.edu.cn
Qin Qin
- Affiliation: Sun Yat-sen University, Guangzhou, China
- Email: qinq25@mail2.sysu.edu.cn
Xinyi Yi
- Affiliation: Sun Yat-sen University, Guangzhou, China
- Email: 3031727931@qq.com
- Added
saveoption to keep results in memory - Fixed macOS connectivity issues (HTTPS support)
- Added XML declaration skip for better parsing
- Improved data handling (auto-clear when not saving)
- Removed diagnostic tool (findar_test)
- HTTPS support for macOS compatibility
- XML parsing improvements
- Added system compatibility check (Windows/macOS only)
- Code optimization and cleanup
- Improved documentation
- Added comprehensive examples
- arXiv search functionality
- GitHub integration
- Multiple syntax support
- Dataset export capability