{"id":22765435,"url":"https://github.com/marck100/synckit","last_synced_at":"2026-07-21T03:34:08.534Z","repository":{"id":219488142,"uuid":"271021227","full_name":"Marck100/SyncKit","owner":"Marck100","description":"Synchronize your app with system events and calendars","archived":false,"fork":false,"pushed_at":"2020-06-10T09:15:06.000Z","size":19,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-13T11:05:17.500Z","etag":null,"topics":["calendars","eventkit","events","ios","swift","synchronization"],"latest_commit_sha":null,"homepage":"","language":"Swift","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/Marck100.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}},"created_at":"2020-06-09T14:12:53.000Z","updated_at":"2020-09-13T13:42:02.000Z","dependencies_parsed_at":"2024-01-27T20:50:57.808Z","dependency_job_id":null,"html_url":"https://github.com/Marck100/SyncKit","commit_stats":null,"previous_names":["marck100/synckit"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Marck100/SyncKit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Marck100%2FSyncKit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Marck100%2FSyncKit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Marck100%2FSyncKit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Marck100%2FSyncKit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Marck100","download_url":"https://codeload.github.com/Marck100/SyncKit/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Marck100%2FSyncKit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35708142,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-07-20T02:08:10.276Z","status":"online","status_checked_at":"2026-07-21T02:00:06.728Z","response_time":109,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["calendars","eventkit","events","ios","swift","synchronization"],"created_at":"2024-12-11T12:13:10.746Z","updated_at":"2026-07-21T03:34:08.509Z","avatar_url":"https://github.com/Marck100.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SyncKit\n\nSyncKit allows you to synchronize system events and calendars with your database.\n\n### How to implement this package\n\n1. Conform your Event and Calendar class to `SKEvent` and `SKCalendar`\n\n```swift\nclass Event: SKEvent {\n   \n   var title: String\n   var eventIdentifier: String\n   \n   var lastModifiedDate: Date?\n   ...\n   \n    func toEKEvent() -\u003e EKEvent {\n        if let event = store.event(withIdentifier: eventIdentifier) {\n            event.title = title\n            ...\n            return event\n        } else {\n            let event = EKEvent(eventStore: store)\n            ...\n            return event\n        }\n    }\n    \n}\n```\n\n2. Request access to event( You must implement Privacy keys in your `info.plist` )\n3. Compare events and calendars stored in your app with system ones.\n\n```swift\nlet comparison = SKCenter.shared.compareCalendars(calendars: systemCalendars, storedCalendars: storedCalendars)\n```\n\n4. Update your app\n```swift\ndb.save(comparison.calendarsToSave)\ndb.update(comparison.calendarsToUpdate)\ndb.remove(comparison.calendarsToDelete)\n```\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarck100%2Fsynckit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmarck100%2Fsynckit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarck100%2Fsynckit/lists"}