{"id":19437505,"url":"https://github.com/eric15342335/bruh","last_synced_at":"2026-06-15T19:31:53.598Z","repository":{"id":207026529,"uuid":"717024323","full_name":"eric15342335/bruh","owner":"eric15342335","description":"A simple python GUI program","archived":false,"fork":false,"pushed_at":"2024-09-25T08:48:22.000Z","size":1154,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-24T14:08:59.459Z","etag":null,"topics":["inno-setup","pyinstaller","python","socket"],"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/eric15342335.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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-11-10T11:39:58.000Z","updated_at":"2024-10-28T09:51:30.000Z","dependencies_parsed_at":"2024-06-01T20:09:00.222Z","dependency_job_id":null,"html_url":"https://github.com/eric15342335/bruh","commit_stats":null,"previous_names":["eric15342335/bruh"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/eric15342335/bruh","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eric15342335%2Fbruh","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eric15342335%2Fbruh/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eric15342335%2Fbruh/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eric15342335%2Fbruh/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eric15342335","download_url":"https://codeload.github.com/eric15342335/bruh/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eric15342335%2Fbruh/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34377872,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-15T02:00:07.085Z","response_time":63,"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":["inno-setup","pyinstaller","python","socket"],"created_at":"2024-11-10T15:14:47.748Z","updated_at":"2026-06-15T19:31:53.581Z","avatar_url":"https://github.com/eric15342335.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SpamBot\n\n## Note\n\nCurrently, the platform support is limited to `Windows 10/11`.\n\nAs cross-platform compatibility is not a priority for me at the moment,\nyou shouldn't anticipate any updates in that regard in the near future.\n\n\u003c!--\nList for me to pick up:\n* winsound module, aka need cross-platform .wav audio playing package?\n* Use virustotal OR hybrid-analysis to test macOS PyInstaller'ed runnable or not\n--\u003e\n\n## What is this?\n\nCreated just for fun.\n\nThis is my first attempt to create a usable (not really) GUI interface for a python script.\n\n## Functionality\n\n1. SpamBot (Ctrl+V)\n2. ClickBot\n3. Text-only chat room\n4. Updates checking\n\n## Installing\n\nFirst, create a virtual environment:\n\n```bash\npip install -U virtualenv\nvirtualenv venv --clear\nvenv\\scripts\\activate\n```\n\nInstall dependencies:\n\n```bash\npip install -U -r requirements.txt\n```\n\n(Optional) If you want to package the app, install pyinstaller:\n\n```bash\npip install pyinstaller      \n```\n\nThen run!  The source files are located at /src/\n\n```bash\npython3 src/cli.py  # Command line interface\npython3 src/gui.py  # GUI (tkinter)\n```\n\n## Packaging using PyInstaller\n\nSet my custom hook for pyinstaller and icons:\n\n```cmd\nset Resources=--additional-hooks-dir utils\nset Icons=--icon \"src/res/riva.ico\"\n```\n\nFinally, build both the cli and gui versions:\n\n```bash\npyinstaller -y --clean -n \"spambotcli\" src/cli.py --version-file \"utils/cli.txt\" %Resources% %Icons%\npyinstaller -y --clean -n \"spambotgui\" src/gui.py --version-file \"utils/gui.txt\" -w %Resources% %Icons%\n```\n\nIf you want the executable output be one file, add the --onefile flag:\n\n```bash\npyinstaller -y --clean -n \"spambotcli\" src/cli.py --version-file \"utils/cli.txt\" %Resources% %Icons% --onefile\npyinstaller -y --clean -n \"spambotgui\" src/gui.py --version-file \"utils/gui.txt\" -w %Resources% %Icons% --onefile\n```\n\n(Beta) PyInstaller Splash screen:\nAdd `--splash src/res/riva.ico` to the pyinstaller command\n\nPyInstaller Documentation: [Here](https://pyinstaller.org/en/stable/usage.html)\n\n## File structure\n\n```sh\n.github/workflows   # Github Actions\nsrc/*.py            # Codes\nsrc/get/            # Server lists for chatroom and version lists for checking updates\nsrc/res/            # resources(images,audios) for the program \nutils/hook-utils.py # PyInstaller hook\nutils/*.iss         # Inno setup scripts\nutils/*.txt         # windows metadata for the program \n.gitignore          # gitignore \nLICENSE.txt         # License file\nREADME.md           # This file \nrequirements.txt    # Dependencies\n```\n\n## Appreciation\n\nI would like to thank the following people:\n\n1. PyInstaller devs (specifically bwoodsend, rokm, Legorooj)\n2. My friends who helped me to test the program\n3. And you, for reading this README.md\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feric15342335%2Fbruh","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feric15342335%2Fbruh","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feric15342335%2Fbruh/lists"}