Hi D Lang Community! 👋
Built a Python tool that generates timezone data in JSON & SQLite formats.
Includes IANA timezone data + Windows timezone mappings, so it's great for cross-platform D applications.
1 messages · Page 1 of 1 (latest)
Hi D Lang Community! 👋
Built a Python tool that generates timezone data in JSON & SQLite formats.
Includes IANA timezone data + Windows timezone mappings, so it's great for cross-platform D applications.
Nice
For my project I've used data from this repo:
https://github.com/evansiroky/timezone-boundary-builder
Thanks for the link, I didn't know about it.
Could save you times from having to parse raw IANA tzdata and windowsZones.xml files manually in D!
Why would anyone parse it manually in D? D is built for parsing files! And can do it at compile time as well.
Question is do you want all that in your executable?
You have the option of doing it in the executable or as a separate tool.