{"id":21396829,"url":"https://github.com/posixpascal/warmane_point_collector","last_synced_at":"2025-09-05T19:39:00.720Z","repository":{"id":49634791,"uuid":"197838200","full_name":"posixpascal/warmane_point_collector","owner":"posixpascal","description":"🦡 warmane.com point collector bot. uses chrome. multi accounts. bypasses recaptcha","archived":false,"fork":false,"pushed_at":"2022-12-08T05:54:26.000Z","size":26,"stargazers_count":5,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-01T08:34:46.534Z","etag":null,"topics":["2captcha","bot","points","warmane"],"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/posixpascal.png","metadata":{"files":{"readme":"README.md","changelog":"ChangeLog","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-07-19T20:32:15.000Z","updated_at":"2024-08-27T02:22:20.000Z","dependencies_parsed_at":"2023-01-24T14:45:23.992Z","dependency_job_id":null,"html_url":"https://github.com/posixpascal/warmane_point_collector","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/posixpascal/warmane_point_collector","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/posixpascal%2Fwarmane_point_collector","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/posixpascal%2Fwarmane_point_collector/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/posixpascal%2Fwarmane_point_collector/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/posixpascal%2Fwarmane_point_collector/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/posixpascal","download_url":"https://codeload.github.com/posixpascal/warmane_point_collector/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/posixpascal%2Fwarmane_point_collector/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273812093,"owners_count":25172878,"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","status":"online","status_checked_at":"2025-09-05T02:00:09.113Z","response_time":402,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["2captcha","bot","points","warmane"],"created_at":"2024-11-22T14:29:31.455Z","updated_at":"2025-09-05T19:39:00.641Z","avatar_url":"https://github.com/posixpascal.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🦡 warmane_point_collector\n\nA python3 bot which collects daily login points from [warmane.com](https://www.warmane.com). It supports multiple\naccounts, can run chrome in headless mode and solve recaptchas automatically in the background.\n\nPlease make sure that you've signed into the game at least once the day you're running this.\n \n## 💻 Install\n\nInstall using docker or [Pipenv](https://docs.pipenv.org/en/latest/)\n\n### 🐍 Via pipenv\n\n```bash\n# Clone the repository \u0026 cd into it\npipenv install\n```\n\nYou can also install this bot as a library using  `pipenv install warmane_point_collector`. \n\n## 🐳 Via docker\n\nBuild the image once.\n\n```\n# Clone the repository \u0026 cd into it\ndocker build -t warmane_point_collector .\n```\n\nthen run it using:\n\n```\n# Clone the repository \u0026 cd into it\ndocker run -t warmane_point_collector\n```\n\n## 🚀 Usage\n\n```bash\npipenv run python3 warmane.py\n# or\npipenv shell\npython3 warmane.py\n```\n\n## 🔩 Config\n\nRename the provided `config.ini.sample` to `config.ini` and edit it in place.\n\n```toml\n[bot]\n# Whether or not to solve captchas using 2captcha.com — Account required\nuse_2captcha = 0\n\n[endpoint]\n# Warmane website configs\nendpoint_url = https://www.warmane.com\nlogin_url = %(endpoint_url)s/account/login\ncollect_points_url = %(endpoint_url)s/account\n\n[2captcha]\n# 2captcha configuration\napi_key = YOUR_2CAPTCHA_API_KEY\n\n# You can override 2captcha endpoints here.\nrequest_url = http://2captcha.com/in.php\nsolver_url = http://2captcha.com/res.php?key=%(api_key)s\u0026action=get\u0026id={req_id}\u0026json=1\n\n[chrome]\n# Whether or not to run chrome in headless mode (e.g. without a window)\nheadless = 1\n# if testing is 1 this will slowdown each chrome action by 10 seconds.\ntesting = 0\n# set the chrome path.\n# do note that pyppeteer bundles chromium but I had troubles with that.\n# You can change main.py and remove the \"executablePath\" setting from the launch() call.\n# Then pyppeteer will use the bundled chromium instead.\npath = YOUR CHROME PATH\n\n[selectors]\n# for website navigational purposes\nusername_field = [name='userID']\npassword_field = [name='userPW']\nsubmit_btn = .wm-ui-position-abottom [type='submit']\nrecaptcha_iframe = #loginWidget iframe[role='presentation']\n\nmy_current_points = body table .myCoins\nmy_current_coins = body table .myPoints\ncollect_points_btn = a[data-click='collectpoints']\n\n[account_one]\n# your warmane accounts\nusername = YOUR_USERNAME\npassword = YOUR_PASSWORD\n\n# you can add as many accounts as you want as long as you prefix each section with account_.\n# see below:\n#[account_two]\n#username = \"\"\n#password = \"\"\n#\n#[account_XXXXXXXXXXXXXXXXXXXXXX]\n#username = \"\"\n#password = \"\"\n\n#[account_any]\n#username = \"\"\n#password = \"\"\n```\n\n## 👀 Recaptcha Bypass\n\nTo bypass the recaptcha you have to add a [2captcha.com](https://2captcha.com) API key in the config file.\n\n## 🤓 Solve Recaptcha manually\n\nIf you do not want to use 2captcha.com you can also manually solve the captchas.\nThe bot will automatically fill in all credentials and will wait for you to solve the captcha.\nOnce you solve the captcha the bot will continue and collect your points.\n\nDo note that manual captcha solving is only possible then running the bot in non-headless mode.\nSet `headless = 0` in your `config.ini` file.\n\n\n\n## 📋 License\n\n```\nMIT License\n\nCopyright (c) [2019] [Pascal Raszyk]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fposixpascal%2Fwarmane_point_collector","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fposixpascal%2Fwarmane_point_collector","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fposixpascal%2Fwarmane_point_collector/lists"}