pyEuropePMC

Getting Started with PyEuropePMC

Prerequisites

Before you begin, ensure you have:

Quick Navigation

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

Step 1: Installation (2 minutes)

Start with the Installation Guide to get PyEuropePMC installed on your system.

pip install pyeuropepmc

Step 2: Quick Start (5 minutes)

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")

Step 3: Explore Features

Once you’ve completed the quick start, explore specific features:

What You’ll Learn

After completing this section, you’ll be able to:

Next Steps

Once you’re comfortable with the basics:

  1. Dive deeper into Features to see what’s possible
  2. Study the API Reference for complete documentation
  3. Explore Examples for real-world use cases
  4. Learn Advanced techniques for power users

Need Help?

Section Why Visit?
Features Learn what PyEuropePMC can do
API Reference Complete method documentation
Examples Working code samples
Advanced Power user features