File size: 1,401 Bytes
79dc07f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
# Paper Search Tool
A Streamlit-based tool for efficiently searching and analyzing conference papers locally.
## Why This Tool?
- Fast local searching and filtering across multiple fields
- Support for directory and multi-conference search
- Status-based filtering to exclude withdrawn/rejected papers
- User-friendly web interface and command-line support
- Results download in JSON format with source tracking
This tool reduces server load, enables offline analysis, and allows for custom processing and cross-conference comparisons.
## Setup
1. Clone the repo and navigate to the `tools` directory
```bash
git clone https://github.com/hhh2210/paperlists.git
cd paperlists/tools
```
2. Install dependencies: `pip install -r requirements.txt`
## Usage
### Web Interface
1. Run `streamlit run app.py`
2. Access the web UI at `http://localhost:8501`
3. Enter search criteria, select search mode, and analyze results
### Command Line
```bash
cd tools
python extract.py [keyword] [-i INPUT_PATH] [-o OUTPUT_FILE] [-f FIELDS...]
```
- `keyword`: Search keyword (required)
- `-i, --input_path`: Input JSON file or directory (default: iclr2025.json)
- `-o, --output_file`: Output JSON file (optional)
- `-f, --fields`: Fields to search (default: keywords title primary_area topic)
Example:
```bash
cd tools
python extract.py retrieval -i iclr/iclr2025.json -o results.json -f title keywords
``` |