{"id":31359342,"url":"https://github.com/raythurman2386/word_search","last_synced_at":"2026-04-13T21:31:27.638Z","repository":{"id":295126827,"uuid":"983858235","full_name":"raythurman2386/word_search","owner":"raythurman2386","description":"A modern web application for generating customized word search puzzles, built with FastAPI and HTMX for a responsive, interactive user experience.","archived":false,"fork":false,"pushed_at":"2025-05-23T18:42:28.000Z","size":40,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-26T23:21:02.981Z","etag":null,"topics":["docker","fastapi","homelab","selfhosted"],"latest_commit_sha":null,"homepage":"","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/raythurman2386.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null}},"created_at":"2025-05-15T03:02:17.000Z","updated_at":"2025-05-23T18:42:31.000Z","dependencies_parsed_at":"2025-05-23T19:30:21.731Z","dependency_job_id":null,"html_url":"https://github.com/raythurman2386/word_search","commit_stats":null,"previous_names":["raythurman2386/word_search"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/raythurman2386/word_search","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raythurman2386%2Fword_search","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raythurman2386%2Fword_search/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raythurman2386%2Fword_search/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raythurman2386%2Fword_search/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/raythurman2386","download_url":"https://codeload.github.com/raythurman2386/word_search/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raythurman2386%2Fword_search/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31771802,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T20:17:16.280Z","status":"ssl_error","status_checked_at":"2026-04-13T20:17:08.216Z","response_time":93,"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":["docker","fastapi","homelab","selfhosted"],"created_at":"2025-09-26T23:08:22.037Z","updated_at":"2026-04-13T21:31:27.600Z","avatar_url":"https://github.com/raythurman2386.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Word Search Generator\n\nA modern web application for generating customized word search puzzles, built with FastAPI and HTMX for a responsive, interactive user experience.\n\n## Features\n\n- **Interactive Web Interface:** Create word search puzzles through a user-friendly web application\n- **Two Output Formats:** Generates both regular and solution versions of each puzzle\n- **Flexible Word Placement:** Places words horizontally, vertically, and diagonally (forward and backward)\n- **Customizable:** Adjust grid size and other options to suit your needs\n- **PDF Output:** Clean, printable PDF format for easy distribution\n- **Modern Tech Stack:** Built with FastAPI, HTMX, and Python for optimal performance\n\n## Implementation Details\n\n### Technology Stack\n\n- **Backend:** FastAPI (Python)\n- **Frontend Enhancement:** HTMX for dynamic interactions without JavaScript\n- **PDF Generation:** ReportLab\n- **Styling:** Bootstrap 5\n- **UI Responsiveness:** Responsive design for desktop and mobile\n\n### Architecture\n\nThe application follows modern best practices:\n\n- **Separation of Concerns:** Clear separation between UI and puzzle generation logic\n- **RESTful API Design:** Clean API endpoints for future extensibility\n- **Template-Based UI:** Server-side rendering for fast initial load times\n- **Progressive Enhancement:** Works without JavaScript, enhanced with HTMX\n\n## Installation\n\n### Prerequisites\n\n- Python 3.9+\n- Virtual environment (recommended)\n\n### Setup\n\n1. Clone the repository:\n   ```bash\n   git clone https://github.com/yourusername/word_search.git\n   cd word_search\n   ```\n\n2. Create and activate a virtual environment:\n   ```bash\n   python -m venv venv\n   source venv/bin/activate  # On Windows: venv\\Scripts\\activate\n   ```\n\n3. Install dependencies:\n   ```bash\n   pip install -r requirements.txt\n   ```\n\n## Running the Application\n\nStart the web server:\n\n```bash\nuvicorn app.main:app --reload\n```\n\nThe application will be available at http://localhost:8000\n\n## Usage\n\n1. **Enter Words:** Type or paste your list of words (one per line) in the text area\n2. **Customize:** Set a title, description, and adjust the grid size\n3. **Generate:** Click \"Generate Word Search\" to create your puzzle\n4. **Download:** Get both the regular puzzle and the solution key as PDF files\n\n## Docker Support (Optional)\n\nA Dockerfile is included for containerized deployment:\n\n```bash\n# Build the Docker image\ndocker build -t word-search-generator .\n\n# Run the container\ndocker run -p 8000:8000 word-search-generator\n```\n\n## Project Structure\n\n```\nword_search/\n├── app/\n│   ├── __init__.py\n│   ├── main.py            # FastAPI application\n│   ├── word_search.py     # Word search generation logic\n│   └── templates/         # Jinja2 templates\n│       ├── base.html\n│       ├── index.html\n│       ├── results.html\n│       └── error.html\n├── static/                # Static assets\n│   ├── css/\n│   │   └── styles.css\n│   └── js/\n│       └── htmx.min.js\n├── uploads/               # Temporary storage for word lists\n├── downloads/             # Generated PDFs\n├── requirements.txt\n└── README.md\n```\n\n## License\n\nMIT License - Feel free to use, modify, and distribute as needed.\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraythurman2386%2Fword_search","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fraythurman2386%2Fword_search","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraythurman2386%2Fword_search/lists"}