{"id":27229040,"url":"https://github.com/vwh/telegram-views","last_synced_at":"2025-04-10T12:47:15.118Z","repository":{"id":147958095,"uuid":"593673925","full_name":"vwh/telegram-views","owner":"vwh","description":"Asynchronous fake Telegram post views with auto proxy scraping.","archived":false,"fork":false,"pushed_at":"2025-04-04T08:20:22.000Z","size":41,"stargazers_count":208,"open_issues_count":0,"forks_count":109,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-04-04T09:27:09.673Z","etag":null,"topics":["fake-views","telegram","telegram-auto-views","telegram-fake-post-viewer","telegram-fake-posts-viewer","telegram-fake-seen","telegram-fake-viewer","telegram-post","telegram-post-viewer","telegram-poster","telegram-viewer","telegram-views","telegram-views-increaser"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vwh.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-01-26T15:32:09.000Z","updated_at":"2025-04-04T08:20:26.000Z","dependencies_parsed_at":null,"dependency_job_id":"948d353d-e3a7-40f4-8642-a50b9583bdcd","html_url":"https://github.com/vwh/telegram-views","commit_stats":null,"previous_names":["vwh/telegram-views"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vwh%2Ftelegram-views","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vwh%2Ftelegram-views/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vwh%2Ftelegram-views/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vwh%2Ftelegram-views/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vwh","download_url":"https://codeload.github.com/vwh/telegram-views/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248217715,"owners_count":21066753,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["fake-views","telegram","telegram-auto-views","telegram-fake-post-viewer","telegram-fake-posts-viewer","telegram-fake-seen","telegram-fake-viewer","telegram-post","telegram-post-viewer","telegram-poster","telegram-viewer","telegram-views","telegram-views-increaser"],"created_at":"2025-04-10T12:47:14.408Z","updated_at":"2025-04-10T12:47:15.093Z","avatar_url":"https://github.com/vwh.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Telegram Views\n\n![Gif](https://media4.giphy.com/media/v1.Y2lkPTc5MGI3NjExOGFkOTRiMTdjMTc3OTJhZmU0MDRmZGFlNGJiMjA3NGYxOGQwM2Y2ZSZlcD12MV9pbnRlcm5hbF9naWZzX2dpZklkJmN0PWc/jStbo9qVAJsObKKr5a/giphy.gif)\n\n## Features\n\n- **Asynchronous**: Optimized for performance with async tasks.\n- **Proxy Support**: Compatible with all proxy types (HTTP/S, SOCKS4, SOCKS5).\n- **Auto Proxy Scraping**: Automatically scrapes proxies from various sources.\n- **Proxy Rotation**: Supports rotating proxies for added anonymity.\n- **Custom Proxy Lists**: Load proxies from files and use them in different modes.\n\n---\n\n## Arguments Overview\n\n### Command-Line Arguments:\n\n- `--channel`: **Required** – Telegram channel to send views to (e.g., `@channel_name`).\n- `--post`: **Required** – Post number in the Telegram channel (e.g., `4` for `https://t.me/channel_name/4`).\n- `--type`: **Optional** – Proxy type (`http`, `socks4`, `socks5`).\n- `--mode`: **Required** – Mode of operation (options: `auto`, `list`, `rotate`).\n- `--proxy`: **Optional** – Path to a text file containing a list of proxies or a single proxy in `user:password@host:port` format.\n- `--concurrency`: **Optional** – Maximum number of concurrent requests (default: `200`).\n\n---\n\n## Modes\n\n### 1. **Auto Scraping Mode** (No Proxies Required)\n\nIn this mode, proxies are automatically scraped from various online sources. You don’t need to provide a list of proxies.\n\n- **Usage**: This mode runs indefinitely and auto-rescrapes proxies after each loop.\n\n```bash\nmain.py --mode auto --channel tviews --post 4\n```\n\n#### Notes:\n\n- Proxies will be scraped from the `auto` directory. You can update the sources in the `auto` directory.\n- This mode does not require a proxy list.\n\n### 2. **List Mode** (Load Proxies From File)\n\nThis mode allows you to provide a text file containing a list of proxies. Each proxy should be on a new line. It supports multiple proxy types: `http`, `socks4`, and `socks5`.\n\n- **Usage**:\n\n```bash\nmain.py --mode list --type http --proxy http.txt --channel tviews --post 4\n```\n\n#### Notes:\n\n- You need to provide a path to a text file with proxies (`http.txt`, `socks4.txt`, etc.).\n- This mode uses the proxies from the file for continuous requests.\n\n### 3. **Rotating Proxy Mode**\n\nIn this mode, a single proxy (with rotation) is used for requests. You need to provide a proxy in the `user:password@ip:port` format.\n\n- **Usage**:\n\n```bash\nmain.py --mode rotate --type http --proxy user:password@ip:port --channel tviews --post 4\n```\n\n#### Notes:\n\n- This mode rotates a single proxy across multiple requests.\n\n---\n\n## Example Usage\n\n### **1. Auto Scraping Mode** (No Proxy)\n\nThis mode continuously scrapes proxies and sends views to the given post on the Telegram channel.\n\n```bash\npython main.py --mode auto --channel tviews --post 4\n```\n\n### **2. Load Proxies From File** (Custom Proxies)\n\nIf you have a list of proxies (e.g., in a text file `http.txt`), use this mode to send views using those proxies.\n\n```bash\npython main.py --mode list --type http --proxy http.txt --channel tviews --post 4\n```\n\n### **3. Rotating Proxy Mode** (Single Proxy with Rotation)\n\nThis mode allows you to send views using a single rotating proxy. Provide the proxy in `user:password@ip:port` format.\n\n```bash\npython main.py --mode rotate --type http --proxy user:password@ip:port --channel tviews --post 4\n```\n\n---\n\n## Requirements\n\nMake sure to install the required dependencies before running the script:\n\n```bash\npip install -r requirements.txt\n```\n\n---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvwh%2Ftelegram-views","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvwh%2Ftelegram-views","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvwh%2Ftelegram-views/lists"}