{"id":24569402,"url":"https://github.com/tony14261/micromightybot","last_synced_at":"2025-03-17T05:45:40.207Z","repository":{"id":262061155,"uuid":"886099756","full_name":"Tony14261/MicroMightyBot","owner":"Tony14261","description":"My open source Discord bot","archived":false,"fork":false,"pushed_at":"2025-02-02T12:38:50.000Z","size":144,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-17T05:45:37.076Z","etag":null,"topics":["bot","discord","discordapp","open-source","python3"],"latest_commit_sha":null,"homepage":"https://discord.com/oauth2/authorize?client_id=1300829284268507197","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Tony14261.png","metadata":{"files":{"readme":"README.md","changelog":"changelog.md","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}},"created_at":"2024-11-10T07:31:19.000Z","updated_at":"2025-02-02T12:38:53.000Z","dependencies_parsed_at":"2024-11-10T09:25:49.080Z","dependency_job_id":"e2463b2c-c832-4f35-847c-568b16690733","html_url":"https://github.com/Tony14261/MicroMightyBot","commit_stats":null,"previous_names":["tony14261/micromightybot"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tony14261%2FMicroMightyBot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tony14261%2FMicroMightyBot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tony14261%2FMicroMightyBot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tony14261%2FMicroMightyBot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Tony14261","download_url":"https://codeload.github.com/Tony14261/MicroMightyBot/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243982137,"owners_count":20378606,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["bot","discord","discordapp","open-source","python3"],"created_at":"2025-01-23T15:23:04.236Z","updated_at":"2025-03-17T05:45:40.170Z","avatar_url":"https://github.com/Tony14261.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MicroMightyBot\n\nMicroMightyBot is a lightweight Discord bot packed with small, kinda-useless features designed to make your server more entertaining and productive.\n\nVersion: 1.3.0 \\\n[Invite link](https://discord.com/oauth2/authorize?client_id=1300829284268507197)\n\n---\n\n## ✨ Features\n\u003e Look in [changelog.md](https://github.com/Tony14261/MicroMightyBot/blob/main/changelog.md) to keep up with the latest\n- **/msgcount** Features to track number of messages members sent\n    - Now updated with many more features!\n- **/roll_a_dice**: Rolls a dice (outputs a random number from 1-6)\n- **/roll_custom_dice**: Rolls a custom dice (outputs a random number from a custom range)\n- **/guess_the_number**: Guess the number from 1-10 (see if user's input is the same as the bot's random number)\n\n## ⭐ Upcoming Features\n- Enhance the verify system\n- Use embeds or attachments instead of plain message\n- Feature to close or open the server\n\n## 📚 Programs Used \n- **Language**: [Python 3.12+](https://www.python.org/)\n- **Database**: [MongoDB Atlas](https://www.mongodb.com/atlas)\n- **Hosting**: [Render](https://www.render.com/)\n\nThe best thing is, I am maintaining this bot for completely free, using the above programs!\n\n## 🛠️ Remix Guide\n- Warning: This project is under [CC-BY-NC-SA](https://creativecommons.org/licenses/by-nc-sa/4.0/)\n- Btw, coding things take time and you must go through trial and error. So just patiently try to search stuffs in [pycord docs](https://docs.pycord.dev/en/stable/index.html) or [pymongo docs](https://www.mongodb.com/docs/languages/python/pymongo-driver/current/) :)\n### Prerequisites\n- Python 3.12+ installed\n- MongoDB Atlas connection string ([Get Started](https://www.mongodb.com/atlas/database))\n- Discord bot token ([Create Your Bot](https://discord.com/developers/applications))\n\n### 1. **Clone this repository**:\n```bash\ngit clone https://github.com/Tony14261/MicroMightyBot/\n```\n\n### 2. **Install dependencies:**\n```bash\npip install -r requirements.txt\n```\n\n### 3. **Set up environment variables:** Create a `.env` file in the project directory:\n```env\nDISCORD_TOKEN=your_discord_bot_token\nMONGO_URI=your_mongodb_connection_string\nPORT = 8000\n```\nIf you are using render, add \n```env\nPYTHON_VERSION = 3.11.10\n```\nas an environmet variable to specify the Python version you want\n\n### 4. Modify the code:\n- Change the code to your style. Maybe add some features, improve the code, fix bugs,...\n### 5. Set up bot on Render (for free)\n- Create a web service of the project\n- Start command: ```python main.py```\n- Deploy it and.. done!\n\n## 🗂️ Project Structure\n```\nMicroMightyBot/\n├── .env                 # Environment variables\n├── LICENSE              # License file\n├── requirements.txt     # Project dependencies\n├── changelog.md         # Change log file\n├── main.py              # Bot code\n├── exceptions.py        # File to store the bot's custom exceptions\n├── status_web.py        # File for UpTimeRobot and web server\n└── README.md            # Project documentation\n```\n\n## 🌟 Contributing\nFeel free to submit issues or suggest features (in [Pull Request](https://github.com/Tony14261/MicroMightyBot/pulls)). Contributions are always welcome!\n\n## 📜 License\nThis project is licensed under the [CC-BY-NC-SA License](https://creativecommons.org/licenses/by-nc-sa/4.0/).\n\n## 📞 Contact\nDiscord server: [Invite link](https://discord.gg/bJ8PaFREj2) \\\nIf you encounter any issues or want to suggest a feature, feel free to report or contact me.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftony14261%2Fmicromightybot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftony14261%2Fmicromightybot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftony14261%2Fmicromightybot/lists"}