SkillAgentSearch skills...

Quickscrape

QuickScrape is a lightweight, high-level web scraping library for Python that makes extracting structured data from websites simple and intuitive. Unlike more complex scraping frameworks, QuickScrape focuses on providing straightforward APIs for common extraction tasks.

Install / Use

/learn @akkasayaz/Quickscrape
About this skill

Quality Score

0/100

Supported Platforms

GitHub Copilot

README

QuickScrape

A simple Python library for extracting common data types from web pages.

Installation

pip install quickscrape

Usage

import quickscrape

# Extract emails from a webpage
emails = quickscrape.extract("email", "https://example.com/contact")

# Extract tables
tables = quickscrape.extract("table", "https://example.com/data")
# Get tables as pandas DataFrames
tables_df = quickscrape.extract("table", "https://example.com/data", output_format="dataframe")

# Extract multiple data types at once
results = quickscrape.extract(["email", "table"], "https://example.com")email", "https://example.com/contact")

# Extract tables
tables = quickscrape.extract("table", "https://example.com/data")

License

MIT

Development Workflow

  1. Local Development: Install your package in development mode:

    pip install -e .
    
  2. Testing : Use pytest for writing and running tests.

    pip install pytest
    pytest
    

Related Skills

View on GitHub
GitHub Stars14
CategoryDevelopment
Updated5d ago
Forks3

Languages

Python

Security Score

95/100

Audited on Mar 31, 2026

No findings