{"id":16971653,"url":"https://github.com/thomastjdev/nimics","last_synced_at":"2025-03-21T20:16:29.538Z","repository":{"id":87657086,"uuid":"314973598","full_name":"ThomasTJdev/nimics","owner":"ThomasTJdev","description":"ICS-file generator. Create an invite.ics file and attach it to a mail.","archived":false,"fork":false,"pushed_at":"2021-04-02T15:38:43.000Z","size":7,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-01-26T14:48:38.563Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Nim","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/ThomasTJdev.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":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-11-22T06:22:30.000Z","updated_at":"2021-04-02T15:38:30.000Z","dependencies_parsed_at":"2023-03-13T18:40:22.112Z","dependency_job_id":null,"html_url":"https://github.com/ThomasTJdev/nimics","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThomasTJdev%2Fnimics","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThomasTJdev%2Fnimics/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThomasTJdev%2Fnimics/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThomasTJdev%2Fnimics/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ThomasTJdev","download_url":"https://codeload.github.com/ThomasTJdev/nimics/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244860611,"owners_count":20522466,"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":[],"created_at":"2024-10-14T00:53:22.274Z","updated_at":"2025-03-21T20:16:29.529Z","avatar_url":"https://github.com/ThomasTJdev.png","language":"Nim","readme":"# nimics\nICS-file generator. Create an invite.ics file and specify the content.\n\n## How to\n\n```nim\nimport nimics\n\n# Create the ICS container\nvar ics = newIcsFile()\n\n# Specify the details\nics.uid         = \"IAMUNIQUE\"\nics.orgName     = \"Thomas\"\nics.orgMail     = \"thomas@example.com\"\nics.attendees   = @[\"t1:t1@t1.com\", \"t2:t2@t2.com\"]\nics.description = \"Let's talk about how awesome Nim is\"\nics.summary     = \"Nim talk\"\nics.mstart      = initDateTime(01, mDec, 2020, 12, 00, 00).icsDateTimeConvert()\nics.mend        = \"20201201T133000\"\nics.location    = \"Nim HQ\"\n\n# Generate the file\nicsGenerate(ics, \"myfolder\", \"invite.ics\")\n```\n\n## Options\n\nWhen creating a new invite, you can specify the following options:\n```nim\ntype\n  IcsFile* = ref object of RootObj\n    uid*: string              # Unique identifier. Used to update event.\n    prodid*: string           # Default=Nim ICS creator\n    tzid*: string             # W. Europe Standard Time, Greenwich Standard Time,\n                              # Default=Greenwich Standard Time\n    dtstart*: string          # Default=16010101T000000\n    tzoffsetfrom*: string     # Default=+0000\n    tzoffsetto*: string       # Default=+0000\n    orgName*: string          # Organizers name\n    orgMail*: string          # Organizers mail\n    attendees*: seq[string]   # Attendees, [\"NAME:MAIL\", \"NAME:MAIL\"]\n    requireResponse*: bool    # Require/ask the user to respond with an answer\n    lang*: string             # Default=en-GB\n    description*: string      # Meeting description\n    summary*: string          # Meeting summary\n    sequence*: int            # The meeting number. Used to update event.\n    mstart*: string           # Meeting start\n    mend*: string             # Meeting end\n    class*: string            # Default=PUBLIC\n    priority*: string         # Default=5\n    dtstamp*: string          # Meeting created, Default=Current time\n    location*: string         # Meeting location\n    trigger*: string          # Alarm trigger, default=15M\n```\n\n\n## Update event\n\nTo update an event remember to use the same `ics.uid` and inc the `isc.sequence`.","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthomastjdev%2Fnimics","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthomastjdev%2Fnimics","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthomastjdev%2Fnimics/lists"}