Rank::Mustat - Website traffic estimation, also domain cost and rank

Overview of the scraper
The Mustat scraper allows you to get a site traffic assessment, as well as the site cost and domain rating
Result saving is possible in the form and structure that you need, thanks to the built-in powerful templating engine Template Toolkit which allows you to apply additional logic to the results and output data in various formats, including JSON, SQL and CSV
Collected Data
- Number of site visitors per day
- Site cost in USD
- Domain rating
Use Cases
- Assessing traffic on a domain
- Getting summary information about a domain
Queries
Domains of the desired site should be specified as queries, for example:
a-parser.com  
www.yahoo.com  
google.com  
vk.com  
youtube.com
Output Results Examples
A-Parser supports flexible result formatting thanks to the built-in templating engine Template Toolkit, which allows it to output results in any form, as well as in a structured format, for example CSV or JSON
Default output
Result format:
Traffic: $traffic; Worth: $worth; Rating: $rating\n
Example result:
Traffic: 82823958, Worth: 17004793863, Rating: 100  
Traffic: 3232, Worth: 3539, Rating: 23  
Traffic: 7938563, Worth: 814943106, Rating: 100  
Traffic: 160439571, Worth: 32940249406, Rating: 100  
Traffic: 103246297, Worth: 12365357286, Rating: 100
Output in CSV table
Result format:
[% tools.CSVline(query, traffic, trafficWeek, trafficMonth, trafficYear, worth, rating) %]
Example result:
a-parser.com,3232,22624,100192,1179680,3539,30
Dump results to JSON
Общий формат результата:
[% IF notFirst;
  ",\n";
ELSE;
  notFirst = 1;
END;
obj = {};
obj.query = query;
obj.traffic = p1.traffic;
obj.trafficWeek = p1.trafficWeek;
obj.trafficMonth = p1.trafficMonth;
obj.trafficYear = p1.trafficYear;
obj.worth = p1.worth;
obj.rating = p1.rating;
obj.json %]
Начальный текст:
[
Конечный текст:
]
Example result:
[{"traffic":"3232","worth":"3539","trafficWeek":"22624","query":"a-parser.com","trafficMonth":"100192","rating":"30","trafficYear":"1179680"}]
For the "Initial text" and "Final text" options to be available in the Task Editor, you need to activate "More options".