{"id":28221724,"url":"https://github.com/hhhscvx/timefarmbot","last_synced_at":"2025-09-20T10:07:02.577Z","repository":{"id":283619203,"uuid":"952366465","full_name":"hhhscvx/TimeFarmBot","owner":"hhhscvx","description":"Auto farm bot for Telegram mini app @TimeFarmCryptoBot Time Coin farm.","archived":false,"fork":false,"pushed_at":"2025-03-21T06:58:01.000Z","size":9,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-02T13:55:33.538Z","etag":null,"topics":["claimer","clicker","farmer","miner","pyrogram","telegram"],"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/hhhscvx.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":"2025-03-21T06:55:55.000Z","updated_at":"2025-03-21T06:58:52.000Z","dependencies_parsed_at":"2025-03-21T07:32:08.494Z","dependency_job_id":null,"html_url":"https://github.com/hhhscvx/TimeFarmBot","commit_stats":null,"previous_names":["hhhscvx/timefarmbot"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hhhscvx%2FTimeFarmBot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hhhscvx%2FTimeFarmBot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hhhscvx%2FTimeFarmBot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hhhscvx%2FTimeFarmBot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hhhscvx","download_url":"https://codeload.github.com/hhhscvx/TimeFarmBot/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hhhscvx%2FTimeFarmBot/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":258814324,"owners_count":22762059,"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":["claimer","clicker","farmer","miner","pyrogram","telegram"],"created_at":"2025-05-18T06:09:06.765Z","updated_at":"2025-09-20T10:06:57.491Z","avatar_url":"https://github.com/hhhscvx.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n[\u003cimg src=\"https://img.shields.io/badge/Telegram-%40Me-orange\"\u003e](https://t.me/hhhscvx)\n\n\u003e Created by SudoLite, Updated by hhhscvx \n\n\n## Functionality\n| Functional                                                     | Supported |\n|----------------------------------------------------------------|:---------:|\n| Multithreading                                                 |     ✅     |\n| Binding a proxy to a session                                   |     ✅     |\n| Auto get all tasks except telegram tasks                       |     ✅     |\n| Auto upgrade level for boost farming                           |     ✅     |\n| Retry request per claim                                        |     ✅     |\n| Support tdata / pyrogram .session / telethon .session          |     ✅     |\n\n## [Settings](https://github.com/hhhscvx/TimeFarmBot/blob/main/.env-example)\n| Setting                   | Description                                                                   |\n|---------------------------|-------------------------------------------------------------------------------|\n| **API_ID / API_HASH**     | Platform data from which to launch a Telegram session (stock - Android)       |\n| **CLAIM_RETRY**           | Number of tries if **Claim** is unsuccessful _(e.g., 3)_                      |\n| **SLEEP_BETWEEN_CLAIM**   | Delay between **Claim** in minutes _(e.g., 180)_                              |\n| **AUTO_UPGRADE_FARM**     | Should I improve farmer level _(True / False)_                                |\n| **MAX_UPGRADE_LEVEL**     | Maximum level of farmer _(up to 4)_                                          |\n| **USE_PROXY_FROM_FILE**   | Whether to use proxy from the `bot/config/proxies.txt` file (True / False)    |\n\n## Installation\nYou can download the [**Repository**](https://github.com/hhhscvx/TimeFarmBot) by cloning it to your system and installing the necessary dependencies:\n```shell\n~ \u003e\u003e\u003e git clone https://github.com/hhhscvx/TimeFarmBot.git\n~ \u003e\u003e\u003e cd TimeFarmBot\n\n# If you are using Telethon sessions, then clone the \"converter\" branch\n~ \u003e\u003e\u003e git clone https://github.com/hhhscvx/TimeFarmBot.git -b converter\n~ \u003e\u003e\u003e cd TimeFarmBot\n\n#Linux\n~/TimeFarmBot \u003e\u003e\u003e python3 -m venv venv\n~/TimeFarmBot \u003e\u003e\u003e source venv/bin/activate\n~/TimeFarmBot \u003e\u003e\u003e pip3 install -r requirements.txt\n~/TimeFarmBot \u003e\u003e\u003e cp .env-example .env\n~/TimeFarmBot \u003e\u003e\u003e nano .env # Here you must specify your API_ID and API_HASH, the rest is taken by default\n~/TimeFarmBot \u003e\u003e\u003e python3 main.py\n\n#Windows\n~/TimeFarmBot \u003e\u003e\u003e python -m venv venv\n~/TimeFarmBot \u003e\u003e\u003e venv\\Scripts\\activate\n~/TimeFarmBot \u003e\u003e\u003e pip install -r requirements.txt\n~/TimeFarmBot \u003e\u003e\u003e copy .env-example .env\n~/TimeFarmBot \u003e\u003e\u003e # Specify your API_ID and API_HASH, the rest is taken by default\n~/TimeFarmBot \u003e\u003e\u003e python main.py\n```\n\nAlso, for a quick launch, you can use arguments, for example:\n```shell\n~/TimeFarmBot \u003e\u003e\u003e python3 main.py --action (1/2)\n# Or\n~/TimeFarmBot \u003e\u003e\u003e python3 main.py -a (1/2)\n\n#1 - Create session\n#2 - Run clicker\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhhhscvx%2Ftimefarmbot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhhhscvx%2Ftimefarmbot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhhhscvx%2Ftimefarmbot/lists"}