Before you begin, ensure you have:
| Document | Description | Time | Difficulty |
|---|---|---|---|
| Installation | Install PyEuropePMC and dependencies | 2 min | Beginner |
| Quick Start | Your first search and extraction | 5 min | Beginner |
| FAQ | Common questions and troubleshooting | 10 min | Beginner |
Start with the Installation Guide to get PyEuropePMC installed on your system.
pip install pyeuropepmc
Follow the Quick Start Guide to run your first search:
from pyeuropepmc import SearchClient
with SearchClient() as client:
results = client.search("CRISPR", pageSize=10)
print(f"Found {results['hitCount']} papers")
Once you’ve completed the quick start, explore specific features:
After completing this section, you’ll be able to:
Once you’re comfortable with the basics:
| Section | Why Visit? |
|---|---|
| Features | Learn what PyEuropePMC can do |
| API Reference | Complete method documentation |
| Examples | Working code samples |
| Advanced | Power user features |