Skip to content

Latest commit

 

History

History
43 lines (27 loc) · 892 Bytes

README.md

File metadata and controls

43 lines (27 loc) · 892 Bytes

GetFFValuesOnTwitterProfile

Get Following and Followers values on Twitter profiles, using web scraping.

Use Case

Import

Add dependencies on your pubspec.yaml

dependencies:
  twitter_ff_Values:
    git: https://github.com/DevelopersPackages-org/GetFFValuesOnTwitterProfile.git

And import in dart file

import "package:twitter_ff_values/getValues.dart";

For A Account

Map<String,int> getFFValues(String screenName) async

returns {"Following": valFollowing, "Followers": valFollowers} , such as {"Following": 10, "Followers": 52}.

For Multiple Accounts

List<Map<String, int>> getFFValuesForIn(List<String> screenNames) async

returns List of result from getFFValues() for each screenNames.

Thanks

Forked from DartでWebスクレイピング

Thanks for @tris