twitter-trends-scraper

1.0.0 • Public • Published

Twitter-Trends-Scraper is a nodejs package to scrape trending keywords on twitter using browser automation.. It currently runs only on windows.

Installation

npm install twitter-trends-scraper

Example

In this example we first import package, then we login with cookies and scrape trending keywords.

var twitter=require("twitter-trends-scraper");

function get_data(response){
	var data=response["body"]
	console.log("data",data)
}
function get_trending(){
	twitter.trending(get_data)
}
twitter.open("https://twitter.com/explore/tabs/trending",get_trending)

DataKund

datakund is needed for browser automation. As soon as this package is imported in code, automated browser will open up.

Import

var twitter=require("twitter-trends-scraper");

Login with credentials

twitter.login(username,password)

Login with cookies

twitter.login_cookie(list_of_cookies)

Get Trends

twitter.trending()

Cookies

To login with cookies Edit this Cookie Extension can be added to browser

Contact Us

Package Sidebar

Install

npm i twitter-trends-scraper

Weekly Downloads

2

Version

1.0.0

License

ISC

Unpacked Size

1.89 kB

Total Files

3

Last publish

Collaborators

  • datakund