File size: 1,446 Bytes
1131033 | 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 47 48 49 | # First, let's check what directory we're in
pwd
# Create the README.md file in the current directory
cat > README.md << 'EOF'
---
title: PubMed Search Engine
emoji: 🔬
colorFrom: blue
colorTo: purple
sdk: gradio
sdk_version: "4.44.0"
app_file: app.py
pinned: false
license: mit
---
# 🔬 PubMed Search Engine
A powerful Gradio application that searches PubMed and filters results to show only articles from high-impact journals. Perfect for students and researchers who want to focus on the most credible and influential research.
## Features
- **Smart Journal Filtering**: Automatically filters results to show only articles from high-impact journals
- **Advanced Search Options**: Filter by article type, publication year, and more
- **Impact Factor Display**: Shows Journal Impact Factor (JIF) and Quartile information
- **Beautiful UI**: Modern, responsive interface with dark theme
- **Real-time Search**: Fast PubMed API integration with intelligent caching
## How to Use
1. Enter your search query in the text box
2. Select article type and other filters
3. Choose sorting options (by JIF or Quartile)
4. Click "Search PubMed" to get results
5. View detailed article information with impact metrics
## Technical Details
- Built with Gradio and Python
- Integrates with NCBI PubMed API
- Uses Journal Impact Factor 2024 data
- Supports advanced filtering and sorting
## License
MIT License - feel free to use and modify!
EOF
|