CLI for Code of Paper — discover GitHub implementations of research papers
Project description
Code of Paper CLI
Discover GitHub implementations of research papers — from the terminal.
Search 181k+ arXiv papers and find their code on GitHub. Works for humans and AI agents alike.
Install
pip install codeofpaper
Or with pipx for isolated installs:
pipx install codeofpaper
Requires Python 3.10+. No API key needed — works anonymously at 60 requests/minute.
Quick Start
# Search for papers
codeofpaper search "vision transformers"
# Get paper details (arXiv IDs or full URLs both work)
codeofpaper paper 2010.11929
codeofpaper paper https://arxiv.org/abs/2010.11929
# Find code implementations
codeofpaper code 1706.03762
# Browse trending papers with code
codeofpaper trending --has-code
# JSON output for scripts and agents
codeofpaper -o json trending | jq '.trending[] | {title, stars: .max_stars}'
# Literature review in one command
codeofpaper research "reinforcement learning" --depth deep
Output Formats
Use -o / --output before the subcommand:
codeofpaper -o json paper 2010.11929
codeofpaper -o quiet search "attention" | head -5
codeofpaper -o csv trending --has-code > papers.csv
| Format | Flag | Use case |
|---|---|---|
| Table | -o table |
Human reading (default) |
| JSON | -o json |
Scripts, jq pipelines, full response data |
| Quiet | -o quiet |
IDs only, one per line — pipe into other commands |
| JSONL | -o jsonl |
Streaming, append to files, batch processing |
| BibTeX | -o bibtex |
Citation managers, LaTeX bibliographies |
| CSV | -o csv |
Spreadsheets, pandas, data analysis |
The shorthand -q is equivalent to -o quiet:
codeofpaper -q search "transformers" | head -3
You can set a default format via config so you don't need -o every time:
codeofpaper auth setup # then edit ~/.config/codeofpaper/config.json
Commands
Discovery
| Command | Description | Example |
|---|---|---|
search |
Full-text paper search | codeofpaper search "vision transformers" --has-code |
paper |
Paper details by arXiv ID or URL | codeofpaper paper 2010.11929 |
code |
GitHub repos implementing a paper | codeofpaper code 1706.03762 |
similar |
Semantically similar papers | codeofpaper similar 2010.11929 |
suggest |
Autocomplete / quick lookup | codeofpaper suggest "attention" |
random |
Random interesting paper | codeofpaper random --quality high |
Browsing
| Command | Description | Example |
|---|---|---|
trending |
Trending papers by category | codeofpaper trending --category cs.CV --sort hot |
categories |
List categories or get details | codeofpaper categories cs.AI |
conferences |
List all conference series | codeofpaper conferences |
conference |
Papers from a specific conference | codeofpaper conference neurips_2024 --has-code |
code-drops |
Recent conference papers with new code | codeofpaper code-drops --days 7 |
repo |
Reverse lookup: repo → paper | codeofpaper repo google-research/vision_transformer |
open |
Open paper or repo in browser | codeofpaper open 2010.11929 --code |
Bulk Operations
| Command | Description | Example |
|---|---|---|
research |
Structured research overview | codeofpaper research "RL" --depth deep |
batch |
Process multiple IDs from stdin/file | cat ids.txt | codeofpaper batch paper |
export |
Paginated bulk export | codeofpaper export trending -o csv > out.csv |
Configuration
| Command | Description | Example |
|---|---|---|
auth |
Manage API key (setup/status/clear) | codeofpaper auth status |
status |
Check API health and stats | codeofpaper status |
Command Details
search
codeofpaper search "reinforcement learning" --sort has_code --has-code
codeofpaper search "GAN" --limit 20 --offset 10
Options: --limit, --offset, --sort (relevant, recent, has_code), --has-code, --category.
research
Multi-step orchestrated overview of a research topic:
codeofpaper research "vision transformers" --depth deep
| Depth | Steps | API calls |
|---|---|---|
shallow |
Search only + landscape statistics | 1 |
medium |
Search + repos for top papers (default) | ~6 |
deep |
Search + repos + similar papers from #1 | ~8 |
batch
Process multiple queries or IDs from a file or stdin. Always outputs JSONL regardless of -o:
# From a file
codeofpaper batch paper ids.txt
# From stdin
echo -e "2010.11929\n1706.03762" | codeofpaper batch paper
# Pipe from another command
codeofpaper -q similar 2010.11929 | codeofpaper batch code
Supported commands: paper, search, code, similar, suggest.
Each line produces one JSON object:
{"input": "2010.11929", "status": "ok", "data": {...}}
{"input": "9999.99999", "status": "error", "error": "Not found"}
Options: --delay (seconds between calls, default 0.5).
export
Paginated bulk export from trending, conference, or search:
codeofpaper export trending --category cs.CV --has-code -o csv > cv.csv
codeofpaper export conference neurips_2024 --has-code -o bibtex > neurips.bib
codeofpaper export search "transformers" --max 500 -o jsonl > data.jsonl
Auto-paginates through results (100 per page, 0.5s delay). Options: --max (default 200), --has-code, --category, --days.
Agent Integration
The CLI is designed for AI agent consumption. Key features:
Stable Exit Codes
Agents can branch on exit codes without parsing error messages:
| Exit Code | Meaning | Agent Action |
|---|---|---|
| 0 | Success | Parse stdout |
| 1 | General error | Log and report |
| 2 | Connection error | Retry with backoff |
| 3 | Not found (404) | Skip or try different ID |
| 4 | Rate limited (429) | Wait and retry |
| 5 | Auth required (401/403) | Run codeofpaper auth setup |
Machine-Readable Output
# JSON for structured parsing
codeofpaper -o json paper 2010.11929 | jq '.title'
# Quiet mode for ID lists
codeofpaper -q search "attention" | head -5
# JSONL for streaming
codeofpaper -o jsonl trending --has-code | while read -r line; do
echo "$line" | jq -r '.arxiv_id'
done
HTTP Cache
Responses are cached on disk for 30 minutes (~/.cache/codeofpaper/http/), so repeated calls are instant and free.
Common Workflows
Core Discovery
# Find papers with code about a topic
codeofpaper search "reinforcement learning" --sort has_code --has-code
# Get the best repo for a specific paper
codeofpaper code 1706.03762
# Accepts arXiv URLs — no need to extract the ID
codeofpaper paper https://arxiv.org/abs/2010.11929
# Reverse lookup: what paper does this repo implement?
codeofpaper repo google-research/vision_transformer
# Open a paper in the browser, or jump straight to its code
codeofpaper open 2010.11929
codeofpaper open 2010.11929 --code
Browsing & Monitoring
# What's trending in computer vision?
codeofpaper trending --category cs.CV --sort hot
# Conference papers that just got new code
codeofpaper code-drops --days 7
# NeurIPS 2024 oral papers with code
codeofpaper conference neurips_2024 --track oral --has-code
# Daily monitoring: what's new in my field?
codeofpaper trending --category cs.CV --days 1 -o json >> ~/research/daily_cv.jsonl
Composable Pipelines
# Find implementations of a paper's related work
codeofpaper similar 2010.11929 -o quiet | codeofpaper batch code
# Batch process a reading list
cat reading_list.txt | codeofpaper batch paper > enriched.jsonl
# Cross-reference with GitHub CLI
codeofpaper code 1706.03762 -o quiet | head -1 | xargs gh repo view
# Export conference papers as BibTeX
codeofpaper export conference neurips_2024 --has-code -o bibtex > neurips2024_code.bib
# Bulk export a category for meta-analysis
codeofpaper export trending --category cs.CV --has-code --days 365 -o csv > cv_with_code.csv
Multi-Step Scripts
# Find a paper → get top repo → clone it
REPO=$(codeofpaper search "attention is all you need" -o quiet | head -1 | \
xargs codeofpaper code -o json | jq -r '.top_repos[0].full_name')
gh repo clone "$REPO"
# Discover a random paper and explore its neighborhood
ID=$(codeofpaper random --quality high -o quiet)
codeofpaper paper "$ID"
codeofpaper similar "$ID"
codeofpaper code "$ID"
# Quick paper lookup in a script
ARXIV_ID="2010.11929"
TITLE=$(codeofpaper -o json paper "$ARXIV_ID" | jq -r '.title')
echo "Paper: $TITLE"
Configuration
Config is stored as JSON via platformdirs:
| OS | Path |
|---|---|
| Linux | ~/.config/codeofpaper/config.json |
| macOS | ~/Library/Application Support/codeofpaper/config.json |
| Windows | %APPDATA%\codeofpaper\config.json |
Fields:
{
"api_url": "https://api.codeofpaper.com",
"api_key": null,
"default_format": "table"
}
No config file needed — everything works out of the box with sensible defaults.
Priority Chain
Options are resolved in this order (first wins):
- CLI flag (
--api-url,--api-key,-o) - Environment variable (
CODEOFPAPER_API_URL,CODEOFPAPER_API_KEY,CODEOFPAPER_OUTPUT) - Config file
- Built-in defaults
Alias: cop
Both codeofpaper and cop are installed as entry points:
cop search "transformers"
cop -o json trending | jq '.'
Note: If
copconflicts with another tool on your system, usecodeofpaperinstead.
Shell Completion
Install tab completion for your shell:
codeofpaper --install-completion
Supports bash, zsh, fish, and PowerShell. After installing, restart your shell or source the completion file.
Help
codeofpaper --help # List all commands
codeofpaper search --help # Help for a specific command
codeofpaper -v # Print version
Links
- Website: https://codeofpaper.com
- API docs: https://api.codeofpaper.com/docs
- Repository: https://github.com/codeofpaper/codeofpaper-cli
- Agent discovery: https://codeofpaper.com/llms.txt
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file codeofpaper-0.1.0.tar.gz.
File metadata
- Download URL: codeofpaper-0.1.0.tar.gz
- Upload date:
- Size: 42.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b304ea3d16cb2763ac00d4e99d3805a0569726090013bc49f5791e01e4fed9e1
|
|
| MD5 |
101d3431f93e50124f069922562fbd15
|
|
| BLAKE2b-256 |
87938d4e5aa6f265ff1a0f25c010950633d6946575ce9ccb47520d0dc5a80b59
|
File details
Details for the file codeofpaper-0.1.0-py3-none-any.whl.
File metadata
- Download URL: codeofpaper-0.1.0-py3-none-any.whl
- Upload date:
- Size: 37.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04ac77077b9588ae0454fc554405d3ae0e070074a2614969cbfadedebc5369ab
|
|
| MD5 |
97b8adfa59f9a4f064e3da9c8d55d24b
|
|
| BLAKE2b-256 |
9ceea5aa60ef103954b0a70267bac623be9845c4574a9ff7593d19828a3d397f
|