{"id":49874141,"url":"https://github.com/t33devv/jhonmicro","last_synced_at":"2026-05-15T11:40:19.805Z","repository":{"id":308704094,"uuid":"1018411509","full_name":"t33devv/jhonmicro","owner":"t33devv","description":"a discord.py bot made for micro jam (itch.io game jam)","archived":false,"fork":false,"pushed_at":"2025-08-20T10:00:00.000Z","size":415,"stargazers_count":5,"open_issues_count":0,"forks_count":2,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-20T11:45:32.969Z","etag":null,"topics":["discord","discord-bot","discord-py","gamejam","python3"],"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/t33devv.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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-07-12T07:47:04.000Z","updated_at":"2025-08-20T10:00:05.000Z","dependencies_parsed_at":"2025-08-07T12:30:01.801Z","dependency_job_id":"71dd61e0-461a-4cb8-b992-5fae6d70a9f7","html_url":"https://github.com/t33devv/jhonmicro","commit_stats":null,"previous_names":["t33devv/jhonmicro"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/t33devv/jhonmicro","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/t33devv%2Fjhonmicro","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/t33devv%2Fjhonmicro/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/t33devv%2Fjhonmicro/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/t33devv%2Fjhonmicro/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/t33devv","download_url":"https://codeload.github.com/t33devv/jhonmicro/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/t33devv%2Fjhonmicro/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33065918,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-15T11:35:32.926Z","status":"ssl_error","status_checked_at":"2026-05-15T11:35:31.362Z","response_time":103,"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","discord-bot","discord-py","gamejam","python3"],"created_at":"2026-05-15T11:40:17.696Z","updated_at":"2026-05-15T11:40:19.800Z","avatar_url":"https://github.com/t33devv.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"## the one and only JhonMicro 🤖\r\n\r\na discord.py bot for my itch.io game jam [Micro Jam](https://discord.com/servers/micro-jam-1190868995226730616), where anyone can help with development!\r\n\r\n### Installation (cloning the repo)\r\n\r\n```bash\r\ngit clone https://github.com/t33devv/jhonmicro.git\r\n```\r\n\r\n## How to help with Development/Contribution\r\n\r\n1. Fork the repository\r\n\r\nStart by clicking the \"fork\" button on github\r\n\r\n```bash\r\ngit clone https://github.com/your_username/jhonmicro.git\r\ncd jhonmicro\r\n```\r\n\r\n2. Create a new feature branch\r\n```bash\r\ngit checkout -b feat/your-feature-name\r\n```\r\n\r\n3. Commit your changes\r\n```bash\r\n# check where you made edits\r\ngit status\r\n\r\n# stage changes\r\ngit add main.py           # or anywhere else you made changes\r\n\r\n# write a good commit message\r\ngit commit -m \"added slash command to view all micro jams\"\r\n```\r\n\r\n4. Push to the branch\r\n```bash\r\ngit push origin feat/your-feature-name\r\n```\r\n\r\n5. Open a Pull Request from Github\r\n\r\n## Quick Start the Bot (E.G. if you want to use this as a template for your own bot)\r\n1. Create a Discord bot from the [Discord Developer Portal](https://discord.com/developers/applications)\r\n  - Add the bot to any server you like (create a new one for testing purposes)\r\n  - Make sure the bot has the server members intent and the message content intent\r\n  - Make sure the bot has slash commands and show messages permissions in the server\r\n\r\n2. Create a .env file:\r\n  - Create a file in the jhonmicro folder called .env\r\n  - Add these lines in the file, replacing the values as needed for your bot and server\r\n```bash\r\nTOKEN = your_token_here\r\nGUILD_ID = your_discord_server_id_here\r\nWELCOME_CHANNEL_ID = your_welcome_channel_id_here\r\nLEAVE_CHANNEL_ID = your_leave_channel_id_here\r\nLEVEL_CHANNEL_ID = your_level_channel_id_here\r\n```\r\n*to get the guild_id you'll need discord developer mode which can be turned on in your profile settings*\r\n\r\n3. If you don't have UV, run:\r\n```bash\r\npip install uv\r\nuv version\r\n```\r\n\r\n4. Navigate to your project folder, and run:\r\n```bash\r\nuv run main.py\r\n```\r\n\r\n5. Now the bot should be live in the server you put as the GUILD_ID, have fun testing!\r\n\r\n## Documentation\r\n\r\nThis bot was made with discord.py, so to help with development, please refer to the [Discord.py documentation](https://discordpy.readthedocs.io/en/stable/).\r\nThey have tons of examples of code for existing features.\r\n\r\n## Support\r\n\r\nIf you have any questions about this, feel free to join our [Discord Server](https://discord.com/servers/micro-jam-1190868995226730616) and ping me (@t33dev) or any other staff!\r\n\r\n## Made with ❤️ by Tommy and the Micro Jam community\r\n\r\n\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ft33devv%2Fjhonmicro","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ft33devv%2Fjhonmicro","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ft33devv%2Fjhonmicro/lists"}