Your Spyno Agents do all the work, so you don’t have to. Train agents for each website you want to gather information from. You tell each agent what information to grab, as well as how to present the information to you. Here’s how… Visit
1 |
chrome://extensions |
in Chrome’s address bar Agent example (options explained below):
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
{ "name": "reddit", "schedule": { "periodInMinutes": 15 }, "url": "http://www.reddit.com/hot.json?limit=50", "extract": { "root": "$.data.children[*]", "fields": { "title": "$.data.title", "permalink": "$.data.permalink", "url": "$.data.url" }, "template": "<div><h3>reddit</h3></div>{{#each rows}}<div><a href=\"{{url}}\">{{title}}</a> <a href=\"http://reddit.com{{permalink}}\">»</a></div>{{/each}}" } } |
[…]