scrape_manual
Manually scrape Telegram channels by opening a browser for login, navigating to desired channels, and extracting posts. Save results in MD and JSON formats for easy access and analysis.
Instructions
Manual scraping mode: Opens browser for you to login and navigate to any channel, then scrapes it
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of posts to scrape (optional) | |
save_to_file | No | Save results to MD and JSON files |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Maximum number of posts to scrape (optional)",
"type": "number"
},
"save_to_file": {
"default": true,
"description": "Save results to MD and JSON files",
"type": "boolean"
}
},
"required": [],
"type": "object"
}