{"id":19258823,"url":"https://github.com/lucascompython/critbot","last_synced_at":"2026-04-02T17:25:58.448Z","repository":{"id":59171369,"uuid":"534378418","full_name":"lucascompython/CritBot","owner":"lucascompython","description":"This is a discord bot written with discord.py v2.0","archived":false,"fork":false,"pushed_at":"2025-12-24T14:38:31.000Z","size":57147,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-25T11:40:28.368Z","etag":null,"topics":["discord-bot","python"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lucascompython.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-09-08T20:14:30.000Z","updated_at":"2025-10-20T22:39:35.000Z","dependencies_parsed_at":"2025-10-15T00:25:49.216Z","dependency_job_id":null,"html_url":"https://github.com/lucascompython/CritBot","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/lucascompython/CritBot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lucascompython%2FCritBot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lucascompython%2FCritBot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lucascompython%2FCritBot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lucascompython%2FCritBot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lucascompython","download_url":"https://codeload.github.com/lucascompython/CritBot/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lucascompython%2FCritBot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31311442,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-02T12:59:32.332Z","status":"ssl_error","status_checked_at":"2026-04-02T12:54:48.875Z","response_time":89,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["discord-bot","python"],"created_at":"2024-11-09T19:14:30.902Z","updated_at":"2026-04-02T17:25:58.441Z","avatar_url":"https://github.com/lucascompython.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CritBot (the discord bot)\u003cimg src=\"https://cdn.discordapp.com/attachments/628637327878520872/1017256259138900030/unknown.png\" width=\"3.5%\" heigth=\"3.5%\"/\u003e\n\nThis is a discord bot written with discord.py v2.0.  \nThe bot has a custom [i18n](i18n/) system.  \nThe only translated languages for now are Portuguese and English.  \n\n# Rewrite!\nSince Wavelink is now archived, I decided I might as well rewrite the whole thing!  \nThis project is currently being rewritten [here](https://github.com/lucascompython/CritBot/tree/rust-rewrite).\n\n## Features\n\n+ Translations - For now only English and Portuguese\n+ High quality audio\n+ Youtube's Dislikes - \u003chttps://returnyoutubedislike.com\u003e\n+ [Sponsorblock](https://sponsor.ajay.app/) - \u003chttps://github.com/topi314/Sponsorblock-Plugin\u003e\n+ Music AutoPlay - When enabled the bot will play music based on the music played that session\n+ Downloading Music - Download anything (get's converted to mp3) that [yt-dlp](https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md) supports, at 320kbps. Discord limits files bigger than 25MB (around, 11min.)\n+ Audio Filters - Nightcore, 8d, reverb, etc.\n+ Multiple Platform Support - Youtube, YT Music, Spotify, Apple Music, Twitch, Sondcloud, Vimeo and Bandcamp\n+ Reddit memes\n+ Both prefixed and slash commands\n\n## Installation \u0026 Execution\n\nThis bot was only tested on Linux.  \nPython 3.13+ is required.  \nYou can invite it [here](https://discord.com/oauth2/authorize?client_id=888100964534456361\u0026permissions=8\u0026integration_type=0\u0026scope=bot).  \nThe installation steps are as follows:\n\nI have only tested PostgreSQL \u003e=15.2 but it should work with other versions.\n\nCreate a database and a user with the `psql` tool:\n\n```pgsql\nCREATE ROLE user WITH LOGIN PASSWORD 'yourpw';\nCREATE DATABASE crit OWNER user;\n```\n\nAnd then\n\n```bash\ngit clone https://github.com/lucascompython/CritBot.git\ncd CritBot\n# install uv https://github.com/astral-sh/uv (build tool)\n\n# activate virtual environmet\nsource ./venv/bin/activate\n\n# install dependencies\nuv pip install\n\n./setup.sh\njava -jar .config/Lavalink.jar\n\n# change the appsettings.yaml file with your token and information\npython3 launcher.py -l 0.0.0.0:2333\n\n```\n\n## Todo's (mostly by order)\n\n+ [X] add internationalization\n+ [X] add i18n to app_commands and on commands descriptions\n+ [X] add Music\n+ [X] get a real database probably PostgreSql\n+ [X] update to wavelink 3\n+ [ ] remake the i18n system\n+ [ ] update help menu on specific command\n+ [ ] add support for other languages with Google Translate\n+ [ ] add Docker support\n\n## Known \"bugs\"\n\n+ If two translations are being processed at the same time, it might error. I know this is stupid.\n+ The interaction name, description, choices, etc. are set per user locale while everything else is set per guild language.\n\n## Contributions\n\nFeel free to help.  \nIf you have any questions on the code you can send me a DM on my Discord (lucas_delinhares)  \n\n## License\n\nThis project is licensed under the GPL3 license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flucascompython%2Fcritbot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flucascompython%2Fcritbot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flucascompython%2Fcritbot/lists"}