spidr 1.0.1
spidr: ^1.0.1 copied to clipboard
A next-generation adaptive web scraping, browser automation, crawling, and data acquisition framework for Dart and Flutter.
spidr #
The umbrella package of the SPIDR framework, re-exporting all core modules and providing a simplified facade entry point.
Core Facade API #
The Spidr class serves as the root facade:
import 'package:spidr/spidr.dart';
void main() async {
// Simple GET request
final page = await Spidr.get("https://example.com");
print(page.css("h1")?.text);
}