dart_web_scraper 0.0.10 copy "dart_web_scraper: ^0.0.10" to clipboard
dart_web_scraper: ^0.0.10 copied to clipboard

Easy-to-use, reusable web scraper. Extracts and cleans HTML/JSON, providing structured data results.

example/example.dart

import 'dart:convert';

import 'package:dart_web_scraper/dart_web_scraper.dart';
import 'configs.dart';

void main() async {
  /// Initialize WebScraper
  WebScraper webScraper = WebScraper();

  /// Scrape website based on configMap
  Map<String, Object> result = await webScraper.scrape(
    url: Uri.parse("https://quotes.toscrape.com"),
    configMap: configMap,
    configIndex: 0,
    debug: true,
  );

  print(jsonEncode(result));
}
6
likes
0
pub points
61%
popularity

Publisher

verified publishersukhcha.in

Easy-to-use, reusable web scraper. Extracts and cleans HTML/JSON, providing structured data results.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

collection, html, http, json5, json_path, path

More

Packages that depend on dart_web_scraper