Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mint-dewit/recurrence-parser
https://github.com/mint-dewit/recurrence-parser
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mint-dewit/recurrence-parser
- Owner: mint-dewit
- License: mit
- Created: 2018-04-29T07:31:22.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-12-30T15:14:36.000Z (about 1 year ago)
- Last Synced: 2024-10-19T15:39:57.221Z (3 months ago)
- Language: TypeScript
- Size: 779 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Recurrence Parsing
This library takes in schedules in json format with recurrent plannings and converts these into timelines compatible with the supertimeline project.
## Example schedule
```
[
{
"type": "group",
"days": [0,1,2,3,4,5,6],
"weeks": [0, 52, 14],
"dates": [
["2017-1-1", "2017-1-31"],
["2017-12-1", "2017-12-31"]
],
"times": [
"10:00:00",
"22:00:00"
],
"children": [
{
"type": "folder",
"days": [0],
"path": "path"
},
{
"type": "file",
"path": "path"
}
]
}
]
```