Skip to the content.

Getting Started with PyEuropePMC

**πŸš€ Welcome to PyEuropePMC!** Get up and running in minutes. [πŸ“¦ Installation](/pyEuropePMC/getting-started/installation.html) β€’ [⚑ Quick Start](/pyEuropePMC/getting-started/quickstart.html) β€’ [❓ FAQ](/pyEuropePMC/getting-started/faq.html) β€’ [⬅️ Back to Docs](/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](/pyEuropePMC/getting-started/installation.html) to get PyEuropePMC installed on your system. ```bash pip install pyeuropepmc ``` ### Step 2: Quick Start (5 minutes) Follow the [Quick Start Guide](/pyEuropePMC/getting-started/quickstart.html) to run your first search: ```python 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: - **[πŸ” Search](../features/search/)** - Advanced search capabilities - **[πŸ“„ Full-Text](../features/fulltext/)** - Download PDFs and XML - **[πŸ”¬ Parsing](../features/parsing/)** - Extract structured data from XML

🎯 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

**Ready to begin?** [πŸ“¦ Start with Installation β†’](/pyEuropePMC/getting-started/installation.html) **[⬆ Back to Top](#getting-started-with-pyeuropepmc)** β€’ [⬅️ Back to Main Docs](/pyEuropePMC/)