{"id":15483201,"url":"https://github.com/zpascal/ms_outlook_event_slack_bot","last_synced_at":"2026-02-27T17:47:35.457Z","repository":{"id":203027618,"uuid":"708645392","full_name":"ZPascal/ms_outlook_event_slack_bot","owner":"ZPascal","description":"The repository includes a Python-based Slack Bot for MS Outlook events","archived":false,"fork":false,"pushed_at":"2026-02-23T15:04:04.000Z","size":652,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-02-23T23:01:27.207Z","etag":null,"topics":["microsoft","outlook","slack-bot"],"latest_commit_sha":null,"homepage":"https://zpascal.github.io/ms_outlook_event_slack_bot/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ZPascal.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":".github/CODEOWNERS","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":"2023-10-23T05:02:25.000Z","updated_at":"2026-02-23T15:07:13.000Z","dependencies_parsed_at":"2023-11-10T08:09:39.549Z","dependency_job_id":"a5555fd3-923b-4fb6-b286-32250b10b82c","html_url":"https://github.com/ZPascal/ms_outlook_event_slack_bot","commit_stats":{"total_commits":31,"total_committers":2,"mean_commits":15.5,"dds":"0.32258064516129037","last_synced_commit":"5d5ca62c92a63680773ddb3dd2829dd8f1086084"},"previous_names":["zpascal/ms_outlook_event_slack_bot"],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/ZPascal/ms_outlook_event_slack_bot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZPascal%2Fms_outlook_event_slack_bot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZPascal%2Fms_outlook_event_slack_bot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZPascal%2Fms_outlook_event_slack_bot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZPascal%2Fms_outlook_event_slack_bot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ZPascal","download_url":"https://codeload.github.com/ZPascal/ms_outlook_event_slack_bot/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZPascal%2Fms_outlook_event_slack_bot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29907062,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-27T17:28:36.873Z","status":"ssl_error","status_checked_at":"2026-02-27T17:28:20.970Z","response_time":57,"last_error":"SSL_read: 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":["microsoft","outlook","slack-bot"],"created_at":"2024-10-02T05:10:58.701Z","updated_at":"2026-02-27T17:47:35.425Z","avatar_url":"https://github.com/ZPascal.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Microsoft Outlook Event API Slack Bot\nThe repository includes a Python-based Slack Bot for MS Outlook events.\n\n## Functionality\n\nThe application allows accessing shared calendars of a user and reading the corresponding weekly events via Microsoft API calls. In the next step, it is possible to send this event in the form of a Slack message to a connected Slack channel.\n\n## Installation\n\n`pip install outlook-event-slack-bot`\n\n## Example of use\n\n```python\nimport argparse\n\nfrom outlook_event_slack_notification_bot.model import SlackAPI, OutlookCalendarApi\nfrom outlook_event_slack_notification_bot.slack import Slack\nfrom outlook_event_slack_notification_bot.outlook_calendar import OutlookCalendar\n\n\nif __name__ == \"__main__\":\n    parser = argparse.ArgumentParser(description=\"Script to extract a user's Outlook calendar events and \"\n                                                 \"forward them to a Slack channel.\")\n    parser.add_argument(\"-wh\", \"--webhook\", type=str, required=True, help=\"Get the Slack webhook\")\n    parser.add_argument(\"-t\", \"--tenant\", type=str, required=True, help=\"Get the Microsoft tenant\")\n    parser.add_argument(\"-ci\", \"--client-id\", type=str, required=True, help=\"Get the Microsoft OAuth Client ID\")\n    parser.add_argument(\"-cs\", \"--client-secret\", type=str, required=True, help=\"Get the Microsoft OAuth Client secret\")\n    parser.add_argument(\"-scu\", \"--shared_calendar_user\", type=str, required=True,\n                        help=\"Get the Outlook shared calendar user\")\n    parser.add_argument(\"-scn\", \"--shared_calendar_name\", type=str, required=True,\n                        help=\"Get the Outlook shared calendar name\")\n    parser.add_argument(\"-cn\", \"--custom_notification\", type=str, required=True,\n                        help=\"Should be custom notifications send to the corresponding users, \"\n                             \"defined Outlook calendar event body?\")\n    args = parser.parse_args()\n\n    outlook_calendar_api: OutlookCalendarApi = OutlookCalendarApi(\n        tenant=args.tenant, client_id=args.client_id, client_secret=args.client_secret\n    )\n    outlook_calendar: OutlookCalendar = OutlookCalendar(outlook_calendar_api)\n    events: list = outlook_calendar.get_events(\n        args.shared_calendar_name, args.shared_calendar_user\n    )\n    events_cw: list = outlook_calendar.get_weekly_events(events)\n    Slack(SlackAPI(args.webhook), args.custom_notification).send_slack_message(events_cw)\n```\n\n## Contribution\nIf you would like to contribute something, have an improvement request, or want to make a change inside the code, please open a pull request.\n\n## Support\nIf you need support, or you encounter a bug, please don't hesitate to open an issue.\n\n## Donations\nIf you want to support my work, I ask you to take an unusual action inside the open source community. Donate the money to a non-profit organization like Doctors Without Borders or the Children's Cancer Aid. I will continue to build tools because I like them, and I am passionate about developing and sharing applications.\n\n## License\nThis product is available under the Apache 2.0 license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzpascal%2Fms_outlook_event_slack_bot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzpascal%2Fms_outlook_event_slack_bot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzpascal%2Fms_outlook_event_slack_bot/lists"}