{"id":35838787,"url":"https://github.com/roli2py/message-sender-telegram-bot","last_synced_at":"2026-01-19T14:06:00.357Z","repository":{"id":332136023,"uuid":"1128316079","full_name":"roli2py/message-sender-telegram-bot","owner":"roli2py","description":"A telegram bot for sending messages to different platforms","archived":false,"fork":false,"pushed_at":"2026-01-15T18:29:17.000Z","size":105,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-16T07:15:21.767Z","etag":null,"topics":["bot","telegram"],"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/roli2py.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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":"2026-01-05T13:07:41.000Z","updated_at":"2026-01-15T18:27:45.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/roli2py/message-sender-telegram-bot","commit_stats":null,"previous_names":["roli2py/message-sender-telegram-bot"],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/roli2py/message-sender-telegram-bot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/roli2py%2Fmessage-sender-telegram-bot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/roli2py%2Fmessage-sender-telegram-bot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/roli2py%2Fmessage-sender-telegram-bot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/roli2py%2Fmessage-sender-telegram-bot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/roli2py","download_url":"https://codeload.github.com/roli2py/message-sender-telegram-bot/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/roli2py%2Fmessage-sender-telegram-bot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28571560,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-19T12:50:50.164Z","status":"ssl_error","status_checked_at":"2026-01-19T12:50:42.704Z","response_time":67,"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":["bot","telegram"],"created_at":"2026-01-08T02:12:31.733Z","updated_at":"2026-01-19T14:06:00.340Z","avatar_url":"https://github.com/roli2py.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Message Sender — Telegram Bot\n\nA telegram bot that sends messages to the different platforms.\n\n## Running\n\n1. Clone the repository:\n```bash\ngit clone https://github.com/roli2py/message-sender-telegram-bot\n```\n\n2. Navigate to the repository\n```bash\ncd message-sender-telegram-bot\n```\n\n3. Install the dependencies:\n```bash\npip install -r requirements.txt\n```\n\n4. Fill a `sqlalchemy.url` property in the `alembic.ini` file:\n```ini\n# ...\n# replace the placeholders to appropriate data\nsqlalchemy.url = mysql+mysqldb://user:pass@host:port/dbname\n# ...\n```\n\n5. Migrate the database by `alembic`:\n```bash\nalembic upgrade head\n```\n\n5. Duplicate the `example.env` file and name it to `.env`:\n```bash\ncp example.env .env\n```\n\n6. Fill the `.env` file with the appropriate data\n\n7. Export the `.env` file to your environment:\n```bash\nset -a \u0026\u0026 source .env \u0026\u0026 set +a\n```\nReference: https://gist.github.com/mihow/9c7f559807069a03e302605691f85572\n\n8. Navigate to the project's package:\n```bash\ncd src/message_sender_telegram_bot\n```\n\n9. Run the `main.py` file:\n```bash\npython3 main.py\n```\n\n## Developing\n\n1. Clone the repository:\n```bash\ngit clone https://github.com/roli2py/message-sender-telegram-bot\n```\n\n2. Navigate to the repository\n```bash\ncd message-sender-telegram-bot\n```\n\n3. Install the project's package in an editable mode with the `dev` deps:\n```bash\npip install -e .[dev]\n```\n\n4. Start to develop :)\n\n5. After the develop, start `make` to format and test the project:\n```bash\nmake\n```\n\n6. To run the project, see \"[Running](#running)\" from a fourth to ninth clause.\n\nIf you want, you can start the specific action:\n```bash\nmake test\n```\n\nAvailable targets:\n1. `all` — Invokes all targets. Invoked by default, if `make` is started without the target.\n2. `format` — Formats the project by `isort` and `black`.\n3. `test` — Starts the unittests by `pytest`.\n\n### UML class diagram\n\nThe project is provided with the UML class diagram, made by [PlantUML](https://plantuml.com/). You can use it, if you need.\n\nWhen you're adding or changing a structure of the project, make corresponding changes to the UML class diagram.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Froli2py%2Fmessage-sender-telegram-bot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Froli2py%2Fmessage-sender-telegram-bot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Froli2py%2Fmessage-sender-telegram-bot/lists"}