| # 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 |
|
|