{"id":42206347,"url":"https://github.com/ekvanox/wordfeud-bot","last_synced_at":"2026-01-27T00:34:50.676Z","repository":{"id":48314814,"uuid":"270465400","full_name":"ekvanox/wordfeud-bot","owner":"ekvanox","description":"A python script that automates the game of wordfeud, impersonating T-800 from the Terminator series","archived":false,"fork":false,"pushed_at":"2023-05-22T23:32:09.000Z","size":2061,"stargazers_count":5,"open_issues_count":20,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-23T00:02:04.842Z","etag":null,"topics":["automation","docker","python","wordfeud"],"latest_commit_sha":null,"homepage":"https://heimdal.dev/projects/wordfeud-bot/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ekvanox.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2020-06-07T23:48:55.000Z","updated_at":"2025-06-08T10:23:17.000Z","dependencies_parsed_at":"2023-07-13T09:25:50.314Z","dependency_job_id":null,"html_url":"https://github.com/ekvanox/wordfeud-bot","commit_stats":null,"previous_names":["pricehacker/wordfeud-bot"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/ekvanox/wordfeud-bot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ekvanox%2Fwordfeud-bot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ekvanox%2Fwordfeud-bot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ekvanox%2Fwordfeud-bot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ekvanox%2Fwordfeud-bot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ekvanox","download_url":"https://codeload.github.com/ekvanox/wordfeud-bot/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ekvanox%2Fwordfeud-bot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28793525,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-26T21:49:50.245Z","status":"ssl_error","status_checked_at":"2026-01-26T21:48:29.455Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["automation","docker","python","wordfeud"],"created_at":"2026-01-27T00:34:50.598Z","updated_at":"2026-01-27T00:34:50.666Z","avatar_url":"https://github.com/ekvanox.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Wordfeud addon for T-800\n\n[![Version](https://img.shields.io/github/v/release/ekvanox/wordfeud-bot)](https://img.shields.io/github/v/release/ekvanox/wordfeud-bot)\n![GitHub repo size](https://img.shields.io/github/repo-size/ekvanox/wordfeud-bot)\n[![CodeFactor](https://www.codefactor.io/repository/github/ekvanox/wordfeud-bot/badge)](https://www.codefactor.io/repository/github/ekvanox/wordfeud-bot)\n[![Build Status](https://travis-ci.com/ekvanox/wordfeud-bot.svg?branch=master)](https://travis-ci.com/ekvanox/wordfeud-bot)\n![License](https://img.shields.io/github/license/ekvanox/wordfeud-bot)\n\nA python script that impersonates T-800 while automatically laying out moves using the private wordfeud API.\n\n## Installation\n\nTo clone and run this repository you'll need Git and python3 (which includes pip3) installed on your computer. From your command line:\n\n```bash\n# Clone this repository\ngit clone https://github.com/ekvanox/wordfeud-bot\n# Go into the repository\ncd wordfeud-bot\n# Install dependencies\npip install -r requirements.txt\n```\n\n## Collecting credentials\n\nCurrently, the credentials (user ID \u0026 password) are not captured by the wordfeud bot itself, and therefore have to be found prior to using it.\n\n[Here](https://heimdal.dev/projects/wordfeud-bot/) is a guide on how to do so (windows only)\n\n## Usage\n\n### Windows\n\nSet your wordfeud account credentials as environment variables (you only have to do this once):\n\n```cmd\n:: Set the username (remove the curly braces)\nsetx WORDFEUD_USERNAME {your user ID here}\n:: Set the password (remove the curly braces)\nsetx WORDFEUD_PASSWORD {your password here}\n```\n\nStart the script normally:\n\n```cmd\n:: Go into the repository\ncd wordfeud-bot\n:: Execute with python\npython3 main.py\n```\n\n### Linux\n\nSet your wordfeud account credentials as environment variables:\n\n```Bash\n# Set the username (remove the curly braces)\nWORDFEUD_USERNAME={your user ID here}\n# Set the password (remove the curly braces)\nWORDFEUD_PASSWORD={your password here}\n```\n\nNote: To add them permanently you have to edit your `~/.bashrc` or `~/.profile` file and add them there.\n\nStart the script normally:\n\n```bash\n# Go into the repository\ncd wordfeud-bot\n# Execute with python\npython3 main.py\n```\n\n### Docker\n\nBuild your docker image:\n\n```bash\n# Go into the repository\ncd wordfeud-bot\n# Build the docker image\ndocker build -t wordfeudbot .\n```\n\nStart docker container with your credentials as environment variables:\n\n```bash\n# Remove the curly braces\ndocker run -e WORDFEUD_USERNAME={your user ID here} -e WORDFEUD_PASSWORD={your password here} wordfeudbot\n```\n\n### Python package installer\n\nDownload and install the package:\n\n```bash\n# Install the package with pip\npip install wordfeudbot\n```\n\nRun the script with credentials as arguments:\n\n```bash\n# Remove the curly braces\nwordfeudbot --user_id {your user ID here} --password {your password here}\n```\n\nNote: Credentials are optional if you set environment variables.\n\n## Compatibility\n\n### Operating systems (tested)\n\n- Windows 10 10.0.19592 Build 19592\n- Kali GNU/Linux 2020.2\n- Ubuntu 18.04.4 LTS\n\n### Python versions (tested)\n\n- 3.8.2\n- 3.6.10\n\n## Read more\n\nDocumentation from the development process can be found [here](https://heimdal.dev/projects/wordfeud-bot/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fekvanox%2Fwordfeud-bot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fekvanox%2Fwordfeud-bot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fekvanox%2Fwordfeud-bot/lists"}