{"id":23624715,"url":"https://github.com/rakinplaban/discord_chat_miku","last_synced_at":"2025-11-07T09:30:37.222Z","repository":{"id":268264239,"uuid":"897899592","full_name":"rakinplaban/Discord_chat_miku","owner":"rakinplaban","description":"Synthia is a Discord bot that fetches and displays the latest AI news in a designated channel using web scraping.","archived":false,"fork":false,"pushed_at":"2025-01-04T13:06:34.000Z","size":11578,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-04T14:22:56.911Z","etag":null,"topics":["bot","discord-bot","discord-py","python3"],"latest_commit_sha":null,"homepage":"https://discord.com/oauth2/authorize?client_id=1313455711971180607\u0026permissions=8\u0026integration_type=0\u0026scope=bot","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rakinplaban.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}},"created_at":"2024-12-03T12:43:31.000Z","updated_at":"2025-01-04T13:06:38.000Z","dependencies_parsed_at":"2025-01-04T14:33:05.406Z","dependency_job_id":null,"html_url":"https://github.com/rakinplaban/Discord_chat_miku","commit_stats":null,"previous_names":["rakinplaban/discord_chat_miku"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rakinplaban%2FDiscord_chat_miku","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rakinplaban%2FDiscord_chat_miku/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rakinplaban%2FDiscord_chat_miku/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rakinplaban%2FDiscord_chat_miku/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rakinplaban","download_url":"https://codeload.github.com/rakinplaban/Discord_chat_miku/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239525573,"owners_count":19653360,"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-bot","discord-py","python3"],"created_at":"2024-12-27T21:16:16.331Z","updated_at":"2025-02-18T18:26:28.832Z","avatar_url":"https://github.com/rakinplaban.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Synthia Bot\n\nSynthia is a feature-rich Discord bot designed to provide real-time updates and enhancements to your server. It specializes in fetching and displaying the latest AI-related news in a dedicated channel, offering an automated news feed experience. Additionally, Synthia is built to demonstrate web scraping skills and runs seamlessly on a Docker container for 24/7 availability.\n\n---\n![Synthia](https://i.imgur.com/Pp7Lqi1.jpg)\n\u003c!-- ![Synthia](https://i.imgur.com/dtvmhLK.jpg)\n![Synthia](https://i.imgur.com/1C3LD34.jpg) --\u003e\n\n\n## Features\n\n- **Welcome with a Joke:**\n   Welcomes new members to your server with a personalized joke, setting a friendly tone for interactions. (Feature under development, nearly complete.)\n\n- **AI News Feed**:\n  Automatically fetches the latest AI-related news from top sources and posts it in a specified Discord channel.\n\n- **Web Scraping Integration**:\n  Utilizes web scraping techniques to collect fresh and relevant news, serving as a practical example of Python-based scraping.\n\n- **Customizable**:\n  Easily configure the channel for news updates and set the frequency of news posts.\n\n- **Dockerized Deployment**:\n  Fully containerized with Docker, ensuring portability and ease of deployment.\n\n---\n\n## Installation\n\n### Prerequisites\n- Python 3.8+\n- Docker (optional, for containerized deployment)\n- A Discord bot token (get one from the [Discord Developer Portal](https://discord.com/developers/applications))\n\n### Local Setup\n\n1. Clone the repository:\n   ```bash\n   git clone https://github.com/rakinplaban/Discord_chat_miku\n   cd Discord_chat_miku\n   ```\n\n2. Install dependencies:\n   ```bash\n   pip install -r requirements.txt\n   ```\n\n3. Configure the bot:\n   - Create a `.env` file in the root directory.\n   - Add your Discord bot token:\n     ```env\n     BOT_TOKEN=your_discord_bot_token\n     \u003c!-- CHANNEL_ID=your_channel_id --\u003e\n     ```\n\n4. Run the bot:\n   ```bash\n   python main.py\n   ```\n\n---\n\n## Docker Deployment\n\n1. Build the Docker image:\n   ```bash\n   docker build -t synthia-bot .\n   ```\n\n2. Run the container:\n   ```bash\n   docker run -d --name synthia-container synthia-bot\n   ```\n\n3. Ensure 24/7 availability by hosting the container on a cloud platform like AWS, Azure, or DigitalOcean.\n\n---\n\n## Usage\n\n- Invite Synthia to your Discord server using your bot's invite link.\n- Set up the channel where you want AI news to be posted.\n- Synthia will start fetching and posting news based on the configured schedule (default: hourly).\n\n---\n\n## Technologies Used\n\n- **Programming Language**: Python\n- **Libraries**:\n  - `discord.py` for bot interactions\n  - `beautifulsoup4` and `requests` for web scraping\n- **Containerization**: Docker\n\n---\n\n## Contributing\n\n1. Fork the repository.\n2. Create a new branch:\n   ```bash\n   git checkout -b feature-name\n   ```\n3. Commit your changes:\n   ```bash\n   git commit -m 'Add some feature'\n   ```\n4. Push to the branch:\n   ```bash\n   git push origin feature-name\n   ```\n5. Open a pull request.\n\n---\n\n## License\n\nThis project is licensed under the MIT License. See the LICENSE file for details.\n\n---\n\n## Acknowledgments\n\n- Inspired by the desire to automate AI news feeds and practice web scraping techniques.\n- Thanks to the open-source community for providing tools and libraries.\n\n---\n\nEnjoy using Synthia! If you encounter any issues or have feature requests, feel free to open an issue or contact us.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frakinplaban%2Fdiscord_chat_miku","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frakinplaban%2Fdiscord_chat_miku","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frakinplaban%2Fdiscord_chat_miku/lists"}