flutter_scrapper 1.0.0 copy "flutter_scrapper: ^1.0.0" to clipboard
flutter_scrapper: ^1.0.0 copied to clipboard

A lightweight HTML scraper for Flutter mobile apps. Easily fetch and parse text content from public websites.

Use this package as a library

Depend on it

Run this command:

With Flutter:

 $ flutter pub add flutter_scrapper

This will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get):

dependencies:
  flutter_scrapper: ^1.0.0

Alternatively, your editor might support flutter pub get. Check the docs for your editor to learn more.

Import it

Now in your Dart code, you can use:

import 'package:flutter_scrapper/config/scraper_config.dart';
import 'package:flutter_scrapper/exceptions/scraper_exceptions.dart';
import 'package:flutter_scrapper/flutter_mobile_scraper.dart';
import 'package:flutter_scrapper/main.dart';
import 'package:flutter_scrapper/mobile_scraper.dart';
import 'package:flutter_scrapper/models/scrape_request.dart';
import 'package:flutter_scrapper/models/scrape_result.dart';
import 'package:flutter_scrapper/utils/cache_manager.dart';
import 'package:flutter_scrapper/utils/content_formatter.dart';
import 'package:flutter_scrapper/utils/smart_extractor.dart';
import 'package:flutter_scrapper/viewmodels/scraper_viewmodel.dart';
import 'package:flutter_scrapper/views/screens/scraper_screen.dart';
import 'package:flutter_scrapper/views/widgets/results_display.dart';
import 'package:flutter_scrapper/views/widgets/scraper_form.dart';
1
likes
160
points
45
downloads

Publisher

verified publisherraghavg1999.com

Weekly Downloads

A lightweight HTML scraper for Flutter mobile apps. Easily fetch and parse text content from public websites.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

cupertino_icons, flutter, http, provider

More

Packages that depend on flutter_scrapper